
  /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(60px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% center;
            }
            100% {
                background-position: 200% center;
            }
        }

        @keyframes rotateSlow {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        /* ===== CLASSES D'ANIMATION ===== */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(60px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .animate-on-scroll-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .animate-on-scroll-right {
            opacity: 0;
            transform: translateX(60px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .animate-on-scroll-scale {
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll-scale.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* ===== ANIMATIONS SPÉCIFIQUES ===== */
        .hero-content h1 {
            animation: fadeInUp 1s ease forwards;
        }

        .hero-content p {
            animation: fadeInUp 1s ease 0.3s forwards;
            opacity: 0;
        }

        .hero-buttons {
            animation: fadeInUp 1s ease 0.6s forwards;
            opacity: 0;
        }

        .menu-card {
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .menu-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .menu-card .card-image {
            transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .menu-card:hover .card-image {
            transform: scale(1.1);
        }

        .menu-card .card-overlay {
            transition: all 0.5s ease;
        }

        .menu-card:hover .card-overlay {
            background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
        }

        .testimonial-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .btn-primary, .btn-outline {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::after, .btn-outline::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-primary:hover::after, .btn-outline:hover::after {
            width: 300px;
            height: 300px;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(193, 151, 74, 0.4);
        }

        .btn-outline:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .badge {
            animation: pulse 2s ease-in-out infinite;
        }

        .container-image {
            transition: all 0.3s ease;
        }

        .container-image:hover {
            transform: scale(1.05) rotate(-2deg);
        }

        .footer-social a {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .footer-social a:hover {
            transform: translateY(-5px) rotate(8deg);
        }

        .nav-links a {
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--or);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Effet de chargement des cartes avec délai */
        .menu-card:nth-child(1) { transition-delay: 0.1s; }
        .menu-card:nth-child(2) { transition-delay: 0.2s; }
        .menu-card:nth-child(3) { transition-delay: 0.3s; }
        .menu-card:nth-child(4) { transition-delay: 0.4s; }
        .menu-card:nth-child(5) { transition-delay: 0.5s; }
        .menu-card:nth-child(6) { transition-delay: 0.6s; }

        /* Animation de la signature */
        .signature {
            position: relative;
            display: inline-block;
        }

        .signature::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--or);
            animation: signatureLine 2s ease forwards;
        }

         /* ===== CORRECTION DU FOOTER ===== */
        /* Supprimer l'espace en bas */
        html, body {
            margin: 0;
            padding: 0;
            min-height: 100vh;
        }

        body {
            display: flex;
            flex-direction: column;
        }

        /* Le contenu principal prend tout l'espace disponible */
        main {
            flex: 1;
        }

        /* Footer corrigé */
        .footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.6);
            padding: 50px 0 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            margin-top: 0; /* Supprime la marge supérieure */
            width: 100%;
            /* Ajout de ces lignes pour éviter les débordements */
            clear: both;
            overflow: hidden;
        }

        /* Corriger le conteneur du footer */
        .footer .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            /* Ajout pour éviter les débordements */
            overflow: hidden;
        }

        /* Supprimer les marges des éléments enfants */
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
            /* Supprimer les marges superflues */
            margin-top: 0;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 24px;
            padding-bottom: 0; /* Supprime le padding en bas */
            text-align: center;
            font-size: 0.9rem;
            margin-bottom: 0; /* Supprime la marge */
        }

        /* ===== CORRECTION DE GOOGLE MAPS ===== */
        .google-maps-wrapper {
            display: block;
            width: 100%;
            /* Supprimer le min-height qui crée un espace */
            min-height: auto;
            height: 400px; /* Fixer une hauteur */
            line-height: 0; /* Supprimer l'espace causé par les retours à la ligne */
            font-size: 0; /* Supprimer l'espace causé par les retours à la ligne */
        }

        .google-maps-wrapper iframe {
            display: block;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Version responsive */
        @media (max-width: 768px) {
            .google-maps-wrapper {
                height: 300px;
            }
        }

        /* ===== GARDEZ VOS AUTRES STYLES EXISTANTS ===== */
        /* ... tous vos styles d'animations et autres ... */

        /* Effet de brillance sur les cartes */
        .menu-card {
            position: relative;
            overflow: hidden;
        }

        .menu-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .menu-card:hover::before {
            opacity: 1;
        }

        /* Animation du formulaire */
        .reservation-form input,
        .reservation-form select,
        .reservation-form textarea {
            transition: all 0.3s ease;
        }

        .reservation-form input:focus,
        .reservation-form select:focus,
        .reservation-form textarea:focus {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(184, 134, 11, 0.1);
        }

        /* CTA Section animation */
        .reservation .container > * {
            animation: fadeInUp 1s ease forwards;
        }

        .reservation .container > *:nth-child(2) { animation-delay: 0.2s; }
        .reservation .container > *:nth-child(3) { animation-delay: 0.4s; }

        /* Responsive optimizations */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
        }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 /* ===== RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #04ae17;
            --gold-light: #e8d5a3;
            --gold-dark: #a8874a;
            --or: #c1974a;
            --dark: #1d1616;
            --dark-soft: #1c1616;
            --cream: #fcf8f0;
            --text-light: #f5ede4;
            --text-muted: #b8aa9a;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
            --radius: 12px;
            --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--cream);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-padding {
            padding: 90px 0;
        }

        .section-title {
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .section-subtitle {
            text-align: center;
            color: var(--or);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .section-divider {
            width: 60px;
            height: 3px;
            background: var(--or);
            margin: 16px auto 40px;
            border-radius: 4px;
        }

        .btn {
            display: inline-block;
            padding: 14px 40px;
            font-weight: 500;
            font-size: 0.95rem;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            letter-spacing: 0.5px;
            text-align: center;
        }

        .btn-primary {
            background: var(--gold-dark);
            color: #fff;
        }

        .btn-primary:hover {
            background: var(--gold-dark);
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(201, 160, 92, 0.35);
        }

        .btn-outline {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

        .btn-outline:hover {
            background: #fff;
            color: var(--dark);
            border-color: #fff;
            transform: translateY(-3px);
        }


        .image {
            width: 80%;
            height: 60%;
        }

        .container-image {
            height: 12vh;

        }



        .btn-dark {
            background: var(--dark);
            color: #fff;
        }

        .btn-dark:hover {
            background: var(--or);
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(201, 160, 92, 0.3);
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* ===== NAVIGATION ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 18px 0;
            transition: var(--transition);
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(26, 20, 16, 0.92);
            backdrop-filter: blur(12px);
            padding: 12px 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 1px;
        }

        .logo span {
            color: var(--or);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 36px;
            align-items: center;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--or);
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: #fff;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links .btn-nav {
            background: var(--gold-dark);
            color: #fff;
            padding: 10px 28px;
            border-radius: 50px;
            font-weight: 500;
            transition: var(--transition);
        }

        .nav-links .btn-nav:hover {
            background: #fff;
            color: var(--dark);
            transform: translateY(-2px);
        }

        .nav-links .btn-nav::after {
            display: none;
        }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: transparent;
            border: none;
            padding: 6px;
        }

        .hamburger span {
            width: 28px;
            height: 2.5px;
            background: #fff;
            border-radius: 4px;
            transition: var(--transition);
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* ===== HERO ===== */
        .hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            /* Image de fond */
            background-image: url('image/image-restaurant.png');
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            overflow: hidden;
        }

        /* Calque noir semi-transparent */
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.65);
            /* Ajustez l'opacité ici (0.65 = 65% de noir) */
            z-index: 1;
        }

        .hero .container {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            padding-top: 80px;
        }

        .hero-content h1 {
            font-size: 4.2rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .hero-content h1 span {
            color: var(--or);
            font-style: italic;
        }

        .hero-content p {
            color: var(--text-muted);
            font-size: 1.15rem;
            max-width: 480px;
            margin-bottom: 36px;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image .plate {
            width: 100%;
            max-width: 480px;
            aspect-ratio: 1/1;

            border-radius: 50%;

            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 30px 80px rgba(201, 160, 92, 0.25);
            position: relative;
        }

        .hero-image .plate i {
            font-size: 10rem;
            color: rgba(255, 255, 255, 0.15);
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
        }

        .hero-image .plate::after {
            content: '🍽️';
            position: absolute;
            font-size: 5rem;
            opacity: 0.6;
            bottom: 10%;
            right: 10%;
        }

        /* ===== MENU ===== */
        .menu {
            background: #fff;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px 30px;
            margin-top: 20px;
        }

        .menu-category h3 {
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 24px;
            border-bottom: 2px solid var(--gold-light);
            padding-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .menu-category h3 i {
            color: var(--or);
            font-size: 1.3rem;
        }

        .menu-item {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            padding: 14px 0;
            border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
        }

        .menu-item:last-child {
            border-bottom: none;
        }

        .menu-item-info {
            flex: 1;
        }

        .menu-item-info .name {
            font-weight: 600;
            font-size: 1.05rem;
            color: var(--dark);
        }

        .menu-item-info .desc {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 2px;
        }

        .menu-item .price {
            font-weight: 600;
            color: var(--or);
            font-size: 1.05rem;
            margin-left: 20px;
            white-space: nowrap;
        }

        /* ===== ABOUT ===== */
        .about {
            background: var(--cream);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }


        .about-image {
            background: var(--dark-soft);
            border-radius: var(--radius);
            min-height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }

        .about-image .placeholder-icon {
            font-size: 6rem;
            color: var(--gold-light);
            opacity: 0.8;
        }

        .about-image .badge {
            position: absolute;
            bottom: 24px;
            right: 24px;
            background: var(--or);
            color: #fff;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 8px 24px rgba(201, 160, 92, 0.3);
        }

        .about-text h2 {
            font-size: 2.6rem;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .about-text h2 span {
            color: var(--or);
        }

        .about-text p {
            color: #4a3f38;
            margin-bottom: 16px;
            font-size: 1.05rem;
        }

        .about-text .signature {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            color: var(--or);
            margin-top: 20px;
            font-style: italic;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials {
            background-color: rgba(0, 0, 0, 0.897);
            color: #fff;
        }

        .testimonials .section-subtitle {
            color: var(--gold-light);
        }

        .testimonials .section-title {
            color: #fff;
        }

        .testimonials .section-divider {
            background: var(--gold-light);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(4px);
            padding: 32px 28px;
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: var(--transition);
        }

        .testimonial-card:hover {
            transform: translateY(-6px);
            border-color: var(--or);
        }

        .testimonial-card .stars {
            color: var(--or);
            margin-bottom: 12px;
            font-size: 0.95rem;
            letter-spacing: 2px;
        }

        .testimonial-card blockquote {
            font-style: italic;
            font-size: 1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 16px;
        }

        .testimonial-card .author {
            font-weight: 600;
            color: #fff;
        }

        .testimonial-card .author span {
            color: var(--text-muted);
            font-weight: 400;
            font-size: 0.9rem;
        }

        /* ===== RESERVATION ===== */
        .reservation {
            background: #fff;
        }

        .reservation-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            background: var(--cream);
            border-radius: var(--radius);
            padding: 50px;
            box-shadow: var(--shadow);
            margin-top: 10px;
        }

        .reservation-info h3 {
            font-size: 2rem;
            margin-bottom: 16px;
        }

        .reservation-info p {
            color: #4a3f38;
            margin-bottom: 24px;
        }

        .reservation-info .contact-detail {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 14px;
            font-size: 1rem;
        }

        .reservation-info .contact-detail i {
            width: 40px;
            height: 40px;
            background: var(--or);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .reservation-form {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .reservation-form .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .reservation-form input,
        .reservation-form select,
        .reservation-form textarea {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            background: #fff;
            transition: var(--transition);
            outline: none;
        }

        .reservation-form input:focus,
        .reservation-form select:focus,
        .reservation-form textarea:focus {
            border-color: var(--or);
            box-shadow: 0 0 0 4px rgba(201, 160, 92, 0.15);
        }

        .reservation-form textarea {
            resize: vertical;
            min-height: 100px;
        }

        .reservation-form .btn {
            align-self: flex-start;
            margin-top: 6px;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.6);
            padding: 50px 0 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand .logo {
            font-size: 1.8rem;
            margin-bottom: 12px;
            display: inline-block;
        }

        .footer-brand p {
            max-width: 300px;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 1rem;
            margin-bottom: 16px;
            font-weight: 600;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul a {
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .footer-col ul a:hover {
            color: var(--or);
        }

        .footer-social {
            display: flex;
            gap: 14px;
            margin-top: 16px;
        }

        .footer-social a {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.1rem;
        }

        .footer-social a:hover {
            background: var(--or);
            color: #fff;
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 24px;
            text-align: center;
            font-size: 0.9rem;
        }

        .footer-bottom span {
            color: var(--or);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
                padding-top: 100px;
            }

            .hero-content p {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-image .plate {
                max-width: 340px;
            }

            .hero-content h1 {
                font-size: 3.4rem;
            }

            .about-grid {
                grid-template-columns: 1fr;
            }

            .reservation-wrapper {
                grid-template-columns: 1fr;
                padding: 30px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--dark);
                flex-direction: column;
                justify-content: center;
                padding: 40px;
                gap: 28px;
                transition: var(--transition);
                box-shadow: -8px 0 40px rgba(0, 0, 0, 0.6);
            }

            .nav-links.open {
                right: 0;
            }

            .hamburger {
                display: flex;
                z-index: 1001;
            }

            .hero-content h1 {
                font-size: 2.8rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .menu-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
            }

            .reservation-wrapper {
                padding: 24px;
            }

            .reservation-form .form-row {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-brand p {
                max-width: 100%;
            }

            .hero-image .plate {
                max-width: 260px;
            }

            .hero-image .plate i {
                font-size: 6rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }

            .hero-buttons .btn {
                width: 100%;
                text-align: center;
            }

            .container {
                padding: 0 16px;
            }

            .section-padding {
                padding: 60px 0;
            }
        }