/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a202c 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
}

.loader-logo {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
}

.plate-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, -50%);
    }
    50% {
        transform: translate(-50%, -60%);
    }
}

.plate {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f8bc15, #f8bc15);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
                inset 0 5px 15px rgba(255, 255, 255, 0.3);
    animation: rotate 3s linear infinite;
}

.plate::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8bc15, #f8bc15);
    border-radius: 50%;
    box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.2);
}

.plate::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.fork {
    position: absolute;
    top: -30px;
    left: -40px;
    width: 8px;
    height: 60px;
    background: #e2e8f0;
    border-radius: 4px;
    transform: rotate(-30deg);
    animation: utensil-left 2s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.fork::before,
.fork::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 20px;
    background: #e2e8f0;
    border-radius: 2px;
    top: 0;
}

.fork::before {
    left: -5px;
}

.fork::after {
    right: -5px;
}

@keyframes utensil-left {
    0%, 100% {
        transform: rotate(-30deg) translateX(0);
    }
    50% {
        transform: rotate(-30deg) translateX(-10px);
    }
}

.knife {
    position: absolute;
    top: -30px;
    right: -40px;
    width: 8px;
    height: 60px;
    background: linear-gradient(to bottom, #e2e8f0 0%, #cbd5e0 100%);
    border-radius: 4px;
    transform: rotate(30deg);
    animation: utensil-right 2s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.knife::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 15px solid #e2e8f0;
}

@keyframes utensil-right {
    0%, 100% {
        transform: rotate(30deg) translateX(0);
    }
    50% {
        transform: rotate(30deg) translateX(10px);
    }
}

.steam {
    position: absolute;
    width: 4px;
    height: 30px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 50%;
    opacity: 0;
    animation: steam-rise 2s ease-in-out infinite;
}

.steam-1 {
    left: 40%;
    animation-delay: 0s;
}

.steam-2 {
    left: 50%;
    animation-delay: 0.3s;
}

.steam-3 {
    left: 60%;
    animation-delay: 0.6s;
}

@keyframes steam-rise {
    0% {
        bottom: 60%;
        opacity: 0;
        transform: translateX(0);
    }
    50% {
        opacity: 0.8;
        transform: translateX(10px);
    }
    100% {
        bottom: 100%;
        opacity: 0;
        transform: translateX(-10px);
    }
}

.loader-text {
    color: #f8bc15;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation: text-glow 2s ease-in-out infinite;
}

@keyframes text-glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    }
}

.loader-spinner {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.spinner-dot {
    width: 12px;
    height: 12px;
    background: #f8bc15;
    border-radius: 50%;
    animation: dot-bounce 1.4s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

.spinner-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.spinner-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes dot-bounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.loader-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    animation: fade-pulse 2s ease-in-out infinite;
}

@keyframes fade-pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Welcome Popup */
.welcome-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.welcome-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.welcome-popup {
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    border-radius: 30px;
    padding: 3rem;
    max-width: 550px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.7);
    transition: transform 0.4s ease;
    overflow: hidden;
}

.welcome-popup-overlay.show .welcome-popup {
    transform: scale(1);
    animation: popupBounce 0.6s ease;
}

@keyframes popupBounce {
    0% {
        transform: scale(0.7);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(74, 85, 104, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.popup-close:hover {
    background: #ff4757;
    transform: rotate(90deg);
}

.popup-close i {
    font-size: 1.2rem;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.popup-close:hover i {
    color: var(--white);
}

.popup-food-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.food-icon {
    position: absolute;
    font-size: 2.5rem;
    animation: circularRotate 15s linear infinite;
    opacity: 0.3;
}

.food-icon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.food-icon-2 {
    top: 20%;
    right: 15%;
    animation-delay: -2.5s;
}

.food-icon-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: -5s;
}

.food-icon-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: -7.5s;
}

.food-icon-5 {
    top: 50%;
    left: 5%;
    animation-delay: -10s;
}

.food-icon-6 {
    top: 50%;
    right: 5%;
    animation-delay: -12.5s;
}

@keyframes circularRotate {
    0% {
        transform: rotate(0deg) translateX(30px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(30px) rotate(-360deg);
    }
}

.popup-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.popup-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ffed4e);
    color: var(--dark-gray);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    }
}

