/* ==========================================
   VARIABLES CSS
   ========================================== */
:root {
    /* Couleurs principales */
    --color-burgundy: #8B1538;
    --color-burgundy-dark: #6B0F2A;
    --color-burgundy-light: #A61D4B;
    --color-cream: #F5F1E8;
    --color-cream-dark: #E8E1D1;
    --color-gold: #D4AF37;
    --color-gold-light: #E8C547;
    --color-gold-dark: #B8941F;

    /* Couleurs neutres */
    --color-white: #FFFFFF;
    --color-black: #1A1A1A;
    --color-gray: #666666;
    --color-gray-light: #EEEEEE;

    /* Typographie */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Ombres */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   RESET ET BASE
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-black);
    line-height: 1.7;
    background-color: var(--color-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

/* ==========================================
   UTILITAIRES
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-burgundy);
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.section-title.light {
    color: var(--color-cream);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-burgundy));
    margin: 0 auto var(--spacing-md);
}

.title-underline.light {
    background: linear-gradient(90deg, var(--color-gold), var(--color-cream));
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
}

.section-subtitle.light {
    color: var(--color-cream);
}

/* Boutons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-burgundy-dark));
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--color-gold);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-burgundy-dark), var(--color-black));
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Animations d'apparition */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.fade-in-delay {
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease 0.9s forwards;
    opacity: 0;
}

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

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(26, 26, 26, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo i {
    font-size: 2rem;
    color: var(--color-burgundy);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-link {
    color: var(--color-cream);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.btn-reservation-nav {
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-burgundy-dark));
    color: var(--color-white);
    font-weight: 600;
    border: 2px solid var(--color-gold);
    border-radius: 30px;
    transition: var(--transition-normal);
}

.btn-reservation-nav:hover {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-black);
    transform: scale(1.05);
}

/* Menu hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--color-gold);
    transition: var(--transition-normal);
    border-radius: 2px;
}

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

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

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

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(139, 21, 56, 0.7) 0%,
        rgba(26, 26, 26, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: var(--spacing-md);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-gold);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: var(--spacing-md);
    color: var(--color-cream);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-cream);
    line-height: 1.8;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--color-gold);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ==========================================
   SECTION À PROPOS
   ========================================== */
.about {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
}

.about-image img:hover {
    transform: scale(1.03);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    color: var(--color-gray);
}

.about-content strong {
    color: var(--color-burgundy);
    font-weight: 700;
}

.about-features {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md);
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature i {
    font-size: 2.5rem;
    color: var(--color-gold);
}

.feature span {
    font-weight: 600;
    color: var(--color-burgundy);
    text-align: center;
}

/* ==========================================
   SECTION MENU
   ========================================== */
.menu {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-white);
}

.menu-category {
    margin-bottom: var(--spacing-lg);
}

.category-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-burgundy);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 3px solid var(--color-gold);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.category-title i {
    color: var(--color-gold);
}

.menu-items {
    display: grid;
    gap: var(--spacing-md);
}

.menu-item {
    padding: var(--spacing-md);
    background-color: var(--color-cream);
    border-radius: 10px;
    border-left: 4px solid var(--color-burgundy);
    transition: var(--transition-normal);
}

.menu-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--color-gold);
}

.menu-item.featured {
    background: linear-gradient(135deg, var(--color-cream) 0%, #FFF8E7 100%);
    border-left: 4px solid var(--color-gold);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xs);
}

.item-header h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-black);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.item-header i.fa-star {
    color: var(--color-gold);
    font-size: 1rem;
}

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

.item-description {
    color: var(--color-gray);
    font-style: italic;
    line-height: 1.6;
}

/* Grille pour les boissons */
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.beverage-section {
    background-color: var(--color-cream);
    padding: var(--spacing-md);
    border-radius: 10px;
}

.beverage-subtitle {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-burgundy);
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--color-gold);
}

.menu-item.small {
    padding: var(--spacing-sm);
    background-color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.menu-item.small:hover {
    transform: translateX(5px);
}

/* ==========================================
   SECTION RÉSERVATION
   ========================================== */
.reservation {
    padding: var(--spacing-xl) 0;
    background-image: url('https://images.unsplash.com/photo-1551218808-94e220e084d2?w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.reservation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(139, 21, 56, 0.9) 0%,
        rgba(26, 26, 26, 0.85) 100%
    );
}

.reservation-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.reservation-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.method {
    padding: var(--spacing-lg);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid var(--color-gold);
    transition: var(--transition-normal);
}

.method:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.method i {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: var(--spacing-md);
}

.method h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-cream);
    margin-bottom: var(--spacing-sm);
}

.method p {
    color: var(--color-cream);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ==========================================
   SECTION CONTACT
   ========================================== */
.contact {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

/* Formulaire de contact */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    font-weight: 600;
    color: var(--color-burgundy);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--color-cream-dark);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
    background-color: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-burgundy);
    box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Informations de contact */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.info-block {
    padding: var(--spacing-md);
    background-color: var(--color-white);
    border-radius: 10px;
    border-left: 4px solid var(--color-burgundy);
    transition: var(--transition-normal);
}

.info-block:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--color-gold);
}

.info-block i {
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
}

.info-block h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-burgundy);
    margin-bottom: var(--spacing-xs);
}

.info-block p {
    color: var(--color-gray);
    line-height: 1.8;
}

/* Carte Google Maps */
.map-container {
    margin-top: var(--spacing-lg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: var(--color-black);
    color: var(--color-cream);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: var(--spacing-md);
}

.footer-section p,
.footer-section li {
    color: var(--color-cream);
    line-height: 1.8;
    margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-section i {
    color: var(--color-gold);
    margin-right: var(--spacing-xs);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-burgundy);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background-color: var(--color-gold);
    transform: translateY(-5px) rotate(360deg);
}

.social-links i {
    color: var(--color-white);
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 241, 232, 0.2);
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-cream);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--color-gold);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