.popup-badge i {
    color: #ff6b6b;
    animation: starRotate 3s linear infinite;
}

@keyframes starRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.popup-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    animation: titleSlideIn 0.6s ease;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.popup-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    animation: textFadeIn 0.8s ease;
}

@keyframes textFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.popup-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.popup-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: featurePopIn 0.8s ease backwards;
}

.popup-feature-item:nth-child(1) {
    animation-delay: 0.2s;
}

.popup-feature-item:nth-child(2) {
    animation-delay: 0.3s;
}

.popup-feature-item:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes featurePopIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-feature-item i {
    font-size: 2rem;
    color: var(--accent-color);
}

.popup-feature-item span {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
}

.btn-popup {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(#f8bc15, #f8bc15);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    animation: buttonFloat 1s ease infinite;
}

@keyframes buttonFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.btn-popup:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.btn-popup i {
    font-size: 1.2rem;
}

/* Popup Mobile Responsiveness */
@media (max-width: 600px) {
    .welcome-popup {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }

    .popup-title {
        font-size: 1.5rem;
    }

    .popup-text {
        font-size: 0.95rem;
    }

    .food-icon {
        font-size: 2rem;
    }

    .popup-features {
        gap: 1rem;
    }

    .btn-popup {
        width: 100%;
        justify-content: center;
    }
}

:root {
    --primary-color: #4a5568;
    --secondary-color: #000000;
    --accent-color: #f8bc15;
    --light-gray: #f7fafc;
    --medium-gray: #e2e8f0;
    --dark-gray: #1a202c;
    --white: #ffffff;
    --text-color: #000000;
    --text-light: #718096;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1;
    color: var(--text-color);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem;
}

.nav-link:hover {
    color: #f6b400;
}

.order-btn-nav {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.order-btn-nav:hover {
    background: #000000;
    color: #ffffff;
    /* transform: translateY(-2px); */
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('hero-image.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 0;
}

.hero-content {
    color: var(--white);
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #f6b400;
    color: var(--white);
}

.btn-primary:hover {
    background: #ffbb00;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Section Styles */
section {
    padding: 80px 0;
    overflow-x: hidden;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Hot Dishes Section */
.hot-dishes {
    background: var(--light-gray);
}

.hot-dishes-slider {
    position: relative;
    max-width: 100%;
}

.slider-container {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    width: fit-content;
}

.dish-card {
    min-width: calc(33.333% - 1.5rem);
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.dish-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.dish-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dish-card:hover .dish-image img {
    transform: scale(1.1);
}

.dish-info {
    padding: 1.5rem;
}

.dish-info h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.dish-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.price {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 700;
}

.btn-order-menu {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-order-menu:hover {
    background: #ffbb00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: #ffbb00;
    color: var(--white);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

/* Menu Section */
.menu-section {
    background: var(--white);
}

.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-btn {
    padding: 0.8rem 2rem;
    border: 2px solid var(--medium-gray);
    background: var(--white);
    color: var(--text-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: #ffbb00;
    color: var(--white);
    border-color: var(--accent-color);
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.menu-item-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.1);
}

.menu-item-info {
    padding: 1.5rem;
}

.menu-item-info h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.menu-item-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #f7fafc 0%, #e8f4f8 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    position: relative;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1.2rem;
    margin: 2.5rem 0;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: #ffbb00;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
}

.feature-item span {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.about-location {
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent-color);
}

.about-location i {
    color: var(--accent-color);
    font-size: 1.5rem;
    min-width: 30px;
}

.about-location span {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.05rem;
}

.about-price {
    margin: 1.5rem 0;
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), #38a169);
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.price-range {
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 3px;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover::before {
    opacity: 1;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* transition: transform 0.3s ease; */
}

/* .about-image:hover img {
    transform: scale(1.05);
} */

/* Hours Section */
.hours-section {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    position: relative;
    overflow: hidden;
}

.hours-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hours-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hours-section .section-header {
    position: relative;
    z-index: 2;
}

.hours-section .section-title {
    color: var(--white);
}

.hours-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.hours-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hours-list {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.hours-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--accent-color);
    border-radius: 0 4px 4px 0;
    transition: height 0.3s ease;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item:hover {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding-left: 1.8rem;
    transform: translateX(5px);
}

.hours-item:hover::before {
    height: 60%;
}

.day {
    font-weight: 600;
    color: var(--white);
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.day::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.time {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.15);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.time::before {
    content: '\f017';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--light-gray);
}

.testimonials-slider {
    position: relative;
    max-width: 100%;
}

.testimonials-container {
    overflow: hidden;
}

.testimonials-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.testimonial-card {
    min-width: calc(50% - 1rem);
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 4px solid var(--accent-color);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-name {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.testimonial-title {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-prev {
    left: -25px;
}

.testimonial-next {
    right: -25px;
}

/* Table Booking Section */
.booking-section {
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 50%, #e8f4f8 100%);
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(72, 187, 120, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.booking-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 85, 104, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.booking-hero {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.1);
}

.booking-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 5px 20px rgba(92, 92, 92, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.booking-icon i {
    font-size: 3.5rem;
    color: var(--white);
}

.booking-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.booking-description {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.booking-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.booking-mini-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem 1rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.booking-mini-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.booking-mini-feature i {
    font-size: 2rem;
    color: var(--accent-color);
}

.booking-mini-feature span {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.btn-booking {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffbb00);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    /* box-shadow: 0 5px 30px rgba(118, 118, 118, 0.4); */
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-bottom: 1.5rem;
}

.btn-booking:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(114, 114, 114, 0.5);
    background: linear-gradient(135deg, #ffbb00)
}

.btn-booking i {
    font-size: 1.3rem;
}

.booking-contact {
    font-size: 1.05rem;
    color: var(--text-light);
}

.booking-contact a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.booking-contact a:hover {
    color: #ffbb00;
    text-decoration: underline;
}

/* Order Section */
.order-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.order-content {
    text-align: center;
}

.order-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.order-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.order-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.order-buttons .btn i {
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffbb00;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.contact-info li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info li a:hover {
    color: #ffbb00;
    text-decoration: underline;
}

.contact-info i {
    color: #ffbb00;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ffbb00;
    transform: translateY(-3px);
}

.hours-info h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.hours-info p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 280px;
        flex-direction: column;
        background: var(--white);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
        transition: right 0.4s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 5rem 0 2rem;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid var(--medium-gray);
    }

    .nav-link {
        display: block;
        padding: 1.2rem 2rem;
        text-align: left;
        width: 100%;
    }

    .order-btn-nav {
        margin: 1rem 2rem;
        text-align: center;
        border-radius: 25px;
    }

    .dish-card {
        min-width: calc(50% - 1rem);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .testimonial-prev {
        left: 10px;
    }

    .testimonial-next {
        right: 10px;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hours-content {
        max-width: 100%;
    }

    .hours-list {
        padding: 1.5rem;
    }

    .hours-item {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .day {
        font-size: 1rem;
        gap: 0.8rem;
    }

    .time {
        font-size: 1rem;
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 600px) {
    .dish-card {
        min-width: 100%;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .prev-btn,
    .testimonial-prev {
        left: 5px;
    }

    .next-btn,
    .testimonial-next {
        right: 5px;
    }

    .hot-dishes-slider,
    .testimonials-slider {
        padding: 0 5px;
    }

    .testimonials-container {
        padding: 0 10px;
    }

    .menu-items {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hours-list {
        padding: 1rem;
    }

    .hours-item {
        padding: 0.8rem 0.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .hours-item:hover {
        padding-left: 0.5rem;
        transform: translateX(0);
    }

    .day {
        font-size: 0.95rem;
        gap: 0.5rem;
        width: 100%;
    }

    .day::before {
        width: 10px;
        height: 10px;
    }

    .time {
        font-size: 0.95rem;
        padding: 0.4rem 0.8rem;
        width: 100%;
        justify-content: center;
    }

    .time::before {
        font-size: 0.9rem;
    }

    .hours-section::before,
    .hours-section::after {
        width: 300px;
        height: 300px;
    }

    .order-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    section {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .booking-hero {
        padding: 2rem 1.5rem;
    }

    .booking-title {
        font-size: 2rem;
    }

    .booking-description {
        font-size: 1rem;
    }

    .booking-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .booking-icon {
        width: 100px;
        height: 100px;
    }

    .booking-icon i {
        font-size: 3rem;
    }

    .btn-booking {
        width: 100%;
        justify-content: center;
    }
}