/* Tablettes */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

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

    .about-features {
        flex-wrap: wrap;
    }

    .menu-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Smartphones */
@media screen and (max-width: 768px) {
    /* Navigation mobile */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--spacing-lg);
        transition: var(--transition-normal);
        padding: var(--spacing-lg);
    }

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

    .nav-link {
        font-size: 1.5rem;
    }

    .btn-reservation-nav {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }

    /* Hero */
    .hero {
        background-attachment: scroll;
    }

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

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

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

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

    .about-features {
        flex-direction: column;
    }

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

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

    .social-links {
        justify-content: center;
    }

    /* Espacements réduits sur mobile */
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

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

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

    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* ==========================================
   MENU ITEMS CLIQUABLES
   ========================================== */
.menu-item.clickable {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.menu-item.clickable::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: var(--transition-slow);
}

.menu-item.clickable:hover::before {
    left: 100%;
}

.menu-item.clickable h4 .fa-hand-pointer {
    font-size: 0.9rem;
    color: var(--color-gold);
    opacity: 0;
    transition: var(--transition-normal);
}

.menu-item.clickable:hover h4 .fa-hand-pointer {
    opacity: 1;
    animation: wiggle 0.5s ease infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.menu-item.clickable:active {
    transform: scale(0.98);
}

/* ==========================================
   MODALE PLAT
   ========================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.modal-content {
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-white) 100%);
    max-width: 1000px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
    position: relative;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: none;
    background: var(--color-burgundy);
    color: var(--color-white);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.modal-close:hover {
    background: var(--color-burgundy-dark);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-image {
    position: relative;
    height: 600px;
    overflow: hidden;
}

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

.modal-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-black);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-info {
    padding: var(--spacing-lg);
    overflow-y: auto;
    max-height: 600px;
}

.modal-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-burgundy);
    margin-bottom: var(--spacing-sm);
}

.modal-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: var(--spacing-md);
}

.modal-description,
.modal-ingredients,
.modal-allergens {
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--color-white);
    border-radius: 10px;
    border-left: 4px solid var(--color-burgundy);
}

.modal-description h3,
.modal-ingredients h3,
.modal-allergens h3 {
    font-family: var(--font-heading);
    color: var(--color-burgundy);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.modal-description h3 i,
.modal-ingredients h3 i,
.modal-allergens h3 i {
    color: var(--color-gold);
}

.modal-description p,
.modal-ingredients p,
.modal-allergens p {
    color: var(--color-gray);
    line-height: 1.8;
    font-size: 1rem;
}

.modal-allergens {
    border-left-color: #ef4444;
}

.modal-allergens h3 i {
    color: #ef4444;
}

.btn-order {
    width: 100%;
    margin-top: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

/* ==========================================
   SECTION GALERIE
   ========================================== */
.gallery {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-white) 50%, var(--color-cream) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.9), rgba(26, 26, 26, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
}

.gallery-overlay p {
    color: var(--color-cream);
    font-size: 1.1rem;
    font-weight: 600;
}

/* ==========================================
   LIGHTBOX
   ========================================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

#lightboxCaption {
    color: var(--color-cream);
    font-size: 1.3rem;
    margin-top: var(--spacing-md);
    font-weight: 500;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(139, 21, 56, 0.8);
    border: 2px solid var(--color-gold);
    color: var(--color-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--color-burgundy);
    transform: scale(1.1);
}

.lightbox-close {
    top: 30px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* ==========================================
   SECTION TÉMOIGNAGES
   ========================================== */
.testimonials {
    padding: var(--spacing-xl) 0;
    background-image: url('https://images.unsplash.com/photo-1466978913421-dad2ebd01d17?w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.92), rgba(26, 26, 26, 0.90));
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: var(--spacing-lg);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: var(--spacing-md);
}

.stars i {
    color: var(--color-gold);
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--color-cream);
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: var(--spacing-md);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--color-gold);
    object-fit: cover;
}

.author-info h4 {
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--color-cream);
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ==========================================
   BADGES ET RÉCOMPENSES
   ========================================== */
.badges-section {
    text-align: center;
    padding-top: var(--spacing-lg);
}

.badges-section h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: var(--spacing-lg);
}

.badges-container {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-gold);
    border-radius: 15px;
    min-width: 150px;
    transition: var(--transition-normal);
}

.badge:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.badge i {
    font-size: 3rem;
    color: var(--color-gold);
}

.badge span {
    color: var(--color-cream);
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
}

/* ==========================================
   ANIMATIONS SUPPLÉMENTAIRES
   ========================================== */

/* Animation pour les éléments au survol */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Animation de fond pour la section réservation */
.reservation::before {
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 0.7;
    }
}

/* Effet de brillance sur les bordures dorées */
@keyframes shine {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.title-underline {
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

/* ==========================================
   RESPONSIVE POUR NOUVELLES SECTIONS
   ========================================== */

/* Tablettes */
@media screen and (max-width: 1024px) {
    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-image {
        height: 400px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .badges-container {
        gap: var(--spacing-md);
    }
}

/* Smartphones */
@media screen and (max-width: 768px) {
    .modal-content {
        margin: var(--spacing-sm);
    }

    .modal-image {
        height: 300px;
    }

    .modal-info {
        padding: var(--spacing-md);
    }

    .modal-info h2 {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .testimonial-card {
        padding: var(--spacing-md);
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 50px;
        height: 50px;
    }

    .badges-container {
        flex-direction: column;
        align-items: center;
    }

    .badge {
        min-width: 200px;
    }
}

@media screen and (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .modal-close {
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
    }
}
