/* Titre néon doré */
.neon-title {
    color: #ffe065;
    text-shadow:
        0 0 2px rgba(255, 224, 101, 0.95),
        0 0 6px rgba(210, 157, 0, 0.85),
        0 0 12px rgba(210, 157, 0, 0.6),
        0 0 24px rgba(210, 157, 0, 0.45),
        0 0 42px rgba(210, 157, 0, 0.35);
    letter-spacing: .5px;
    font-weight: 800;
}

@media (prefers-reduced-motion: no-preference) {
  .neon-title {
    animation: neonPulse 3.5s ease-in-out infinite alternate;
  }
}

@keyframes neonPulse {
  0% {
    text-shadow:
      0 0 2px rgba(255, 224, 101, 0.9),
      0 0 6px rgba(210, 157, 0, 0.85),
      0 0 12px rgba(210, 157, 0, 0.6),
      0 0 24px rgba(210, 157, 0, 0.45),
      0 0 42px rgba(210, 157, 0, 0.35);
  }
  100% {
    text-shadow:
      0 0 3px rgba(255, 224, 101, 1),
      0 0 10px rgba(210, 157, 0, 0.95),
      0 0 20px rgba(210, 157, 0, 0.75),
      0 0 36px rgba(210, 157, 0, 0.55),
      0 0 64px rgba(210, 157, 0, 0.45);
  }
}

/* Variante néon orange/rouge */
.neon-title-orange {
  color: #000; /* texte noir, lueur orange via ombres */
  text-shadow:
    0 0 2px rgba(223,80,25,.95),
    0 0 6px rgba(223,80,25,.8),
    0 0 12px rgba(210,80,30,.6),
    0 0 24px rgba(210,80,30,.5),
    0 0 42px rgba(210,80,30,.4);
  letter-spacing:.5px;
  font-weight: 800;
}

@media (prefers-reduced-motion: no-preference) {
  .neon-title-orange {
    animation: neonPulseOrange 3.2s ease-in-out infinite alternate;
  }
}

@keyframes neonPulseOrange {
  0% {
    text-shadow:
      0 0 2px rgba(223, 80, 25, 0.95),
      0 0 6px rgba(223, 80, 25, 0.8),
      0 0 12px rgba(210, 80, 30, 0.6),
      0 0 24px rgba(210, 80, 30, 0.5),
      0 0 42px rgba(210, 80, 30, 0.4);
  }
  100% {
    text-shadow:
      0 0 3px rgba(255, 97, 32, 1),
      0 0 10px rgba(255, 97, 32, 0.95),
      0 0 20px rgba(255, 97, 32, 0.75),
      0 0 36px rgba(255, 97, 32, 0.55),
      0 0 64px rgba(255, 97, 32, 0.45);
  }
}

/* Reset et variables CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Kumar+One&display=swap');

/* @font-face {
    font-family: 'Kumar One';
    src: url('assets/fonts/KumarOne.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
} */
/* Font Kumar One désactivée - fichier non disponible */

:root {
    /* Palette Huemint - Couleurs principales */
    --primary-color: #df5019;      /* Orange vif Huemint */
    --secondary-color: #d29d00;    /* Or-jaune Huemint */
    --accent-color: #474747;       /* Gris anthracite pour contraste */
    --dark-color: #000000;         /* Fond noir pur */
    --light-color: #181818;        /* Noir adouci */
    --text-color: #fff;            /* Texte principal blanc */
    --white: #ffffff;              /* Blanc pur */
    
    /* Police display principale */
    --display-font: 'Kumar One', system-ui, sans-serif;
    
    /* Ombres innovantes avec glow effects */
    --shadow-glow-orange: 0 0 20px rgba(223, 80, 25, 0.4), 0 0 40px rgba(223, 80, 25, 0.2);
    --shadow-glow-gold: 0 0 20px rgba(210, 157, 0, 0.4), 0 0 40px rgba(210, 157, 0, 0.2);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(210, 157, 0, 0.1);
    --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(210, 157, 0, 0.15);
    
    /* Dégradés innovants */
    --gradient-radial-orange: radial-gradient(circle at 30% 50%, rgba(223, 80, 25, 0.15), transparent 70%);
    --gradient-radial-gold: radial-gradient(circle at 70% 50%, rgba(210, 157, 0, 0.12), transparent 70%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    --gradient-btn-hover: linear-gradient(135deg, #df5019, #d29d00, #df5019);
    --gradient-btn-hover-size: 200% 200%;
    
    /* Transitions fluides améliorées */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-elastic: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-smooth-in-out: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Bordures et rayons */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    --border-radius-full: 9999px;
    
    /* Espacements créatifs */
    --spacing-fluid: clamp(1rem, 4vw, 4rem);
    --spacing-section: clamp(4rem, 12vw, 8rem);
}

body, html {
    background: #000 !important;
    color: var(--text-color) !important;
    overflow-x: hidden;
    min-height: auto !important;
    height: auto !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.6;
}

/* ==========================
   DESIGN INNOVANT - SYSTÈME COMPLET
   ========================== */

/* Animations globales */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: var(--shadow-glow-orange); }
    50% { box-shadow: var(--shadow-glow-gold); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slide-up-fade {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Navigation moderne avec glassmorphism amélioré */
.navbar {
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(210, 157, 0, 0.2);
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95) !important;
    border-bottom-color: rgba(210, 157, 0, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(210, 157, 0, 0.1);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-fluid);
    width: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    flex-shrink: 0;
}

.hamburger {
    flex-shrink: 0;
    margin-left: auto;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo img {
    filter: drop-shadow(0 2px 12px rgba(210, 157, 0, 0.4));
    transition: var(--transition-smooth);
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.nav-logo img:hover {
    transform: scale(1.08) rotate(1deg);
    filter: drop-shadow(0 4px 20px rgba(210, 157, 0, 0.6));
}

.nav-link {
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.nav-menu .nav-link.neon-title {
    font-family: var(--display-font);
    letter-spacing: 0.08em;
    outline: none !important;
}

.nav-menu .nav-link.neon-title.neon-title-rouge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.36rem 1rem;
    margin: 0 0.35rem;
    border-radius: 999px;
    background: transparent;
    color: #050505 !important;
    font-size: 1.18em;
    text-shadow:
        0 0 4px rgba(255, 255, 255, 1),
        0 0 20px rgba(255, 255, 255, 0.75) !important;
    box-shadow: none;
    transition: color 0.3s ease, text-shadow 0.3s ease, background 0.3s ease;
}

.nav-menu .nav-link.neon-title::before,
.nav-menu .nav-link.neon-title::after {
    display: none !important;
}

.nav-menu .nav-link.neon-title.neon-title-rouge:hover,
.nav-menu .nav-link.neon-title.neon-title-rouge:focus {
    color: #050505 !important;
    text-shadow:
        0 0 5px rgba(223, 67, 49, 0.96),
        0 0 22px rgba(223, 67, 49, 0.78) !important;
    box-shadow: none;
    background: transparent;
}

.nav-menu .nav-link.neon-title.neon-title-rouge.active {
    color: #050505 !important;
    text-shadow:
        0 0 6px rgba(223, 67, 49, 0.98),
        0 0 24px rgba(223, 67, 49, 0.82) !important;
    box-shadow: none;
    background: transparent;
}

.nav-menu .nav-link.neon-title.neon-title-rouge:not(.active) {
    color: #050505 !important;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 100%;
    transition: width var(--transition-smooth);
    animation: gradient-shift 3s ease infinite;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 8px rgba(210, 157, 0, 0.5);
}

/* Boutons innovants avec effets 3D */
.btn, .btn-primary, .btn-secondary {
    position: relative;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius-full);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-smooth);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-size: 200% 200%;
    color: var(--white);
    box-shadow: var(--shadow-card);
    transform-style: preserve-3d;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-elevated), var(--shadow-glow-orange);
    background-position: 100% 0;
    animation: glow-pulse 2s ease infinite;
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
}

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

.btn-secondary:hover {
    background: rgba(210, 157, 0, 0.15);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-glow-gold);
}

/* Hero section avec effets cinématiques */
.hero, .page-hero {
    position: relative;
    z-index: 0;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    background: #000;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 40px;
}

.hero::before {
    content: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fade-in-up 1s ease-out;
    padding: 3rem var(--spacing-fluid);
}

.hero-title {
    font-family: 'Bebas Neue', 'Oswald', var(--display-font), sans-serif;
    font-size: clamp(3.5rem, 11vw, 8.5rem);
    font-weight: 400;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 
        /* Ombre portée principale - style 3D street food */
        4px 4px 0px #df5019,
        8px 8px 0px rgba(223, 80, 25, 0.8),
        12px 12px 0px rgba(223, 80, 25, 0.6),
        /* Effet néon multiple - style enseigne */
        0 0 10px rgba(255, 224, 101, 1),
        0 0 20px rgba(255, 224, 101, 0.9),
        0 0 30px rgba(255, 224, 101, 0.8),
        0 0 40px rgba(255, 224, 101, 0.7),
        0 0 50px rgba(255, 224, 101, 0.6),
        0 0 60px rgba(255, 224, 101, 0.5),
        0 0 80px rgba(223, 80, 25, 0.4),
        0 0 100px rgba(223, 80, 25, 0.3);
    animation: 
        street-food-glow 2s ease-in-out infinite alternate,
        street-food-bounce 3s ease-in-out infinite,
        fade-in-up 1.2s ease-out;
    transform-style: preserve-3d;
    filter: drop-shadow(0 0 20px rgba(255, 224, 101, 0.8));
}

/* Logo hero - style street food avec effets néon */
.hero-logo-title {
    max-width: min(90vw, 700px);
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    position: relative;
    display: block;
    filter: 
        drop-shadow(2px 2px 0px rgba(223, 80, 25, 0.6))
        drop-shadow(4px 4px 0px rgba(223, 80, 25, 0.4))
        drop-shadow(0 0 8px rgba(255, 224, 101, 0.4))
        drop-shadow(0 0 16px rgba(255, 224, 101, 0.3));
    animation: 
        logo-bounce 4s ease-in-out infinite,
        fade-in-up 1.2s ease-out;
    transform-style: preserve-3d;
    z-index: 1;
    background: transparent !important;
    will-change: transform, filter;
    contain: layout style paint;
}

/* Animations street food - style fast food néon */
@keyframes street-food-glow {
    0% {
        text-shadow: 
            4px 4px 0px #df5019,
            8px 8px 0px rgba(223, 80, 25, 0.8),
            12px 12px 0px rgba(223, 80, 25, 0.6),
            0 0 10px rgba(255, 224, 101, 1),
            0 0 20px rgba(255, 224, 101, 0.9),
            0 0 30px rgba(255, 224, 101, 0.8),
            0 0 40px rgba(255, 224, 101, 0.7),
            0 0 50px rgba(255, 224, 101, 0.6),
            0 0 60px rgba(255, 224, 101, 0.5),
            0 0 80px rgba(223, 80, 25, 0.4),
            0 0 100px rgba(223, 80, 25, 0.3);
        filter: drop-shadow(0 0 20px rgba(255, 224, 101, 0.8));
    }
    100% {
        text-shadow: 
            4px 4px 0px #df5019,
            8px 8px 0px rgba(223, 80, 25, 0.9),
            12px 12px 0px rgba(223, 80, 25, 0.7),
            0 0 15px rgba(255, 224, 101, 1),
            0 0 30px rgba(255, 224, 101, 1),
            0 0 45px rgba(255, 224, 101, 0.9),
            0 0 60px rgba(255, 224, 101, 0.8),
            0 0 75px rgba(255, 224, 101, 0.7),
            0 0 90px rgba(255, 224, 101, 0.6),
            0 0 120px rgba(223, 80, 25, 0.6),
            0 0 150px rgba(223, 80, 25, 0.5);
        filter: drop-shadow(0 0 30px rgba(255, 224, 101, 1)) drop-shadow(0 0 50px rgba(223, 80, 25, 0.6));
    }
}

@keyframes street-food-bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.02);
    }
}

/* Effet glitch subtil pour style street food */
@keyframes street-food-glitch {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
}


@keyframes logo-bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-4px) scale(1.01);
    }
}

.hero-logo-title::before,
.hero-logo-title::after {
    display: none;
}

@keyframes street-food-pulse {
    0% {
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1.2) rotate(2deg);
    }
}

.hero-subtitle {
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: clamp(1.25rem, 3.5vw, 2.25rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    color: #ffe065;
    will-change: transform;
    contain: layout style paint;
    text-shadow: 
        /* Ombre portée 3D simple - sans brillance */
        2px 2px 4px rgba(0, 0, 0, 0.8),
        4px 4px 8px rgba(0, 0, 0, 0.6);
    animation: fade-in-up 1.4s ease-out 0.2s both;
    transform: perspective(500px) rotateX(2deg);
    line-height: 1.3;
    text-align: center;
    max-width: 100%;
    padding: 0 1rem;
}

/* Animation subtitle-neon-flicker supprimée - plus de brillance */

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(80px, 20vw, 120px);
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 224, 101, 0.6) 25%,
        rgba(255, 224, 101, 0.9) 50%,
        rgba(255, 224, 101, 0.6) 75%,
        transparent 100%);
    border-radius: 2px;
    animation: underline-expand 1.2s ease-out 1.6s both;
    /* Pas de box-shadow pour éviter la brillance */
}

@keyframes underline-expand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: clamp(80px, 20vw, 120px);
        opacity: 1;
    }
}

/* Animation underline-pulse supprimée - plus de brillance */

.hero-description {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.5rem);
    margin-bottom: 2.5rem;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.1em;
    color: #ffffff;
    position: relative;
    animation: fade-in-up 1.6s ease-out 0.4s both;
    will-change: opacity, transform;
    contain: layout style paint;
    text-shadow: 
        /* Ombre portée pour lisibilité - sans brillance */
        1px 1px 3px rgba(0, 0, 0, 0.8),
        2px 2px 6px rgba(0, 0, 0, 0.6),
        3px 3px 9px rgba(0, 0, 0, 0.4);
    max-width: min(90%, 800px);
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
    text-align: center;
    padding: 0 1.5rem;
}

.hero-description::before {
    content: '⭐️';
    position: absolute;
    left: -32px;
    top: -2px;
    font-size: 1.5em;
    color: #ffe065;
    line-height: 1;
    animation: 
        fade-in 1s ease-out 0.8s both,
        star-twinkle 3s ease-in-out infinite 1.8s;
    font-weight: 700;
    text-shadow: 
        0 0 8px rgba(255, 224, 101, 0.7),
        0 0 16px rgba(255, 224, 101, 0.5);
    filter: drop-shadow(0 0 10px rgba(255, 224, 101, 0.6));
}

.hero-description::after {
    content: '⭐️';
    position: absolute;
    right: -32px;
    top: -2px;
    font-size: 1.5em;
    color: #ffe065;
    line-height: 1;
    animation: 
        fade-in 1s ease-out 0.8s both,
        star-twinkle 3s ease-in-out infinite 2.2s;
    font-weight: 700;
    text-shadow: 
        0 0 8px rgba(255, 224, 101, 0.7),
        0 0 16px rgba(255, 224, 101, 0.5);
    filter: drop-shadow(0 0 10px rgba(255, 224, 101, 0.6));
}

@keyframes star-twinkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
        filter: drop-shadow(0 0 10px rgba(255, 224, 101, 0.6));
    }
    50% {
        transform: scale(1.15) rotate(10deg);
        opacity: 0.9;
        filter: drop-shadow(0 0 15px rgba(255, 224, 101, 0.8));
    }
}

@media (max-width: 768px) {
    .hero-logo-title {
        max-width: min(85vw, 500px);
        filter: 
            drop-shadow(2px 2px 0px rgba(223, 80, 25, 0.6))
            drop-shadow(4px 4px 0px rgba(223, 80, 25, 0.4))
            drop-shadow(0 0 8px rgba(255, 224, 101, 0.4))
            drop-shadow(0 0 16px rgba(255, 224, 101, 0.3));
    }
    
    .hero-title {
        font-size: clamp(3rem, 12vw, 6rem);
        letter-spacing: 0.06em;
        text-shadow: 
            3px 3px 0px #df5019,
            6px 6px 0px rgba(223, 80, 25, 0.8),
            9px 9px 0px rgba(223, 80, 25, 0.6),
            0 0 8px rgba(255, 224, 101, 1),
            0 0 16px rgba(255, 224, 101, 0.9),
            0 0 24px rgba(255, 224, 101, 0.8),
            0 0 32px rgba(255, 224, 101, 0.7),
            0 0 40px rgba(223, 80, 25, 0.6),
            0 0 60px rgba(223, 80, 25, 0.4);
    }
    
    .hero-subtitle {
        font-size: clamp(1.2rem, 4.5vw, 1.8rem);
        letter-spacing: 0.15em;
        transform: perspective(300px) rotateX(2deg);
    }
    
    .hero-subtitle::after {
        width: 80px;
        height: 2px;
        bottom: -10px;
    }
    
    .hero-description {
        font-size: clamp(1rem, 3vw, 1.3rem);
        max-width: 95%;
        letter-spacing: 0.06em;
    }
    
    .hero-description::before,
    .hero-description::after {
        font-size: 1.3em;
        top: -1px;
    }
    
    .hero-description::before {
        left: -28px;
    }
    
    .hero-description::after {
        right: -28px;
    }
    
    .hero-content--index {
        gap: 1.25rem;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}
.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    text-align: center;
}

.hero-action-btn {
    flex: 1 1 240px;
    max-width: 320px;
}

.hero-content--index {
    max-width: 800px;
    width: 100%;
    padding: 0 clamp(1rem, 5vw, 2.5rem);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background: transparent !important;
}

.hero-content--index::before,
.hero-content--index::after {
    display: none !important;
    content: none !important;
}

.hero--index .hero-title,
.hero--index .hero-logo-title {
    margin-bottom: 0.5rem;
}

.hero--index .hero-actions {
    max-width: 520px;
}

.hero--index .hero-bg-elephant {
    opacity: 0.35;
    max-height: 520px;
}

/* Galerie d'actualités (images Supabase) */
.actualites-images-wrapper {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.92);
    border-radius: var(--border-radius-lg);
    padding: clamp(1.25rem, 4vw, 2.75rem);
    border: 1px solid rgba(210, 158, 0, 0);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.actualites-images-wrapper .actualites-images-gallery {
    background: transparent;
}

.actualites-images-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    margin-top: 0;
}

.actualites-images-gallery .actualites-image-item {
    position: relative;
    overflow: visible;
    border-radius: 0;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.actualites-images-gallery .actualites-image-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: none;
}

.actualites-images-gallery .actualites-image-item[data-loading="true"] {
    background: transparent;
    animation: none;
}

.actualites-images-empty {
    width: 100%;
    padding: 1.5rem;
    border-radius: 0;
    border: none;
    background: transparent;
}

@media (max-width: 768px) {
    .actualites-images-wrapper {
        margin-top: 1rem;
        margin-bottom: 1rem;
        padding: 1rem;
    }
    
    .actualites-images-gallery {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 0.75rem;
    }
}
.hero .hero-actions {
    justify-content: center;
    width: 100%;
    max-width: 540px;
    margin: 2rem auto 0;
    padding-right: 0;
}

/* Cartes modernes avec effets 3D subtils */
.card, .special-card, .menu-item, .actualite-card {
    background: rgba(24, 24, 24, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(210, 157, 0, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.special-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.special-card-image {
    width: 100%;
    max-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: transparent;
    border-radius: calc(var(--border-radius-lg) - 8px);
    overflow: hidden;
}

.special-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.special-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.special-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.special-card-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.special-card:hover .special-card-image img {
    transform: scale(1.05);
}

/* Styles mobile pour les cartes spécialités */
@media (max-width: 768px) {
    .specialites {
        padding: 2rem 0;
    }
    
    .special-card {
        padding: 1.5rem 1rem;
    }
    
    .special-card-image {
        max-height: 180px;
        padding: 1rem;
    }
    
    .special-card-title {
        font-size: 1.1rem;
    }
    
    .special-card-content p {
        font-size: 0.9rem;
    }
    
    .bowls {
        padding: 2rem 0;
    }
}

.card::before,
.special-card::before,
.menu-item::before,
.actualite-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(210, 157, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.card:hover::before,
.special-card:hover::before,
.menu-item:hover::before,
.actualite-card:hover::before {
    left: 100%;
}

.card:hover,
.special-card:hover,
.menu-item:hover,
.actualite-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: rgba(210, 157, 0, 0.6);
    box-shadow: var(--shadow-elevated), var(--shadow-glow-gold), 0 0 30px rgba(210, 157, 0, 0.2);
    transition: var(--transition-elastic);
}

.card:active,
.special-card:active,
.menu-item:active,
.actualite-card:active {
    transform: translateY(-5px) scale(1.01);
}

/* Sections avec layouts créatifs */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-section);
    position: relative;
    padding-top: 2rem;
}

.section-header h2 {
    font-family: var(--display-font);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 400;
    background: linear-gradient(135deg, var(--white), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), var(--primary-color), transparent);
    margin: 1.5rem auto;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(210, 157, 0, 0.5);
}

/* Footer moderne */
.footer {
    background: 
        var(--gradient-radial-orange),
        var(--gradient-radial-gold),
        #000;
    border-top: 1px solid rgba(210, 157, 0, 0.2);
    padding: var(--spacing-section) var(--spacing-fluid) 0 var(--spacing-fluid);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), var(--primary-color), transparent);
    opacity: 0.5;
}

/* Main avec padding pour navbar fixe */
main {
    padding-top: 80px;
    min-height: 100vh;
}

/* Responsive amélioré */
/* Responsive amélioré - styles mobiles déplacés vers le grand media query */

/* Logo et navigation avec nouvelle palette */
.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
}

.nav-logo a:focus,
.nav-logo a:active,
.nav-logo img:focus,
.nav-logo img:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.logo-img {
    height: auto;
    max-height: 47.5px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 1px 2px rgba(3, 3, 3, 0.1);
}


/* Badges avec nouvelle palette */
.new-badge {
    background: var(--gradient-bordeaux);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-bordeaux);
    margin-left: 8px;
}

.specialty-badge {
    background: var(--gradient-olive);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-olive);
    margin-left: 8px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 11000; /* au-dessus des overlays hero (10001) */
    background: #000 !important;
    backdrop-filter: blur(10px);
    padding: 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(210,157,0,0.18);
    backdrop-filter: saturate(130%) blur(6px);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    z-index: 11000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.5rem;
    gap: 0.5rem;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
}

.nav-menu::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
    background: transparent;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 300;
    transition: var(--transition);
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* Menu déroulant */
.nav-item {
    position: relative;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    margin: 0;
    z-index: 101;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(210, 154, 5, 0.1);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

/* Actions de navigation */
.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-outline {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(210, 154, 5, 0.2);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(210, 154, 5, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    width: 24px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    transition: all 0.3s ease;
}

/* Logo Section */
.logo-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 2rem 0;
    text-align: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    max-width: 400px;
    margin: 0 auto;
}

.main-logo {
    max-width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
}

/* ========================= SECTION SPÉCIALITÉS ========================= */
.specialties {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(210, 154, 5, 0.05), rgba(210, 154, 5, 0.02));
    z-index: 1;
}

/* ========================= SECTION HERO - EN-TÊTE RESTAURANT PROFESSIONNEL ========================= */
.hero {
    position: relative;
    background: #000;
    overflow: hidden;
    min-height: calc(100vh - 120px);
}

.hero-bg-elephant {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    max-height: 600px;
    width: auto;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.hero > *:not(.hero-bg-elephant) {
    position: relative;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    transform: translateY(0px);
}

.hero-logo-container {
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    animation: fadeInUp 1s ease-out;
    transform: translateY(0px);
}

.hero-logo {
    max-width: 110px;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(255, 255, 255, 0.4)) drop-shadow(0 10px 25px rgba(255, 255, 255, 0.3)) drop-shadow(0 5px 15px rgba(255, 255, 255, 0.25));
    transition: transform 0.3s ease;
    opacity: 0;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero-text {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
    transform: translateY(-10px);
}

.hero-title {
    font-family: var(--display-font);
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.6px;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--white);
    font-style: italic;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 300;
}


.hero-actions {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    color: var(--white) !important;
    font-size: 2.5rem !important;
    opacity: 0.9;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-arrow i {
    color: var(--white) !important;
    font-size: 2.5rem !important;
}

.scroll-arrow:hover {
    opacity: 1;
}

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

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

.hero-offers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offer-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(210, 154, 5, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: rgba(24,24,24,0.85);
    border: var(--border-ornate);
    box-shadow: var(--ornament-shadow);
}

.offer-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.offer-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(210, 154, 5, 0.3);
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(210, 154, 5, 0.3);
}

.offer-icon i {
    font-size: 2rem;
    color: white;
}

.offer-content {
    margin-bottom: 2rem;
    flex: 1;
}

.offer-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.offer-content p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.offer-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.offer-hours {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.offer-item .btn {
    width: 100%;
    max-width: 250px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.offer-item .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(210, 154, 5, 0.4);
}

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

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 300;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    will-change: transform, box-shadow;
}

/* Effet ripple sur les boutons */
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(223, 80, 25, 0.3), 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 999px;
    border: 1px solid rgba(210,157,0,0.6);
    background-size: 200% 100%;
    background-position: 0% 50%;
}

.btn-primary:hover {
    background-position: 100% 50%;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(223, 80, 25, 0.4), 0 4px 10px rgba(0, 0, 0, 0.3), 0 0 20px rgba(210, 157, 0, 0.3);
    filter: brightness(1.1);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 15px rgba(223, 80, 25, 0.3), 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(223,80,25,0.15);
    border-color: rgba(223, 80, 25, 0.6);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(223, 80, 25, 0.3), 0 0 15px rgba(223, 80, 25, 0.2);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(0.98);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: #000 !important;
    color: #fff !important;
    border-radius: var(--border-radius);
    position: relative;
    position: relative;
    padding-top: 28px;
}

.section-header h2 {
    font-family: var(--display-font);
    color: var(--white);
    text-shadow: 0 1px 0 rgba(0,0,0,0.6);
}

.section-header::after {
    content: "";
    display: block;
    margin: 14px auto 0 auto;
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--ornament-gold), transparent);
    border-radius: 6px;
}

/* Specialties Hero Section (pour la page d'accueil) */
.specialties-hero {
    height: 40vh;
    background: linear-gradient(135deg, rgba(210, 154, 5, 0.3), rgba(124, 42, 0, 0.3));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.specialties-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/plats/platadobestock.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.specialties-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.85), rgba(0,0,0,0.7));
    z-index: 0;
}

.specialties-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--white);
    text-align: center;
}

.specialties-hero .hero-title {
    font-family: var(--display-font);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(124, 42, 0, 0.3);
    color: var(--white);
}

.specialties-hero .hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5), 0 0 8px rgba(124, 42, 0, 0.3);
    color: var(--white);
}
/* Section header styles */
.section-header h2 {
    font-family: var(--display-font);
    font-size: 3rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header h6 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Specialties Hero Section (pour la page d'accueil) */
.specialties-hero {
    height: 40vh;
    background: linear-gradient(135deg, rgba(210, 154, 5, 0.3), rgba(124, 42, 0, 0.3)), 
                url('assets/images/plats/platadobestock.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.specialties-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--white);
    text-align: center;
}

.specialties-hero .hero-title {
    font-family: var(--display-font);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(124, 42, 0, 0.3);
    color: var(--white);
}

.specialties-hero .hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5), 0 0 8px rgba(124, 42, 0, 0.3);
    color: var(--white);
}

/* Espacement pour éviter le chevauchement avec la navigation fixe */
.about,
.gallery,
.environment-section,
.google-reviews {
    scroll-margin-top: 12rem;
}

/* About Section */
.about {
    padding: 3rem 0;
    background: #f0f0f0;
    margin-top: 8rem;
    position: relative;
    z-index: 10;
}

.about .container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.about-subtitle {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

/* Amélioration de la lisibilité lors du scroll */
@media (max-width: 768px) {
    .about {
        padding: 2rem 0 3rem 0;
        margin-top: 6rem;
    }
    
    .about .container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-color);
    font-size: 0.9rem;
}

.about-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* Menu Section */
.menu {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(51, 53, 31, 0.03), rgba(210, 154, 5, 0.03));
    position: relative;
}

.menu-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}

.menu-category {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    min-width: 120px;
    max-width: 200px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-category:hover {
    background: rgba(210, 154, 5, 0.1);
    border-color: var(--primary-color);
}

.menu-category.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: none;
    box-shadow: 0 2px 8px rgba(210, 154, 5, 0.3);
}

.menu-category.active:hover {
    background: var(--primary-color);
    opacity: 0.9;
}

/* Message d'information du menu */
.menu-info-message {
    margin: 1.5rem 0 2rem 0;
    padding: 1rem 1.25rem;
    border: 1px dashed rgba(210,157,0,0.35);
    border-radius: var(--border-radius-md);
    background: rgba(24,24,24,0.5);
    color: rgba(255,255,255,0.9);
    backdrop-filter: blur(6px);
}

.menu-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-section {
    background: transparent;
    /* suppression des bordures apparentes */
    border: none;
    box-shadow: 0 18px 48px rgba(0,0,0,0.45);
}

.menu-category-title {
    position: sticky;
    top: 64px; /* sous navbar */
    z-index: 5;
    background: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.75));
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 1rem 0.75rem 0.75rem 0.75rem;
    margin: -1rem -1rem 0.5rem -1rem;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.menu-category-title h3 {
    margin: 0 0 0.25rem 0;
    color: var(--white);
    background: linear-gradient(135deg, var(--white), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-item + .menu-item {
    border: none;
    box-shadow: 0 -1px 0 rgba(210,157,0,0.12) inset;
}

.menu-item-info h5 {
    margin: 0 0 0.25rem 0;
    letter-spacing: .3px;
    color: var(--white);
}

.menu-item p { color: rgba(255,255,255,0.85); }

@media (max-width: 768px) {
    .menu-category-title { top: 58px; }
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.8rem 1rem;
    transition: background-color 0.2s ease;
    margin-bottom: 0.3rem;
    gap: 2rem;
    border-radius: 8px;
    border: none;
    background: rgba(24,24,24,0.75);
}

.menu-item:hover {
    background: rgba(210, 154, 5, 0.02);
    transition: background-color 0.2s ease;
}

.menu-item-info {
    flex: 1;
    min-width: 0;
}
.menu-item-info h5,
.menu-item-info p {
    font-family: 'Kumar One', cursive, sans-serif !important;
}
.menu-item-name {
    font-family: 'Kumar One', cursive, sans-serif !important;
}

.menu-item-info h3,
.menu-item-info h5 {
    font-family: 'Kumar One', cursive, sans-serif !important;
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
    font-weight: 650;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.menu-item-info h5 {
    min-height: 24px; /* Pour garder l'alignement */
}

.menu-item-name {
    flex: 1;
}

/* Icône de plat (disponible/non disponible) */
.menu-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 10px;
    flex-shrink: 0;
}

.menu-item-icon.available {
    background: #10b981;
    color: white;
}

.menu-item-icon.unavailable {
    background: #ef4444;
    color: white;
}

/* Conteneur pour badges (NOUVEAU, à emporter, etc.) */
.menu-item-badges {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: 0.5rem;
}

.menu-item-info p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0;
}

.menu-item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
    font-family: 'Inter', sans-serif;
}

/* Click & Collect Section */
.click-collect {
    padding: 6rem 0;
    background: var(--dark-color);
    color: var(--white);
}

/* About Section */
.about {
    padding: 4rem 0;
    background: #f0f0f0;
}

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

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-color);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.click-collect .section-header h2,
.click-collect .section-header h4 {
    color: var(--white);
}

.click-collect .section-header h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
}

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

.click-collect-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.click-collect-image {
    text-align: center;
}

.click-collect-image img {
    max-width: 200px;
    height: auto;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-rating {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.testimonial h6 {
    color: var(--primary-color);
    font-weight: 600;
}

/* Gallery Section */
.gallery {
    padding: 3rem 0;
    background: #f0f0f0;
}

.gallery .container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.gallery-item:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

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

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

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(210, 154, 5, 0.03), rgba(124, 42, 0, 0.03));
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.contact-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-right {
    position: relative;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
}

.contact-item h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-item p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* SVG Social Icons */
.social-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* removed: facebook icon not used */

.instagram-icon {
    color: #E4405F;
}

.tiktok-icon {
    color: #000000;
}

/* Social Icons Container */
.social-icons-container {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.social-link:focus {
    outline: none;
    background-color: transparent !important;
}

.social-link:active {
    outline: none;
    background-color: transparent !important;
}

.social-link .social-icon {
    width: 24px;
    height: 24px;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid #e5e7eb;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    width: 100%;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: rgba(18, 18, 18, 0.95);
    color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(210, 154, 5, 0.6);
    box-shadow: 0 0 0 3px rgba(210, 154, 5, 0.18);
    background: rgba(26, 26, 26, 0.98);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select {
    color: var(--text-color);
}

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

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

.form-checkbox label {
    margin: 0;
    font-size: 0.9rem;
    cursor: pointer;
    flex: 1;
}

/* Layout spécial pour les cases à cocher */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    border-color: #e5e7eb;
    background: #f1f5f9;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

.checkbox-item label {
    margin: 0;
    font-size: 0.9rem;
    cursor: pointer;
    flex: 1;
}

/* Footer */
.footer {
    background: #000 !important;
    color: var(--text-color) !important;
    padding: 3rem 0 0;
    border-top: 3px solid var(--primary-color);
    border-top: 1px solid rgba(210,157,0,0.25);
    background:
        radial-gradient(800px 220px at 80% 0%, rgba(223,80,25,0.10), transparent 60%),
        radial-gradient(800px 220px at 20% 0%, rgba(210,157,0,0.12), transparent 60%),
        #000;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

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

.social-links a {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: transparent;
    color: var(--white);
    text-align: center;
    line-height: 80px;
    border-radius: 50%;
    transition: var(--transition);
    padding: 0;
}

.social-links a:hover {
    background: transparent;
    transform: none;
}

.social-links .social-icon {
    width: 48px;
    height: 48px;
}

.social-links a:focus {
    outline: none;
    background-color: transparent !important;
}

.social-links a:active {
    outline: none;
    background-color: transparent !important;
}

/* Suppression complète des effets de sélection sur tous les liens sociaux */
.social-links a,
.social-link,
.social-card {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

.social-links a:focus,
.social-links a:active,
.social-link:focus,
.social-link:active,
.social-card:focus,
.social-card:active {
    outline: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

.footer-bottom p {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.footer-bottom a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

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

/* =========================
   RESPONSIVE DESIGN - MOBILE FIRST
========================= */

/* Mobile Styles - Base */
@media (max-width: 768px) {
    /* Variables mobiles optimisées */
    :root {
        --container-padding: 1.25rem;
        --section-padding: 2.5rem 1.25rem;
        --font-size-small: 0.95rem; /* Légèrement augmenté pour meilleure lisibilité */
        --font-size-base: 1.05rem; /* Base augmentée */
        --font-size-large: 1.3rem;
        --font-size-xl: 1.6rem;
        --font-size-2xl: 2.2rem;
        --font-size-3xl: 2.8rem;
        --touch-target-min: 44px; /* Taille minimale pour les zones tactiles */
    }
    
    /* Container mobile */
    .container {
        padding: 0 1.25rem;
        max-width: 100%;
    }
    
    /* Amélioration de la lisibilité globale sur mobile */
    body {
        font-size: 1.05rem; /* Taille de base légèrement augmentée */
        line-height: 1.7; /* Interligne augmenté pour meilleure lisibilité */
    }
    
    /* Espacements améliorés pour le touch */
    .btn,
    .btn-primary,
    .btn-secondary {
        min-height: 48px; /* Zone tactile minimale */
        padding: 1rem 1.75rem;
        font-size: 1.05rem;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(255, 224, 101, 0.2);
    }
    
    /* Amélioration des zones tactiles pour les liens */
    a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        touch-action: manipulation;
    }

    /* Navigation Mobile */
    .navbar {
        padding: 0 !important;
    }
    
    .nav-container {
        padding: 0.5rem 1rem;
        flex-wrap: wrap;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    .nav-logo .logo-banner {
        max-height: 45px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-container {
        max-width: 300px;
        padding: 1.5rem;
    }
    
    .main-logo {
        max-height: 120px;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 12002;
        padding: 0.75rem; /* Zone tactile plus grande (min 44x44px recommandé) */
        cursor: pointer;
        min-width: 44px; /* Taille minimale recommandée pour le touch */
        min-height: 44px;
        border-radius: 8px;
        transition: background-color 0.2s ease;
        -webkit-tap-highlight-color: transparent;
    }
    
    .hamburger:active {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .hamburger .bar {
        background: #fff;
        width: 26px;
        height: 3px;
        margin: 3.5px 0;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        border-radius: 2px;
        transform-origin: center;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    
    /* Main padding pour navbar fixe mobile */
    main { 
        padding-top: 60px !important;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: #000; /* Fond simple noir, sans gradient */
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: none; /* Pas d'ombre complexe */
        z-index: 12001;
        padding: 0 !important;
        margin: 0 !important;
        overflow-y: auto; /* Permettre le scroll vertical si nécessaire */
        overflow-x: hidden; /* Pas de scroll horizontal */
        -webkit-overflow-scrolling: touch; /* Défilement tactile fluide */
        scrollbar-width: none; /* Firefox - masquer la scrollbar */
        -ms-overflow-style: none; /* IE/Edge - masquer la scrollbar */
        list-style: none;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0 !important;
    }

    /* Masquer la scrollbar sur Webkit (Chrome, Safari) pour le menu mobile */
    .nav-menu::-webkit-scrollbar {
        display: none;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0 !important;
        padding: 0 !important;
        opacity: 1 !important;
        animation: none !important;
        list-style: none;
        width: 100%;
    }
    
    .nav-menu li:first-child {
        margin-top: 60px !important;
        padding-top: 0 !important;
    }
    
    .nav-menu.active li {
        animation-delay: 0 !important;
    }
    
    .nav-link {
        font-size: 1.15rem; /* Taille optimisée pour mobile */
        padding: 1.5rem 1.75rem; /* Zone tactile plus grande (min 44px de hauteur) */
        display: block;
        border-radius: 0;
        margin: 0 !important;
        transition: background-color 0.25s ease, transform 0.2s ease;
        color: #fff !important;
        width: 100%;
        text-align: left;
        font-weight: 500;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-transform: none;
        letter-spacing: 0.02em; /* Légèrement augmenté pour la lisibilité */
        text-shadow: none !important;
        min-height: 48px; /* Zone tactile minimale recommandée */
        display: flex;
        align-items: center;
        -webkit-tap-highlight-color: rgba(255, 224, 101, 0.2);
        touch-action: manipulation; /* Améliore la réactivité tactile */
    }
    
    .nav-link:active {
        background-color: rgba(255, 255, 255, 0.15);
        transform: scale(0.98);
    }
    
    .nav-menu li:first-child .nav-link {
        padding-top: 1.5rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link:hover,
    .nav-link:active {
        background: rgba(255, 255, 255, 0.1); /* Fond simple au survol */
        color: #fff !important;
        transform: none; /* Pas de transformation */
    }
    
    /* Override desktop neon-title styles on mobile - design simple */
    .nav-menu .nav-link.neon-title.neon-title-rouge {
        padding: 1.5rem 1.75rem !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        background: transparent !important;
        color: #fff !important;
        text-shadow: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        font-size: 1.15rem !important;
        font-weight: 500 !important;
        text-transform: none !important;
        letter-spacing: 0.02em !important;
        min-height: 48px !important;
    }
    
    .nav-menu .nav-link.neon-title.neon-title-rouge.active {
        background: rgba(223, 80, 25, 0.15) !important;
        color: #fff !important;
        text-shadow: none !important;
        border-left: 3px solid rgba(223, 80, 25, 0.6);
    }
    
    /* Amélioration des cartes sur mobile */
    .special-card,
    .bowls-item {
        padding: 1.5rem 1.25rem;
        margin-bottom: 1.5rem;
        min-height: auto;
    }
    
    .special-card-image,
    .bowls-image {
        margin-bottom: 1.25rem;
    }
    
    .special-card-title,
    .bowls-content h3,
    .bowls-content h4 {
        font-size: 1.25rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    
    .special-card-content p,
    .bowls-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Amélioration des boutons d'action hero sur mobile */
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 100%;
        padding: 1.1rem 2rem;
        font-size: 1.05rem;
    }
    
    /* Amélioration des badges partenaires sur mobile */
    .partner-badge {
        padding: 1rem 1.25rem;
        min-height: 60px;
        touch-action: manipulation;
    }
    
    .partner-logo {
        width: 120px;
        height: auto;
    }
    
    /* Amélioration des formulaires sur mobile */
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 48px;
        padding: 0.9rem 1.25rem;
        font-size: 1.05rem;
        touch-action: manipulation;
    }
    
    .form-group label {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        font-weight: 500;
    }
    
    /* Amélioration des espacements de section sur mobile */
    .specialites,
    .bowls,
    .social-section {
        padding: 3rem 0;
    }
    
    /* Amélioration de la hiérarchie des titres sur mobile */
    h1, .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        line-height: 1.3;
        margin-bottom: 1.25rem;
    }
    
    h3 {
        font-size: clamp(1.4rem, 5vw, 2rem);
        line-height: 1.35;
        margin-bottom: 1rem;
    }
    
    /* Amélioration de l'espacement entre les éléments */
    .special-card + .special-card,
    .bowls-item + .bowls-item {
        margin-top: 0;
    }
    
    /* Amélioration du footer sur mobile */
    .footer-grid3 {
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .footer-links-line {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .footer-info-line {
        font-size: 0.95rem;
        text-align: center;
        line-height: 1.6;
    }
    
    .nav-actions {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin-left: 1rem;
    }
    
    .dropdown-menu a {
        padding: 0.5rem 1rem;
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--white) !important;
    }
    
    .dropdown-menu a:hover {
        background: rgba(255, 215, 0, 0.2);
        color: var(--primary-color) !important;
        border-left: none;
        border-bottom-color: var(--primary-color);
    }

    /* Hero Section Mobile */
    .hero-video {
        /* Sur mobile, on peut désactiver la vidéo pour économiser la bande passante */
        display: none;
    }
    
    .hero-background {
        /* Fallback avec l'image de fond sur mobile */
        background: transparent;
    }
    
    .hero-logo {
        max-width: 304px;
        opacity: 0.4;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 100%;
        min-height: 48px;
    }
    
    .hero-scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-arrow {
        font-size: 2rem !important;
        color: var(--white) !important;
    }
    
    .scroll-arrow i {
        font-size: 2rem !important;
        color: var(--white) !important;
    }
    
    .offer-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .offer-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .offer-icon i {
        font-size: 1.5rem;
    }
    
    .offer-content h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .offer-content p {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }

    /* Page Hero Mobile */
    .page-hero {
        padding: 3rem 1rem;
        min-height: 40vh;
    }
    
    .page-hero .hero-title {
        font-size: 2rem;
    }
    
    .page-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .page-hero .hero-content p {
        font-size: 1rem;
    }
    
    /* Parallax Hero Mobile */
    .parallax-hero {
        height: 70vh;
    }
    
    .parallax-content .hero-title {
        font-size: 2.5rem;
    }
    
    .parallax-content .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .parallax-content .hero-description {
        font-size: 1rem;
    }

    /* Sections Mobile */
    .container {
        padding: 0 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }

    /* Menu Mobile */
    .menu-categories {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 2rem;
        justify-content: center;
    }
    
    .menu-category {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
        border-radius: 20px;
        min-width: 120px;
        text-align: center;
    }
    
    .menu-item {
        padding: 1rem 1.5rem;
        margin-bottom: 1rem;
        border-radius: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .menu-item-info h3,
    .menu-item-info h5 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .menu-item-price {
        font-size: 1.2rem;
        align-self: flex-end;
    }

    /* About Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .about-image img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 15px;
    }

    /* Values Grid Mobile */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-item {
        padding: 2rem 1.5rem;
        text-align: center;
        border-radius: 15px;
    }
    
    .value-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
    }
    
    .value-icon i {
        font-size: 2rem;
    }

    /* Team Mobile */
    .team-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-text {
        order: 2;
    }
    
    .team-image {
        order: 1;
    }
    
    .team-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        object-position: center;
        border-radius: 20px;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    /* Commitment Mobile */
    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Contact Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
    
    .contact-form form {
        padding: 2rem 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .map-container {
        height: 250px;
        margin: 2rem 0;
    }

    /* Hours Section Mobile */
    .hours-section {
        padding: 2rem 1rem;
    }
    
    .hours-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hours-info {
        text-align: center;
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-item {
        height: 200px;
        border-radius: 15px;
    }

    /* Footer Mobile */
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 1rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        margin-bottom: 0;
        padding-bottom: 0;
        text-align: center;
    }

    /* Legal Section Mobile */
    .legal-section {
        padding: 2rem 0;
    }
    
    .legal-content {
        gap: 2rem;
    }
    
    .legal-item {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .legal-item h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .legal-item h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 1rem;
    }
    
    .legal-item h4 {
        font-size: 1.1rem;
        margin: 1rem 0 0.5rem;
    }

    /* Click & Collect Mobile */
    .click-collect {
        padding: 3rem 1rem;
    }
    
    .click-collect-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .click-collect-text {
        order: 2;
        text-align: center;
    }
    
    .click-collect-image {
        order: 1;
    }

    /* Reservation Mobile */
    .reservation-form-section {
        padding: 2rem 1rem;
    }
    
    .reservation-form {
        padding: 2rem 1.5rem;
    }

    /* Touch Interactions */
    .btn:active,
    .nav-link:active {
        transform: scale(0.98);
    }
    
    /* Scroll Behavior */
    html {
        scroll-behavior: smooth;
    }
    
    /* Focus States for Touch */
    .btn:focus,
    .nav-link:focus,
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: 3px solid rgba(255, 255, 255, 0.5);
        outline-offset: 2px;
    }
    
    /* Styles pour les erreurs de formulaire */
    .form-group input.error,
    .form-group select.error,
    .form-group textarea.error {
        border-color: #e74c3c;
        box-shadow: 0 0 8px 2px rgba(231, 76, 60, 0.2);
    }
    
    /* Message d'erreur */
    .error-message {
        color: #e74c3c;
        font-size: 0.9rem;
        margin-top: 0.5rem;
        display: block;
    }
    
    /* Lazy loading */
    .lazy {
        opacity: 0;
        transition: opacity 0.3s;
    }
    
    .lazy.loaded {
        opacity: 1;
    }
    
    /* Amélioration des performances sur mobile */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Actualités Mobile */
    .actualite-image {
        width: 100%;
        max-width: 100%;
        padding: 0.5rem;
    }
    
    .actualite-image img {
        width: 100%;
        max-width: 100%;
        max-height: none;
        height: auto;
        object-fit: contain;
        margin: 0 auto;
    }
    
    .actualite-detail-image {
        width: 100%;
        max-width: 100%;
        max-height: none;
        height: auto;
        object-fit: contain;
    }
    
    .actualite-card {
        margin-bottom: 2rem;
    }
    
    /* Optimisation des transitions sur mobile */
    .btn,
    .nav-link,
    .menu-item,
    .testimonial,
    .gallery-item {
        will-change: transform;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    /* Optimisations pour très petits écrans */
    .container {
        padding: 0 1rem;
    }
    
    body {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-logo {
        max-width: 300px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 7vw, 3.5rem);
        letter-spacing: 0.05em;
        line-height: 1.15;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.3rem);
        letter-spacing: 0.08em;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        line-height: 1.5;
    }
    
    .hero-actions .btn {
        font-size: 1rem;
        padding: 1rem 1.75rem;
        min-height: 48px;
    }
    
    /* Amélioration des cartes sur très petits écrans */
    .special-card,
    .bowls-item {
        padding: 1.25rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .special-card-title,
    .bowls-content h3,
    .bowls-content h4 {
        font-size: 1.15rem;
    }
    
    .special-card-content p,
    .bowls-content p {
        font-size: 0.9rem;
    }
    
    .offer-item {
        padding: 1.25rem 1rem;
    }
    
    .offer-icon {
        width: 50px;
        height: 50px;
    }
    
    .offer-icon i {
        font-size: 1.2rem;
    }
    
    .offer-content h3 {
        font-size: 1.3rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
    
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-container {
        max-width: 250px;
        padding: 1rem;
    }
    
    .main-logo {
        max-height: 100px;
    }

    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .menu-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-category {
        width: 100%;
        max-width: 250px;
        min-width: 200px;
        text-align: center;
        justify-content: center;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 750px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Page Hero (pour les pages internes) */
.page-hero {
    height: 60vh;
    background: linear-gradient(135deg, rgba(210, 154, 5, 0.3), rgba(124, 42, 0, 0.3));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(1200px 500px at 50% -20%, rgba(223,80,25,0.22), transparent 50%),
                radial-gradient(1200px 500px at 20% -10%, rgba(210,157,0,0.18), transparent 55%),
                #000;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/plats/platadobestock.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.85), rgba(0,0,0,0.7));
    z-index: 0;
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--white);
    text-align: center;
}

.page-hero .hero-title {
    font-family: var(--display-font);
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(124, 42, 0, 0.3);
    color: var(--white);
}

.page-hero .hero-subtitle {
    font-size: 1.6rem;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5), 0 0 8px rgba(124, 42, 0, 0.3);
    color: var(--white);
    opacity: 0.9;
    line-height: 1.4;
}

.page-hero .hero-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5), 0 0 8px rgba(124, 42, 0, 0.3);
    color: var(--white);
}

/* ========================= ANIMATION DE DÉFILEMENT POUR TITRES DE SECTION ========================= */
.page-hero {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-hero .hero-content {
    transition: transform 0.1s ease-out, opacity 0.3s ease-out;
    will-change: transform, opacity;
    transform: translateY(0px);
}

/* Styles responsives pour l'animation de défilement */
@media (max-width: 768px) {
    .page-hero .hero-content {
        transition: transform 0.05s ease-out, opacity 0.2s ease-out;
    }
}

@media (max-width: 480px) {
    .page-hero .hero-content {
        transition: transform 0.03s ease-out, opacity 0.15s ease-out;
    }
}

/* ========================= SECTION AVIS GOOGLE ========================= */
.google-reviews {
    padding: 4rem 0;
    background: #f0f0f0;
}

.google-reviews .container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.reviews-header h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 700;
}

.reviews-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Résumé de la note Google */
.google-rating-summary {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.rating-stars .star,
.rating-stars .half-star {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
    flex-shrink: 0;
}

.rating-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    background: linear-gradient(135deg, #d29a05, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-count {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 600;
}

@media (max-width: 768px) {
    .rating-stars {
        font-size: 1.5rem;
        color: #fbbf24 !important;
    }
    
    .rating-value {
        font-size: 1.2rem;
    }
    
    .rating-count {
        font-size: 1rem;
    }
}

/* Grille d'avis responsive */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    flex: 1;
    max-width: 100%;
}

.reviews-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.reviews-slider {
    flex: 1;
    overflow: hidden;
    display: flex;
    width: 100%;
    position: relative;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.reviews-slide {
    min-width: 100%;
    flex-shrink: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.reviews-nav-btn {
    background: none;
    border: none;
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-nav-btn:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.reviews-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.reviews-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.review-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(210, 154, 5, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.review-indicator:hover {
    background: var(--secondary-color);
}

.reviews-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.google-review-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    width: 100%;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.google-logo {
    margin-right: 1rem;
}

.review-info h4 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

.rating-text {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.review-content {
    margin-bottom: 1.5rem;
}

.review-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    font-style: italic;
    margin-bottom: 1rem;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
}

.review-date {
    color: #9ca3af;
    font-size: 0.9rem;
}


.btn-review {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #4285f4;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-review:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.btn-review:last-child {
    background: #fbbf24;
    color: #1f2937;
}

.btn-review:last-child:hover {
    background: #f59e0b;
}

/* Statistiques des avis */
.reviews-stats {
    margin: 2rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(210, 154, 5, 0.15), rgba(210, 154, 5, 0.08));
    border-radius: 20px;
    border: 3px solid rgba(210, 154, 5, 0.3);
    text-align: center;
}

.stats-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;
}

.stats-rating,
.stats-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stats-stars {
    font-size: 3rem;
    color: #fbbf24;
    letter-spacing: 3px;
}

.stats-average {
    font-size: 2rem;
    font-weight: 700;
    color: #d29a05;
    background: linear-gradient(135deg, #d29a05, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(210, 154, 5, 0.3);
}

.stats-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d29a05, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-label {
    font-size: 1.2rem;
    color: #1f2937;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .stats-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .reviews-stats {
        padding: 1.5rem;
    }
}

/* Responsive pour les modals */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .modal .btn {
        width: 100%;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
}

@media (max-width: 768px) {
    .google-reviews {
        padding: 3rem 0;
    }
    
    .reviews-header h2 {
        font-size: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .reviews-container {
        gap: 0.5rem;
        flex-direction: column;
    }
    
    .reviews-nav-btn {
        align-self: center;
    }
    
    .google-review-card {
        padding: 1.5rem;
    }
    
    .reviews-nav-btn {
        font-size: 1.2rem;
        min-width: 35px;
        height: 35px;
    }
    
    .reviews-actions {
        flex-direction: column;
    }
    
    .btn-review {
        justify-content: center;
    }
    
    /* Galerie mobile - optimisée pour mobile */
    .gallery {
        padding: 2rem 0;
    }
    
    .gallery .container {
        padding: 1.5rem;
    }
    
    .dishes-gallery {
        width: 100%;
        max-width: 100%;
        margin: 1.5rem 0;
        padding: 0;
        position: relative;
    }
    
    .gallery-container {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        gap: 0;
        padding: 0;
        justify-content: center;
    }
    
    .gallery-viewport {
        flex: 1;
        overflow: hidden;
        width: 100%;
        margin: 0;
        border-radius: 15px;
        position: relative;
    }
    
    .dish-item {
        flex: 0 0 100%;
        height: 280px;
        width: 100%;
        position: relative;
    }
    
    .dish-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .gallery-container .gallery-nav {
        position: absolute;
        background: rgba(210, 154, 5, 0.9);
        color: white;
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        font-size: 1.1rem;
        z-index: 20;
        font-weight: bold;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .gallery-container .gallery-nav.prev-btn {
        left: 10px;
    }
    
    .gallery-container .gallery-nav.next-btn {
        right: 10px;
    }
    
    .gallery-container .gallery-nav:hover {
        background: rgba(210, 154, 5, 1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
        transform: translateY(-50%) scale(1.1);
    }
    
    .gallery-container .gallery-nav:active {
        transform: translateY(-50%) scale(0.95);
    }
    
    .gallery-menu-button {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-menu-button .btn-wrapper {
        align-items: center;
        width: 100%;
    }
    
    .gallery-menu-button p {
        text-align: center;
        margin-top: 1rem;
    }
}

/* ========================= SECTION MENU MIDI ========================= */
.menumidi {
    padding: 2cm 0;
    background: #000;
    border-top: none;
    border-bottom: none;
}

.menumidi .container {
    padding: 0;
    max-width: 100%;
    margin: 0;
}

.menumidi {
    margin-top: 2cm;
}

.menu-midi-gallery {
    position: relative;
    width: 100%;
    min-height: 300px;
    background: #000;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.menu-midi-slides {
    position: relative;
    width: 100%;
}

.menu-midi-slide {
    position: relative;
    width: 100%;
    display: none;
}

.menu-midi-slide.active {
    display: block;
}

.menu-midi-content {
    width: 100%;
    margin: 0;
}

.menu-midi-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* Marges sur les côtés en desktop uniquement */
@media (min-width: 769px) {
    .menumidi .container {
        padding: 0 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .menu-midi-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .menu-midi-image {
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
}

/* Mobile : pas de marges latérales mais padding vertical réduit */
@media (max-width: 768px) {
    .menumidi {
        padding: 0.5rem 0;
        margin-top: 0;
    }
    
    .menumidi .container {
        padding: 0;
        max-width: 100%;
    }
    
    .menu-midi-image {
        border-radius: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
}

/* Navigation chevrons pour menu offre */
.menu-midi-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.2s ease;
    outline: none;
    z-index: 100;
}

.menu-midi-nav.menu-midi-prev {
    left: 1rem;
}

.menu-midi-nav.menu-midi-next {
    right: 1rem;
}

.menu-midi-nav i {
    font-size: 1.75rem;
    color: #000000;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 1), 0 1px 4px rgba(255, 255, 255, 0.9), 0 0 2px rgba(255, 255, 255, 0.8);
}

.menu-midi-nav:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.menu-midi-nav:active i {
    opacity: 0.7;
    transform: scale(0.95);
}

/* Style pour les indicateurs */
.menu-midi-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
    margin-top: 1.5rem;
    padding: 0.75rem;
    z-index: 50;
}

.menu-midi-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(210, 154, 5, 0.3);
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    box-shadow: 0 1px 3px rgba(210, 154, 5, 0.2);
}

.menu-midi-indicator.active {
    background: #d29a05;
    border-color: #d29a05;
    transform: scale(1.3);
    box-shadow: 0 2px 6px rgba(210, 154, 5, 0.4);
}

.menu-midi-indicator:hover {
    background: rgba(210, 154, 5, 0.6);
    border-color: rgba(210, 154, 5, 0.7);
    transform: scale(1.15);
}

/* Mobile : chevrons plus petits et à droite */
@media (max-width: 768px) {
    .menu-midi-nav {
        padding: 0.75rem 0.5rem;
    }
    
    .menu-midi-nav.menu-midi-prev {
        left: 0.5rem;
    }
    
    .menu-midi-nav.menu-midi-next {
        right: 0.5rem;
    }
    
    .menu-midi-nav i {
        font-size: 1.5rem;
        opacity: 0.95;
    }
    
    .menu-midi-indicators {
        margin-top: 1rem;
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .menu-midi-indicator {
        width: 10px;
        height: 10px;
        border-width: 1.5px;
    }
    
    .menu-midi-indicator.active {
        transform: scale(1.25);
    }
}

/* Menu Page Styles */
.menu-page {
    padding: 3rem 0;
}

.menu-image {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.menu-image img {
    width: 100%;
    height: auto;
    max-width: 1200px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: block;
}

/* Mobile : image pleine largeur */
@media (max-width: 768px) {
    .menu-image {
        padding: 0;
    }
    
    .menu-image img {
        width: 100vw;
        border-radius: 0;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
}

.menu-category-title {
    margin-bottom: 2rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(210, 154, 5, 0.12));
    border-radius: 20px;
    position: relative;
    border: 2px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 25px rgba(210, 154, 5, 0.15);
    text-align: center;
    transition: all 0.3s ease;
}

.menu-category-title:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(210, 154, 5, 0.25);
    border-color: rgba(255, 215, 0, 0.3);
}

/* Menu category styles */
.menu-category-title h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(210, 154, 5, 0.1);
    letter-spacing: 1px;
}

.menu-category-title p {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.menu-category-title hr {
    border: none;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 2rem auto;
    width: 100px;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(210, 154, 5, 0.2);
}

.menu-item h5 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.menu-item.unavailable {
    opacity: 0.5;
}

.menu-item.unavailable .menu-item-info h5,
.menu-item.unavailable .menu-item-info p {
    color: #999;
}

.menu-item.unavailable .menu-item-price {
    color: #e74c3c;
    font-weight: 600;
}

/* Badge NOUVEAU */
.new-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-color);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 8px;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

/* Badge à emporter */
.takeaway-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #10b981;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-left: 8px;
    cursor: help;
    transition: all 0.3s ease;
}

.takeaway-badge:hover {
    background: #059669;
    transform: scale(1.1);
}

.takeaway-badge svg {
    width: 12px;
    height: 12px;
}

/* Notes du menu */
.menu-note {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.menu-note p {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

/* Sous-titres dans les sections de boissons */
.menu-section h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    padding: 0.5rem 0;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    text-align: center;
}

/* About Page Styles */
.about-story {
    padding: 6rem 0;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

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

.value-item h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.team-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(210, 154, 5, 0.2);
}


.team-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}


.team-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.commitment-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.commitment-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact Page Styles - Nouvelle structure en grille */
.contact-page {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(210, 154, 5, 0.05), rgba(124, 42, 0, 0.05));
}

/* Grille principale en 2 colonnes (1/3 + 2/3) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Styles pour tous les blocs */
.contact-block {
    background: transparent;
    border-radius: 16px;
    box-shadow: none;
    overflow: hidden;
    transition: border-color 0.2s ease, background 0.2s ease;
    border: 1px solid rgba(210, 154, 5, 0.15);
    backdrop-filter: none;
}

.contact-block:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(210, 154, 5, 0.25);
}

/* En-tête des blocs */
.block-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.block-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.block-header i {
    font-size: 1.2rem;
}

/* Contenu des blocs */
.block-content {
    padding: 2rem;
}

/* Bloc Informations & Réseaux fusionné */
.info-social-block {
    display: flex;
    flex-direction: column;
}

.info-section,
.social-section {
    margin-bottom: 2rem;
}

.info-section:last-child,
.social-section:last-child {
    margin-bottom: 0;
}

.info-section h4,
.social-section h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid rgba(210, 154, 5, 0.2);
    padding-bottom: 0.5rem;
}

.info-section h4 i,
.social-section h4 i {
    font-size: 1rem;
}

.info-social-block .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding: 0.2rem 0.8rem;
    background: transparent;
    border-radius: 10px;
}

.info-social-block .contact-item:hover {
    background: transparent;
    transform: none;
}

.info-social-block .contact-item i {
    font-size: 1.1rem;
    color: var(--primary-color);
    width: 1.2rem;
    text-align: center;
    margin-top: 0.1rem;
}

.info-social-block .contact-item h5 {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.info-social-block .contact-item p {
    color: #ffffff;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.3;
}

/* Bloc Réseaux sociaux */
.info-social-block .social-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.social-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(210, 154, 5, 0.2);
}

.social-card:hover .social-icon {
    transform: scale(1.2);
}

/* removed: facebook card not used */

.instagram-card {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.1), rgba(228, 64, 95, 0.05));
    border-color: rgba(228, 64, 95, 0.2);
}

.instagram-card:hover {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.2), rgba(228, 64, 95, 0.15));
    border-color: rgba(228, 64, 95, 0.5);
}

.instagram-card:hover .social-icon {
    filter: drop-shadow(0 0 8px rgba(228, 64, 95, 0.6));
}

/* removed: tripadvisor card not used */

/* ========================= RÉSEAUX SOCIAUX PAGE CONTACT ========================= */
.social-grid-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-card-contact {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: #000;
    border: 2px solid rgba(255, 224, 101, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: none;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(255, 224, 101, 0.08);
}

.social-card-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 224, 101, 0.15), transparent);
    transition: left 0.5s ease;
}

.social-card-contact:hover::before {
    left: 100%;
}

.social-card-contact:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 224, 101, 0.5);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(255, 224, 101, 0.25),
        0 0 40px rgba(223, 80, 25, 0.15);
}

.instagram-card-contact:hover {
    border-color: rgba(225, 48, 108, 0.6);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(225, 48, 108, 0.3),
        0 0 40px rgba(225, 48, 108, 0.2);
}

.tiktok-card-contact:hover {
    border-color: rgba(0, 242, 234, 0.6);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(0, 242, 234, 0.3),
        0 0 40px rgba(255, 0, 80, 0.2);
}

.social-icon-wrapper-contact {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 224, 101, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(255, 224, 101, 0.25);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-card-contact:hover .social-icon-wrapper-contact {
    background: rgba(255, 224, 101, 0.2);
    border-color: rgba(255, 224, 101, 0.5);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 18px rgba(255, 224, 101, 0.4);
}

.instagram-card-contact:hover .social-icon-wrapper-contact {
    background: rgba(225, 48, 108, 0.2);
    border-color: rgba(225, 48, 108, 0.5);
    box-shadow: 0 0 18px rgba(225, 48, 108, 0.4);
}

.tiktok-card-contact:hover .social-icon-wrapper-contact {
    background: rgba(0, 242, 234, 0.2);
    border-color: rgba(0, 242, 234, 0.5);
    box-shadow: 0 0 18px rgba(0, 242, 234, 0.4);
}

.social-icon-contact {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}

.instagram-icon-contact {
    fill: #ffe065;
    filter: drop-shadow(0 0 6px rgba(255, 224, 101, 0.5));
}

.instagram-card-contact:hover .instagram-icon-contact {
    fill: #E1306C;
    filter: drop-shadow(0 0 10px rgba(225, 48, 108, 0.8));
}

.tiktok-icon-contact {
    filter: drop-shadow(0 0 6px rgba(255, 224, 101, 0.5));
}

.tiktok-card-contact:hover .tiktok-icon-contact {
    filter: drop-shadow(0 0 10px rgba(0, 242, 234, 0.8)) drop-shadow(0 0 6px rgba(255, 0, 80, 0.6));
    transform: scale(1.1);
}

.social-text-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    flex: 1;
}

.social-platform-contact {
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffe065;
    text-shadow: 
        0 0 8px rgba(255, 224, 101, 0.5),
        0 0 15px rgba(255, 224, 101, 0.3);
    transition: all 0.3s ease;
}

.instagram-card-contact:hover .social-platform-contact {
    color: #E1306C;
    text-shadow: 
        0 0 8px rgba(225, 48, 108, 0.7),
        0 0 15px rgba(225, 48, 108, 0.5);
}

.tiktok-card-contact:hover .social-platform-contact {
    color: #00F2EA;
    text-shadow: 
        0 0 8px rgba(0, 242, 234, 0.7),
        0 0 15px rgba(0, 242, 234, 0.5);
}

.social-handle-contact {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
}

.social-card-contact:hover .social-handle-contact {
    color: rgba(255, 255, 255, 0.95);
}

.social-arrow-contact {
    font-size: 1.4rem;
    color: rgba(255, 224, 101, 0.5);
    transition: all 0.3s ease;
    font-weight: bold;
    flex-shrink: 0;
}

.social-card-contact:hover .social-arrow-contact {
    color: #ffe065;
    transform: translateX(4px);
    text-shadow: 0 0 8px rgba(255, 224, 101, 0.7);
}

.instagram-card-contact:hover .social-arrow-contact {
    color: #E1306C;
    text-shadow: 0 0 8px rgba(225, 48, 108, 0.7);
}

.tiktok-card-contact:hover .social-arrow-contact {
    color: #00F2EA;
    text-shadow: 0 0 8px rgba(0, 242, 234, 0.7);
}

/* Responsive pour les réseaux sociaux sur la page contact */
@media (max-width: 768px) {
    .social-card-contact {
        padding: 1rem 1.25rem;
        gap: 1rem;
    }
    
    .social-icon-wrapper-contact {
        width: 50px;
        height: 50px;
    }
    
    .social-icon-contact {
        width: 28px;
        height: 28px;
    }
    
    .social-platform-contact {
        font-size: 1.15rem;
    }
    
    .social-handle-contact {
        font-size: 0.85rem;
    }
    
    .social-arrow-contact {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .social-card-contact {
        padding: 0.9rem 1rem;
        gap: 0.75rem;
    }
    
    .social-icon-wrapper-contact {
        width: 45px;
        height: 45px;
    }
    
    .social-icon-contact {
        width: 24px;
        height: 24px;
    }
    
    .social-platform-contact {
        font-size: 1.05rem;
    }
}

.tiktok-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
    border-color: rgba(0, 0, 0, 0.2);
}
/* Contact page — champs du formulaire (dark, sobre) */
.contact-page .form-group label {
    color: #ffffff;
}

.contact-page .form-group input,
.contact-page .form-group select,
.contact-page .form-group textarea {
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    border: 1px solid rgba(210, 154, 5, 0.2);
}

.contact-page .form-group input::placeholder,
.contact-page .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-page .form-group input:focus,
.contact-page .form-group select:focus,
.contact-page .form-group textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(210, 154, 5, 0.15);
}

.tiktok-card:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.15));
    border-color: rgba(0, 0, 0, 0.5);
}

.tiktok-card:hover .social-icon {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.social-card .social-icon {
    width: 64px;
    height: 64px;
    transition: transform 0.3s ease;
}

/* removed: facebook card icon not used */

.instagram-card .social-icon {
    color: #E4405F;
}

/* removed: tripadvisor icon not used */

.social-card span {
    font-weight: 500;
    color: #ffffff;
    font-size: 0.85rem;
}

/* Bloc Formulaire */
.form-block {
    position: relative;
}

.form-block::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: url('assets/images/logos/logo-baniere.png') no-repeat center;
    background-size: contain;
    opacity: 0.08;
    transform: rotate(15deg);
    z-index: 0;
}

.form-block .block-content {
    position: relative;
    z-index: 1;
}

.form-block .form-group {
    margin-bottom: 1.2rem;
}

.form-block .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-block label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.9rem;
}

.form-block input,
.form-block select,
.form-block textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: rgba(24, 24, 24, 0.85);
    color: #ffffff;
}

.form-block input:focus,
.form-block select:focus,
.form-block textarea:focus {
    outline: none;
    border-color: rgba(64, 64, 64, 0.8);
    box-shadow: 0 0 0 2px rgba(64, 64, 64, 0.4);
    background: rgba(32, 32, 32, 0.92);
    color: #ffffff;
}

.form-block textarea {
    resize: vertical;
    min-height: 100px;
}

.form-block .btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 8px;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.form-block .btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(210, 154, 5, 0.3);
}


/* Responsive Contact */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
}

@media (max-width: 768px) {
    .contact-page {
        padding: 2rem 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .block-header {
        padding: 1rem;
    }
    
    .block-header h3 {
        font-size: 1.2rem;
    }
    
    .block-content {
        padding: 1.5rem 1rem;
    }
    
    .form-block .form-row {
        grid-template-columns: 1fr;
    }
    
    .info-section {
        margin-bottom: 1.5rem;
    }
    
    .social-section {
        margin-top: 1.5rem;
    }
    
    .social-grid {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-card {
        margin: 0.25rem;
    }
    
}

.contact-items {
    margin-bottom: 3rem;
}

.social-section {
    margin-top: 3rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--primary-color);
}

.map-container {
    margin-top: 3rem;
}

.map-placeholder {
    background: var(--white);
    padding: 4rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

/* Reservation Page Styles */
.reservation-form-section {
    padding: 6rem 0;
}

.reservation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.info-cards {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.reservation-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Décalage spécifique pour le bouton "Commander en ligne" */
.hero-actions .btn:first-child {
    margin-left: -5mm;
}

.reservation-info-section {
    padding: 6rem 0;
    background: var(--light-color);
}

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

.info-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.info-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-item h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.reservation-cta {
    padding: 6rem 0;
    background: var(--dark-color);
    color: var(--white);
    text-align: center;
}

.reservation-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.reservation-cta p {
    color: #d1d5db;
    margin-bottom: 2rem;
}

/* Menu CTA */
.menu-cta {
    padding: 6rem 0;
    background: var(--dark-color);
    color: var(--white);
    text-align: center;
}

.menu-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.menu-cta p {
    color: #d1d5db;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Navigation active state */
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    width: 100%;
}

/* Logo link */
.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}



.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

/* Contact Page Additional Styles */
.contact-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.form-note {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-style: italic;
}

.hours-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.hours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.hours-info,
.takeaway-info {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.hours-info h3,
.takeaway-info h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.hours-info h5,
.takeaway-info h5 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.takeaway-info h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.takeaway-info p {
    color: var(--text-color);
    margin-bottom: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Legal Page Styles */
.legal-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-item {
    background: var(--white);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.legal-item h2 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.legal-item p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-item a:hover {
    text-decoration: underline;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ======= SECTIONS - REPÈRES CSS ======= */

/* === HERO - Accueil === */
/* repère: section d'accroche principal */

/* === Séparateur doré sous chaque titre de section === */
.section-header hr {
    border: none;
    border-top: 4px solid var(--primary-color);
    opacity: 0.7;
    width: 70px;
    margin: 2rem auto 2rem auto;
    border-radius: 3px;
}

/* === Boutons principaux dorés - Hover / active === */
.btn, .btn-primary, .btn-secondary {
    /* repère: styles génériques boutons principaux */
    /* ... autres styles ... */
    border-radius: 25px; /* bien arrondi ! */
}
.btn-primary:hover, .btn-secondary:hover, .btn:hover {
    background: var(--gradient-bordeaux);
    color: var(--white);
    box-shadow: var(--shadow-bordeaux);
    transform: translateY(-4px) scale(1.04);
}

/* === Inputs/formulaires stylisés === */
.form-group input, .form-group select, .form-group textarea {
    border-radius: 14px;
    border: none;
    box-shadow: var(--shadow-gold);
    /* repère: Formulaires arrondis dorés */
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-bordeaux);
}

/* === Cards / blocs arrondis === */
.menu-item, .testimonial, .gallery-item, .about-image img {
    border-radius: 20px !important;
    box-shadow: var(--shadow-gold);
}

/* === Messages de statut pour formulaire === */
.status-message {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    font-weight: 500;
    text-align: center;
    animation: slideIn 0.3s ease-out;
}

.status-message.success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border: 2px solid #c3e6cb;
}

.status-message.error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border: 2px solid #f5c6cb;
}

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



.menu-item:hover, .testimonial:hover, .gallery-item:hover {
    box-shadow: var(--shadow-bordeaux);
    background: rgba(210, 154, 5, 0.04);
    transform: translateY(-2px);
}

/* === Footer - liseré doré top === */
.footer {
    border-top: 3px solid var(--primary-color);
    /* ... autres styles ... */
}
/* === FIN Theme repéré === */


/* ========================= GALERIE DES PLATS AVEC NAVIGATION ========================= */

.dishes-gallery {
    margin: 2rem 0;
    background: linear-gradient(135deg, rgba(210, 154, 5, 0.05), rgba(210, 154, 5, 0.02));
    border-radius: 20px;
    padding: 2rem;
}

.gallery-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gallery-viewport {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 1.5rem;
}

.dish-item {
    flex: 0 0 300px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(210, 154, 5, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.dish-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(210, 154, 5, 0.3);
}

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

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

.gallery-nav {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(210, 154, 5, 0.3);
    font-size: 1.2rem;
}

.gallery-nav:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(210, 154, 5, 0.4);
}

.gallery-nav:active {
    transform: scale(0.95);
}

.gallery-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.gallery-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(210, 154, 5, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.gallery-indicator:hover {
    background: var(--secondary-color);
}

.gallery-menu-button {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(210, 154, 5, 0.1);
}

.gallery-menu-button p {
    margin-top: 1rem;
    font-style: italic;
    color: var(--text-color);
    font-size: 0.95rem;
    opacity: 0.8;
    text-align: right;
}

.delivery-info {
    margin-top: 0.5rem !important;
    font-size: 1.1rem !important;
    color: var(--text-color) !important;
    font-weight: 600 !important;
}

.gallery-menu-button .btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    width: 100%;
}

/* ========================= SECTION ENVIRONNEMENT ========================= */

.environment-section {
    padding: 4rem 0;
    background: #f0f0f0;
}

.environment-section .container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.environment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.environment-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(210, 154, 5, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 300px;
}

.environment-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(210, 154, 5, 0.25);
}

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

.environment-item:hover img {
    transform: scale(1.05);
}

.environment-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.environment-item:hover .environment-overlay {
    transform: translateY(0);
}

.environment-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.environment-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive Environment Section */
@media (max-width: 768px) {
    .environment-section {
        padding: 2rem 0;
    }
    
    .environment-section .container {
        padding: 1.5rem;
        margin: 0 1rem;
        width: calc(100% - 2rem);
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .environment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .environment-item {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .environment-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
    }
}

/* ========================= SECTION ÉQUIPE ========================= */

.team-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(210, 154, 5, 0.05), rgba(210, 154, 5, 0.02));
}

/* ========================= MODALS GENERAUX ========================= */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    color: var(--dark-color);
}

.modal-close {
    font-size: 2rem;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.3s ease;
    background: none;
    border: none;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

/* Boutons spécifiques aux modals */
.modal .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.modal .btn-primary {
    background: #1f2937;
    color: var(--white);
}

.modal .btn-primary:hover {
    background: #374151;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.modal .btn-secondary {
    background: #6b7280;
    color: var(--white);
}

.modal .btn-secondary:hover {
    background: #4b5563;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* ========================= MODAL DE CONNEXION ADMIN ========================= */
.login-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.login-modal-content {
    background: linear-gradient(135deg, var(--white), var(--gray-light));
    margin: 5% auto;
    padding: 3rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideDown 0.3s ease;
}

.login-modal-content h2 {
    color: var(--dark-color);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.login-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--gray-medium);
    cursor: pointer;
    transition: var(--transition);
}

.login-modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.login-error {
    background: #fee;
    color: #c33;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    display: none;
    border-left: 4px solid #c33;
}

.login-success {
    display: none;
}

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

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

/* Responsive Modal */
@media (max-width: 768px) {
    .login-modal-content {
        width: 95%;
        padding: 2rem;
        margin: 10% auto;
    }

    .login-modal-content h2 {
        font-size: 1.5rem;
    }

    .login-modal-close {
        font-size: 1.5rem;
        right: 15px;
        top: 15px;
    }
}

/* ========================= POPUP SYSTEM ========================= */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.popup-container {
    background: transparent;
    border-radius: 12px;
    box-shadow: none;
    position: relative;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
}

.popup-show {
    transform: scale(1);
    opacity: 1;
}

.popup-hide {
    transform: scale(0.8);
    opacity: 0;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    z-index: 10001;
    transition: all 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.popup-close:hover {
    background: rgba(255, 255, 255, 1);
    color: #e74c3c;
    transform: scale(1.1);
}

.popup-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: center;
}

.popup-image {
    text-align: center;
    width: 100%;
}

.popup-image img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.popup-text {
    text-align: center;
}

.popup-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.popup-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.popup-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.popup-button {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.popup-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Tailles de popup */
.popup-small {
    width: 300px;
}

.popup-medium {
    width: 500px;
}

.popup-large {
    width: 700px;
}

.popup-fullscreen {
    width: 95vw;
    height: 95vh;
}

.popup-fullscreen .popup-content {
    height: 100%;
    justify-content: center;
}

/* Positions de popup */
.popup-center {
    align-self: center;
}

.popup-top {
    align-self: flex-start;
    margin-top: 2rem;
}

.popup-bottom {
    align-self: flex-end;
    margin-bottom: 2rem;
}

.popup-left {
    align-self: center;
    margin-left: 2rem;
}

.popup-right {
    align-self: center;
    margin-right: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .popup-container {
        margin: 1rem;
        max-width: calc(100vw - 2rem);
    }
    
    .popup-small,
    .popup-medium,
    .popup-large {
        width: 100%;
    }
    
    .popup-content {
        padding: 1.5rem;
    }
    
    .popup-title {
        font-size: 1.25rem;
    }
    
    .popup-left,
    .popup-right {
        margin-left: 0;
        margin-right: 0;
    }
}

/* ========================= IMAGE UPLOAD SYSTEM ========================= */
.image-upload-container {
    margin: 1rem 0;
}

.image-upload-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.image-upload-label:hover {
    border-color: var(--primary-color);
    background: #f0f9ff;
}

.upload-icon {
    font-size: 2rem;
    color: #6b7280;
}

.upload-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.upload-title {
    font-weight: 600;
    color: #374151;
}

.upload-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
}

.image-preview {
    position: relative;
    margin-top: 1rem;
}

.preview-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.remove-image-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.remove-image-btn:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.upload-progress {
    margin-top: 1rem;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    animation: progressAnimation 2s ease-in-out infinite;
}

@keyframes progressAnimation {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ========================= POPUP MANAGEMENT ========================= */
.popup-form-group {
    margin-bottom: 1.5rem;
}

.popup-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.popup-form-group input,
.popup-form-group select,
.popup-form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.popup-form-group input:focus,
.popup-form-group select:focus,
.popup-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.popup-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.popup-form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.popup-form-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.popup-size-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.popup-size-option {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.popup-size-option:hover {
    border-color: var(--primary-color);
    background: #f0f9ff;
}

.popup-size-option.selected {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.popup-page-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.popup-page-option {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.popup-page-option:hover {
    border-color: var(--primary-color);
    background: #f0f9ff;
}

.popup-page-option.selected {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

/* ========================= PAGE ADMIN ========================= */
.admin-page {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(226, 232, 240, 0.9) 100%), 
                url('assets/docs/fondadmin.webp') center/cover no-repeat;
    padding: 2rem 0;
    position: relative;
}

.admin-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/docs/fondadmin.webp') center/cover no-repeat;
    opacity: 0.1;
    z-index: -1;
}

/* ========================= ONGLETS ADMIN ========================= */
.admin-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.admin-tab {
    padding: 3rem 2rem;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 600;
    color: #4b5563;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    width: 100%;
    box-sizing: border-box;
    flex: 1;
}

.admin-tab:hover {
    color: #2563eb;
    border-color: #2563eb;
    background: rgba(37, 99, 235, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.admin-tab.active {
    color: #2563eb;
    border-color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.admin-tab i {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.admin-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.admin-content.active {
    display: block;
}

/* Styles spécifiques pour le contenu des statistiques */
#stats-content {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.stats-container {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Forcer les tableaux et graphiques à rester dans les limites */
.stats-table-container {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    box-sizing: border-box;
}

.stats-table {
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
    box-sizing: border-box;
}

.stats-charts {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.chart-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.chart-container canvas {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box;
}

/* ========================= GESTION DU MENU PAR CATÉGORIES ========================= */
.menu-management {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.menu-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.category-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.category-card:hover {
    border-color: var(--primary-color);
    background: rgba(210, 154, 5, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(210, 154, 5, 0.15);
}

.category-card.active {
    border-color: var(--primary-color);
    background: rgba(210, 154, 5, 0.1);
    box-shadow: 0 4px 12px rgba(210, 154, 5, 0.25);
}

.category-card h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

.category-card .category-count {
    font-size: 0.9rem;
    color: #6b7280;
    background: #f3f4f6;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-top: 0.5rem;
}

.category-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.menu-content-area {
    position: relative;
}

.category-view {
    animation: fadeIn 0.3s ease;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.btn-back {
    background: #6b7280;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-back:hover {
    background: #4b5563;
    transform: translateY(-1px);
}

.category-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.all-categories-view {
    animation: fadeIn 0.3s ease;
}

/* Responsive pour les catégories */
@media (max-width: 768px) {
    .menu-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .category-card {
        padding: 1rem;
        min-height: 100px;
    }
    
    .category-card h4 {
        font-size: 1rem;
    }
    
    .category-card i {
        font-size: 1.5rem;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .btn-back {
        width: 100%;
        justify-content: center;
    }
}

/* Responsive tabs */
@media (max-width: 768px) {
    .admin-tabs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .admin-tab {
        padding: 2rem 1.5rem;
        min-height: 120px;
        font-size: 1.1rem;
    }
    
    .admin-tab i {
        font-size: 2rem;
    }
}

/* ========================= OPTIONS DE POPUP INTERACTIVES ========================= */
.popup-size-options,
.popup-page-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.popup-size-option,
.popup-page-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    text-align: center;
}

.popup-size-option:hover,
.popup-page-option:hover {
    border-color: var(--primary-color);
    background: rgba(210, 154, 5, 0.05);
    transform: translateY(-2px);
}

.popup-size-option.selected,
.popup-page-option.selected {
    border-color: var(--primary-color);
    background: rgba(210, 154, 5, 0.1);
    box-shadow: 0 4px 12px rgba(210, 154, 5, 0.2);
}

.popup-size-option i,
.popup-page-option i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.popup-size-option div,
.popup-page-option div {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}

.popup-form-group {
    margin-bottom: 1.5rem;
}

.popup-form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.popup-form-checkbox:hover {
    border-color: var(--primary-color);
    background: rgba(210, 154, 5, 0.05);
}

.popup-form-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.3);
}

.popup-form-checkbox label {
    margin: 0;
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-color);
    flex: 1;
}

/* ========================= STYLES POUR LES MESSAGES DE CONTACT ========================= */

.messages-filters {
    margin-bottom: 1.5rem;
}

.btn-filter {
    padding: 0.75rem 1.5rem;
    border: none;
    background: rgba(243, 244, 246, 0.8);
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #6b7280;
}

.btn-filter:hover {
    background: rgba(229, 231, 235, 0.9);
    color: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-filter.active {
    background: rgba(31, 41, 55, 0.95);
    color: white;
    box-shadow: 0 2px 4px rgba(31, 41, 55, 0.2);
}

.message-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.message-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.message-card.unread {
    border-left: 4px solid #ef4444;
    background: #fef2f2;
}

.message-card.read {
    border-left: 4px solid #10b981;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.message-meta h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.message-date {
    font-size: 0.875rem;
    color: #6b7280;
}

.message-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-reply,
.btn-mark-read,
.btn-mark-unread {
    padding: 0.5rem 1rem;
    border: none;
    background: rgba(243, 244, 246, 0.8);
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    transition: all 0.3s ease;
}

.btn-reply:hover {
    background: rgba(31, 41, 55, 0.95);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 41, 55, 0.3);
}

.btn-mark-read:hover,
.btn-mark-unread:hover {
    background: rgba(229, 231, 235, 0.9);
    color: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.message-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message-info {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 8px;
}

.message-info p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.message-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.message-info a:hover {
    text-decoration: underline;
}

.message-content {
    padding: 1rem;
}

.message-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.message-content p {
    line-height: 1.6;
    color: #374151;
    white-space: pre-wrap;
}

/* ========================= ACTUALITÉS SECTION ========================= */
.actualites-section {
    padding: calc(120px + 2rem) 0 4rem;
    background:
        var(--gradient-radial-orange),
        var(--gradient-radial-gold),
        #000;
    background-size: 140% 140%, 140% 140%, 100%;
    background-position: center;
    margin-bottom: 0;
}

.actualites-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-fluid);
}

.actualites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(1.5rem, 4vw, 2.5rem);
    margin-top: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0;
    padding-bottom: 0;
}

.actualite-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: visible !important;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e5e7eb;
}

.actualite-card:hover {
    transform: translateY(-3px) !important;
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.actualite-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f9fafb;
    padding: 1rem;
    min-height: auto;
    aspect-ratio: auto;
}

.actualite-image a {
    width: 100%;
    display: block;
    text-align: center;
}

.actualite-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.actualite-content {
    padding: 2rem;
}

.actualite-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.actualite-date {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-medium);
    margin-bottom: 0.75rem;
    text-transform: capitalize;
}

.actualite-titre {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.actualite-titre a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.actualite-titre a:hover {
    color: var(--primary-color);
}

.actualite-resume {
    color: var(--gray-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-read-more:hover {
    gap: 1rem;
    color: var(--secondary-color);
}

.actualite-detail-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.actualite-medias {
    margin: 3rem 0;
}

.media-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.media-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.actualite-detail-article {
    max-width: 900px;
    margin: 0 auto;
}

.actualite-detail-header {
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.actualite-detail-titre {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.actualite-date-simple {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-medium);
    font-style: italic;
    text-transform: capitalize;
}

.actualite-detail-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.actualite-detail-image {
    width: 100%;
    max-width: 100%;
    max-height: 70vh;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    display: block;
}

.actualite-detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.actualite-detail-content h1,
.actualite-detail-content h2,
.actualite-detail-content h3 {
    font-family: 'Playfair Display', serif;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.actualite-detail-content p {
    margin-bottom: 1.5rem;
}

.actualite-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
}

.actualite-detail-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.actualite-detail-content a:hover {
    color: var(--secondary-color);
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--gray-medium);
    margin: 0 0.5rem;
}

.no-actualites {
    text-align: center;
    padding: 3rem;
    color: var(--gray-medium);
    font-size: 1.1rem;
}

.error-message {
    text-align: center;
    padding: 2rem;
    color: #ef4444;
    background: #fee2e2;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

/* Admin Editor Styles */
#actualites-editor {
    min-height: 400px;
    background: white;
    border-radius: var(--border-radius);
}

.ql-container {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.ql-editor {
    min-height: 400px;
}

.actualites-admin-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.actualite-admin-item {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.actualite-admin-item:hover {
    border-color: var(--primary-color);
}

.actualite-admin-info {
    flex: 1;
}

.actualite-admin-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.actualite-admin-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.actualite-admin-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.actualite-admin-status.published {
    background: #d1fae5;
    color: #065f46;
}

.actualite-admin-status.draft {
    background: #fee2e2;
    color: #991b1b;
}

.actualite-admin-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-edit-actualite,
.btn-delete-actualite {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-edit-actualite {
    background: var(--primary-color);
    color: white;
}

.btn-edit-actualite:hover {
    background: var(--secondary-color);
}

.btn-delete-actualite {
    background: #ef4444;
    color: white;
}

.btn-delete-actualite:hover {
    background: #dc2626;
}

/* Responsive */
@media (max-width: 992px) {
    .actualites-grid {
        grid-template-columns: 1fr;
    }
    
    .actualite-admin-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .actualite-admin-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

/* ==========================
   Animations spécifiques – Page Menu
   ========================== */
@keyframes tilt-in {
    0% { transform: perspective(600px) rotateX(6deg) translateY(12px); opacity: 0; }
    100% { transform: perspective(600px) rotateX(0deg) translateY(0); opacity: 1; }
}

@keyframes spice-wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(1deg); }
    50% { transform: rotate(-1deg); }
    75% { transform: rotate(0.5deg); }
}

.menu-page {
    position: relative;
    padding: var(--spacing-section) 0;
}

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

.menu-category {
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    border: none;
    background: rgba(24,24,24,0.6);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.menu-category:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-gold);
}

.menu-category.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: var(--shadow-glow-orange);
}

.menu-category.active::after {
    content: '';
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
    animation: gradient-shift 2s linear infinite;
}

/* Apparition progressive des items */
.menu-section .menu-item { 
    animation: fade-in-up .6s ease both; 
}

.menu-section .menu-item:nth-child(1) { animation-delay: .04s; }
.menu-section .menu-item:nth-child(2) { animation-delay: .08s; }
.menu-section .menu-item:nth-child(3) { animation-delay: .12s; }
.menu-section .menu-item:nth-child(4) { animation-delay: .16s; }
.menu-section .menu-item:nth-child(5) { animation-delay: .2s; }
.menu-section .menu-item:nth-child(6) { animation-delay: .24s; }
.menu-section .menu-item:nth-child(7) { animation-delay: .28s; }
.menu-section .menu-item:nth-child(8) { animation-delay: .32s; }
.menu-section .menu-item:nth-child(9) { animation-delay: .36s; }

/* Style des items */
.menu-item {
    background: rgba(24,24,24,0.75);
    border: 1px solid rgba(210,157,0,0.2);
    border-radius: var(--border-radius-md);
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-smooth);
    position: relative;
}

.menu-item:hover {
    transform: translateY(-4px);
    border-color: rgba(210,157,0,0.5);
    box-shadow: var(--shadow-glow-gold);
}

.menu-item-price {
    font-weight: 800;
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(210,157,0,.35);
}

.menu-category-title h3 {
    font-family: var(--display-font);
    letter-spacing: .5px;
}

.menu-category-title hr { display:none; }

.menu-category-title .divider-ornate { animation: spice-wiggle 4s ease-in-out infinite; }

/* État de chargement stylé */
.loading-categories {
    color: var(--white);
    opacity: .9;
}

.loading-categories i { color: var(--secondary-color); }

/* Bowls Section */
.bowls {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(223, 80, 25, 0.02), rgba(210, 157, 0, 0.02));
    position: relative;
}

.bowls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.bowls-item {
    background: rgba(24, 24, 24, 0.7);
    border: 1px solid rgba(210, 157, 0, 0.2);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(10px);
    position: relative;
    box-shadow: var(--shadow-card);
}

.bowls-item:hover {
    border-color: rgba(210, 157, 0, 0.5);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-elevated), var(--shadow-glow-gold);
}

.bowls-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.bowls-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.bowls-item:hover .bowls-image img {
    transform: scale(1.1) rotate(2deg);
}

.bowls-content {
    padding: 2rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bowls-content h3 {
    font-family: var(--display-font);
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    -webkit-text-fill-color: initial;
}

.bowls-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--white);
    margin: 0 0 1rem 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.bowls-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.3px;
}

/* Responsive Bowls */
@media (max-width: 1024px) {
    .bowls-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .bowls {
        padding: 4rem 0;
    }
    
    .bowls-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bowls-image {
        height: 250px;
    }
    
    .bowls-content {
        padding: 1.5rem;
    }
    
    .bowls-content h3 {
        font-size: 1.3rem;
    }
    
    .bowls-content h4 {
        font-size: 1.2rem;
    }
    
    .bowls-content p {
        font-size: 0.9rem;
    }
}

/* ====== Brand logos ====== */
.nav-logo .brand-banner {
    display: block;
    height: auto;
    max-height: 54px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,.35));
}

/* Watermark rond en arrière‑plan (zulfood.png) */
.watermark {
    position: relative;
    isolation: isolate;
}

.watermark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(210, 157, 0, 0.02),
        rgba(210, 157, 0, 0.02) 2px,
        transparent 2px,
        transparent 4px
    );
    pointer-events: none;
    z-index: 0;
}

.watermark > * {
    position: relative;
    z-index: 1;
}

/* Refactoring conteneurs menu : sans bordure ni fond lourd, style sobre */
.menu-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: none;
    box-shadow: none;
    padding: 0;
    border: none;
}

.menu-section {
    background: rgba(0,0,0,0.04);
    border: none;
    box-shadow: none;
    border-radius: 26px;
    padding: 1.5rem 1rem 2.5rem 1rem;
    margin: 0 auto 2rem auto;
    max-width: 900px;
    width: 100%;
    transition: background 0.2s;
}

.menu-category-title {
    background: none;
    padding: 0 0 .75rem 0;
    margin: 0 0 1.2rem 0;
    border-radius: 0;
    position: static;
    box-shadow: none;
}

.menu-category-title h3 {
    font-family: var(--display-font);
    color: var(--secondary-color);
    background: none;
    -webkit-text-fill-color: var(--secondary-color);
    margin-bottom: 0.35em;
}

.menu-category-title p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin: 0;
}

.menu-item {
    background: #fff0;
    border: none;
    box-shadow: none;
    border-bottom: 1px solid rgba(210,157,0,0.11);
    border-radius: 0;
    margin: 0;
    padding: 1.15rem 0 1.15rem 0;
}

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

.menu-item-info h5 {
    color: var(--primary-color);
    font-size: 1.01rem;
    font-weight: 700;
    margin: 0 0 0.18em 0;
}

.menu-item p { color: #bbb; font-size: 1.1rem; }

.menu-item-price {
    color: var(--secondary-color);
    font-size: 0.99rem;
}

/* Logo bannière compact */
.nav-logo .logo-banner {
    display: block;
    height: auto;
    max-height: 54px; /* ~1/3 de la hauteur initiale supposée */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,.35));
}

/* Barre d'entête: styles déjà définis plus haut dans .nav-menu */

/* Masquer la scrollbar sur Webkit (Chrome, Safari) mais permettre le défilement */
.nav-menu::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
    background: transparent;
}

.nav-menu .nav-link {
    display: inline-block;
    padding: 10px 14px; /* boutons suffisamment larges */
    font-weight: 600;
    flex-shrink: 0; /* Empêcher la réduction des liens */
    white-space: nowrap; /* Empêcher le retour à la ligne du texte */
}

@media (max-width: 900px) {
    /* Sur mobile/tablette, le menu hamburger prend le relais */
    .nav-menu { 
        display: none !important; /* Le menu hamburger sera affiché à la place */
    }
    
    .hamburger {
        display: flex !important; /* Afficher le hamburger sur mobile */
    }
}

/* ========================= ANIMATIONS AU SCROLL ========================= */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.fade-in-up {
    transform: translateY(40px);
}

.animate-on-scroll.fade-in-left {
    transform: translateX(-40px);
}

.animate-on-scroll.fade-in-right {
    transform: translateX(40px);
}

.animate-on-scroll.scale-in {
    transform: scale(0.9);
}

.animate-on-scroll.slide-up-fade {
    transform: translateY(50px) scale(0.95);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Délais d'animation pour créer un effet en cascade */
.animate-on-scroll.delay-1 {
    transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
    transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
    transition-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
    transition-delay: 0.4s;
}

/* Amélioration de la hiérarchie visuelle */
.section-header h2 {
    position: relative;
    z-index: 1;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(210, 157, 0, 0.3);
}

.special-card-title,
.bowls-content h3,
.bowls-content h4 {
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Amélioration des transitions pour les images */
.special-card-image img,
.bowls-image img {
    transition: var(--transition-smooth-in-out);
    will-change: transform;
}

.special-card:hover .special-card-image img {
    transform: scale(1.08) rotate(1deg);
}

/* Amélioration des ombres pour plus de profondeur */
.special-card,
.bowls-item,
.card {
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(210, 157, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.special-card:hover,
.bowls-item:hover,
.card:hover {
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(210, 157, 0, 0.3),
        0 0 30px rgba(210, 157, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Amélioration des espacements pour la hiérarchie */
.special-card-content,
.bowls-content {
    gap: 1rem;
}

.special-card-title {
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

/* Transitions améliorées pour les liens de navigation */
.nav-link {
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width var(--transition-smooth);
}

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

/* Amélioration des transitions pour les formulaires */
.form-group input,
.form-group select,
.form-group textarea {
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(210, 157, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(210, 157, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Responsive - optimiser les animations sur mobile */
@media (max-width: 768px) {
    /* Garder les animations mais les rendre plus subtiles */
    .animate-on-scroll {
        transition-duration: 0.6s; /* Plus rapide sur mobile */
    }
    
    .btn-primary:hover,
    .btn-primary:active,
    .btn-secondary:hover,
    .btn-secondary:active {
        transform: translateY(-2px) scale(1.01);
    }
    
    .special-card:hover,
    .special-card:active,
    .bowls-item:hover,
    .bowls-item:active {
        transform: translateY(-4px) scale(1.01);
    }
    
    /* Amélioration du feedback tactile */
    .special-card:active,
    .bowls-item:active,
    .card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* Amélioration des transitions pour les images sur mobile */
    .special-card-image img,
    .bowls-image img {
        transition: transform 0.3s ease;
    }
    
    .special-card:active .special-card-image img,
    .bowls-item:active .bowls-image img {
        transform: scale(1.05);
    }
    
    /* Amélioration des zones tactiles pour tous les éléments interactifs */
    button,
    .btn,
    input[type="submit"],
    input[type="button"],
    select {
        min-height: 48px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(255, 224, 101, 0.2);
    }
    
    /* Amélioration de l'espacement entre les éléments cliquables */
    .special-card + .special-card,
    .bowls-item + .bowls-item,
    .btn + .btn {
        margin-top: 1rem;
    }
    
    /* Amélioration de la lisibilité des textes */
    p, li, span {
        line-height: 1.7;
    }
    
    /* Amélioration des espacements de section */
    section {
        padding: 2.5rem 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll,
    .btn,
    .special-card,
    .bowls-item,
    .card {
        transition: none;
        animation: none;
    }
    
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* Footer bar modern */
.footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 8px 6px 8px;
    color: #e9e9e9;
}
.footer-brandline {
    font-size: 0.96rem;
    color: #dcdcdc;
    white-space: nowrap;
}
.footer-brandline a { color: #f0f0f0; text-decoration: none; }
.footer-links-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
.footer-links-inline a,
.footer-links-inline a:visited { color: #f2f2f2; text-decoration: none; font-weight: 600; }
.footer-links-inline a:hover { color: #ffffff; opacity: 0.9; }
.footer-links-inline .sep { color: #8f8f8f; }
.footer-social { display: inline-flex; align-items: center; gap: 14px; }
.footer-social img { height: 26px; width: 26px; display: block; filter: brightness(100%); }

/* Responsive: éviter les superpositions */
@media (max-width: 980px) {
    .footer-bar { flex-wrap: wrap; justify-content: center; text-align: center; }
    .footer-brandline { width: 100%; margin-bottom: 6px; }
    .footer-social { order: 3; margin-top: 8px; }
}

/* Footer 3 blocs */
.footer-grid3 {
    display: grid;
    grid-template-columns: minmax(160px, 0.9fr) minmax(220px, 1fr) minmax(140px, 0.7fr);
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    color: #e9e9e9;
}
.footer-left { display: flex; align-items: center; justify-content: flex-start; }
.footer-logo-spot { max-width: clamp(180px, 30vw, 260px); height: auto; object-fit: contain; display: block; filter: brightness(100%); margin: 0; }

.footer-center { text-align: center; min-width: 0; }
.footer-links-line { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; color: #f2f2f2; margin: 0 0 18px 0; }
.footer-links-line a, .footer-links-line a:visited { color: #f2f2f2; text-decoration: none; font-weight: 600; }
.footer-links-line a:hover { color: #ffffff; opacity: .9; }
.footer-links-line .sep { color: #9a9a9a; }
.footer-info-line { margin: 0; color: #dcdcdc; font-size: .98rem; }
.footer-info-line a { color: #f0f0f0; text-decoration: none; }

.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.footer-right .social-vert img { width: 48px; height: 48px; display: block; }
.footer-right .social-vert svg { width: 48px; height: 48px; display: block; fill: #ffffff; }

@media (max-width: 980px) {
    .footer-grid3 {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        padding-left: 0;
        padding-right: 0;
        gap: 1.75rem;
    }
    .footer-left { justify-content: center; }
    .footer-right { flex-direction: row; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1rem; }
    .footer-right .social-vert img,
    .footer-right .social-vert svg { width: 44px; height: 44px; }
    .footer-links-line { gap: 0.35rem; }
}

@media (max-width: 600px) {
    .footer {
        padding: 2.5rem 1.25rem 0;
    }
    .footer-grid3 {
        gap: 1.5rem;
    }
    .footer-logo-spot {
        max-width: 200px;
    }
    .footer-info-line {
        font-size: 0.9rem;
        line-height: 1.4;
        text-align: center;
    }
    .footer-right {
        width: 100%;
    }
    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* Mentions légales – conteneurs 100% transparents */
.legal-section .container,
.legal-section .legal-content,
.legal-section .legal-item {
    background: transparent !important;
}

/* Hero compact (mentions légales) */
.page-hero.compact { padding: 16px 0 !important; min-height: 0 !important; }
.page-hero.compact .hero-content { max-width: 720px; margin: 0 auto; padding: 0 !important; }
.page-hero.compact .hero-title { font-size: 2rem !important; line-height: 1.15 !important; margin: 0 0 .3em !important; }
.page-hero.compact .hero-subtitle { font-size: 1rem !important; line-height: 1.25 !important; margin: 0 !important; color: #ffe065 !important; }

/* ========================= SECTION RÉSEAUX SOCIAUX ========================= */
.social-section {
    padding: 4rem 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(223, 80, 25, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.social-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fade-in-up 1s ease-out;
}

.social-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    text-align: center;
}

.social-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.social-buttons {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.social-button {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2.5rem;
    background: rgba(24, 24, 24, 0.9);
    border: 2px solid rgba(255, 224, 101, 0.3);
    border-radius: 16px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 224, 101, 0.1);
    animation: fade-in-up 1s ease-out;
}

.social-button:nth-child(1) {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.social-button:nth-child(2) {
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.social-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 224, 101, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-button:hover::before {
    left: 100%;
}

.social-button:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 224, 101, 0.6);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 224, 101, 0.3),
        0 0 50px rgba(223, 80, 25, 0.2);
}

.social-instagram:hover {
    border-color: rgba(225, 48, 108, 0.6);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(225, 48, 108, 0.3),
        0 0 50px rgba(225, 48, 108, 0.2);
}

.social-tiktok:hover {
    border-color: rgba(0, 242, 234, 0.6);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 242, 234, 0.3),
        0 0 50px rgba(255, 0, 80, 0.2);
}

.social-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 224, 101, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(255, 224, 101, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-button:hover .social-icon-wrapper {
    background: rgba(255, 224, 101, 0.2);
    border-color: rgba(255, 224, 101, 0.6);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(255, 224, 101, 0.4);
}

.social-instagram:hover .social-icon-wrapper {
    background: rgba(225, 48, 108, 0.2);
    border-color: rgba(225, 48, 108, 0.6);
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.4);
}

.social-tiktok:hover .social-icon-wrapper {
    background: rgba(0, 242, 234, 0.2);
    border-color: rgba(0, 242, 234, 0.6);
    box-shadow: 0 0 20px rgba(0, 242, 234, 0.4);
}

.social-icon-svg {
    width: 32px;
    height: 32px;
    fill: #ffe065;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 224, 101, 0.5));
}

.social-instagram:hover .social-icon-svg {
    fill: #E1306C;
    filter: drop-shadow(0 0 12px rgba(225, 48, 108, 0.8));
}

.social-icon-img {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 8px rgba(255, 224, 101, 0.5));
    transition: all 0.3s ease;
}

.tiktok-icon-svg {
    width: 32px;
    height: 32px;
    fill: #ffe065;
    filter: drop-shadow(0 0 8px rgba(255, 224, 101, 0.5));
    transition: all 0.3s ease;
}

.social-tiktok:hover .tiktok-icon-svg {
    fill: #00F2EA;
    filter: drop-shadow(0 0 12px rgba(0, 242, 234, 0.8)) drop-shadow(0 0 8px rgba(255, 0, 80, 0.6));
    transform: scale(1.1);
}

.social-tiktok:hover .social-icon-img {
    filter: drop-shadow(0 0 12px rgba(0, 242, 234, 0.8)) drop-shadow(0 0 8px rgba(255, 0, 80, 0.6));
    transform: scale(1.1);
}

.social-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    flex: 1;
}

.social-platform {
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffe065;
    text-shadow: 
        0 0 10px rgba(255, 224, 101, 0.6),
        0 0 20px rgba(255, 224, 101, 0.4);
    transition: all 0.3s ease;
}

.social-instagram:hover .social-platform {
    color: #E1306C;
    text-shadow: 
        0 0 10px rgba(225, 48, 108, 0.8),
        0 0 20px rgba(225, 48, 108, 0.6);
}

.social-tiktok:hover .social-platform {
    color: #00F2EA;
    text-shadow: 
        0 0 10px rgba(0, 242, 234, 0.8),
        0 0 20px rgba(0, 242, 234, 0.6);
}

.social-handle {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.social-button:hover .social-handle {
    color: rgba(255, 255, 255, 0.9);
}

.social-arrow {
    font-size: 1.5rem;
    color: rgba(255, 224, 101, 0.6);
    transition: all 0.3s ease;
    font-weight: bold;
}

.social-button:hover .social-arrow {
    color: #ffe065;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(255, 224, 101, 0.8);
}

.social-instagram:hover .social-arrow {
    color: #E1306C;
    text-shadow: 0 0 10px rgba(225, 48, 108, 0.8);
}

.social-tiktok:hover .social-arrow {
    color: #00F2EA;
    text-shadow: 0 0 10px rgba(0, 242, 234, 0.8);
}

/* Responsive pour la section réseaux sociaux */
@media (max-width: 768px) {
    .social-section {
        padding: 3rem 0;
    }
    
    .social-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-bottom: 0.75rem;
    }
    
    .social-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 2rem;
    }
    
    .social-buttons {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }
    
    .social-button {
        padding: 1.25rem 1.75rem;
        gap: 1rem;
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 280px;
        max-width: 100%;
    }
    
    .social-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .social-icon-svg,
    .social-icon-img,
    .tiktok-icon-svg {
        width: 28px;
        height: 28px;
    }
    
    .social-platform {
        font-size: 1.25rem;
    }
    
    .social-handle {
        font-size: 0.85rem;
    }
    
    .social-arrow {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .social-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-button {
        padding: 1rem 1.5rem;
        gap: 0.75rem;
        flex: 1 1 auto;
        min-width: 100%;
        max-width: 100%;
    }
    
    .social-icon-wrapper {
        width: 45px;
        height: 45px;
    }
    
    .social-icon-svg,
    .social-icon-img,
    .tiktok-icon-svg {
        width: 24px;
        height: 24px;
    }
    
    .social-platform {
        font-size: 1.1rem;
    }
}

/* Footer super compact + trait séparateur très court/fin */
.footer-grid3 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    gap: 0px;
}
.footer-links-line { margin: 0; }
.footer-info-line { margin: 0; }
.footer-hr {
    border: none;
    border-top: 2px solid #cccccc; 
    opacity: 0.35;
    margin: 0px auto !important;
    max-width: 250px; /* largeur doublée */
}

.footer, .footer .container, .footer-grid3, .footer-links-line, .footer-info-line {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.footer-bottom { margin-top: 6px !important; margin-bottom: 0 !important; padding-bottom: 0 !important; }
footer.footer { padding-bottom: 0 !important; margin-bottom: 0 !important; }
body { padding-bottom: 0 !important; margin-bottom: 0 !important; }
html { padding-bottom: 0 !important; margin-bottom: 0 !important; }

/* Ultra-compact footer override */
footer.footer { 
    padding: 0 !important; 
    margin: 0 !important; 
    padding-bottom: 0 !important; 
    margin-bottom: 0 !important;
    position: relative !important;
}
body:after, html:after {
    display: none !important;
    content: none !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}
footer.footer .container { padding: 0 20px !important; margin: 0 auto !important; padding-bottom: 0 !important; margin-bottom: 0 !important; }
footer.footer .footer-content { gap: 4px !important; padding: 4px 0 !important; align-items: center !important; }
footer.footer .footer-section { margin: 0 6px !important; padding: 0 !important; }
footer.footer .footer-section h3,
footer.footer .footer-section h4 { font-size: 0.95rem !important; margin: 0 0 2px 0 !important; line-height: 1.2 !important; }
footer.footer .footer-section p,
footer.footer .footer-section a,
footer.footer .footer-bottom { font-size: 0.85rem !important; margin: 2px 0 !important; line-height: 1.2 !important; }
footer.footer .footer-bottom { padding: 0 !important; margin: 0 !important; margin-top: 6px !important; }
footer.footer .footer-bottom p { margin: 0 !important; padding: 0 !important; line-height: 1 !important; }
footer.footer::after { display: none !important; content: none !important; }
.legal-section { padding-bottom: 0 !important; margin-bottom: 0 !important; }
.actualites-section { padding-bottom: 0 !important; margin-bottom: 0 !important; }
.actualites-section .container { padding-bottom: 0 !important; margin-bottom: 0 !important; }
#actualites-container { padding-bottom: 0 !important; margin-bottom: 0 !important; }
body > section:last-of-type { margin-bottom: 0 !important; padding-bottom: 0 !important; }
body > section:last-of-type .container { margin-bottom: 0 !important; padding-bottom: 0 !important; }
body:after, html:after { display: none !important; content: none !important; height: 0 !important; }
footer.footer + * { display: none !important; }
footer.footer { position: relative; bottom: 0; }
body { position: relative; min-height: auto !important; height: auto !important; overflow-x: hidden; }
html { position: relative; min-height: auto !important; height: auto !important; overflow-x: hidden; }
body:has(footer.footer) { padding-bottom: 0 !important; margin-bottom: 0 !important; }
html:has(footer.footer) { padding-bottom: 0 !important; margin-bottom: 0 !important; }

/* =========================
   MENU PAGE - LAYOUT & UI
========================= */
.menu-page { padding: 4rem 0; }

.menu-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}
.menu-category {
    appearance: none;
    border: none;
    background: rgba(255,255,255,0.04);
    color: var(--text-color);
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 500;
}
.menu-category:hover { border-color: var(--secondary-color); filter: brightness(1.05); }
.menu-category.active {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(210,157,0,0.25);
}

.menu-category-title {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 0 12px 0 !important;
}
.menu-category-title h3 { margin: 0 0 6px 0; }
.menu-category-title p { margin: 0; opacity: .9; }

.menu-content {
    display: grid;
    gap: 2.5rem;
    margin-top: calc(2cm + 18px);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    background: rgba(0, 0, 0, 0.88);
    border-radius: var(--border-radius-lg);
    padding: clamp(1.25rem, 4vw, 2.5rem);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(210, 157, 0, 0.25);
}
.menu-content .menu-section { display: none; opacity: 0; transform: translateY(16px); transition: opacity 0.25s ease, transform 0.25s ease; }
.menu-content .menu-section.active { display: block; opacity: 1; transform: translateY(0); }
.menu-content .menu-section:first-child { margin-top: 14px; }
.menu-section { background: transparent !important; border: none; border-radius: 16px; padding: 1.25rem; box-shadow: none !important; max-width: 100%; width: 100%; }
.menu-category-title { text-align: center; margin-bottom: 1rem; }
.menu-category-title h3 { font-family: 'Playfair Display', serif; letter-spacing: 0.5px; }
.menu-category-title hr { display: none; }

.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 0.75rem; align-items: start; padding: 0.9rem 0.4rem; border-bottom: 1px dashed rgba(210,157,0,0.2); }
.menu-item:last-child { border-bottom: none; }
.menu-item-info h5 { font-weight: 600; margin-bottom: 0.25rem; }
.menu-item-price { font-weight: 700; color: var(--secondary-color); white-space: nowrap; margin-left: 1rem; }

.menu-item-badges { display: inline-flex; gap: 0.35rem; margin-left: 0.4rem; }
.new-badge { background: rgba(223,80,25,0.2); color: #fff; border: 1px solid rgba(223,80,25,0.4); padding: 0.1rem 0.4rem; border-radius: 6px; font-size: 0.75rem; }
.takeaway-badge { color: var(--secondary-color); margin-left: 0.25rem; }

.menu-item.unavailable { opacity: 0.6; }

/* Info message under categories */
.menu-info-message { display: flex; justify-content: center; margin: 0.5rem 0 1.25rem 0; }
.menu-info-message p {
  max-width: none;
  margin: 0 auto;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .menu-page {
    padding: 2rem 0;
  }
  
  .menu-info-message {
    margin: 1rem 0 1.5rem;
    padding: 1rem;
  }

  .menu-info-message p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.5;
    white-space: normal;
    display: block;
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .menu-content { gap: 3rem; }
  .menu-section { padding: 1.5rem 1.75rem; }
  .menu-item { padding: 1rem 0.5rem; }
}

.hero-highlight {
    position: relative;
    z-index: 2;
    padding: 4rem 1rem 1rem 1rem;
    text-align: center;
    background: transparent;
}

.hero-highlight h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #ffd45a;
    text-shadow: 0 0 8px rgba(210, 157, 0, 0.45);
    margin: 0;
}


.hero-subheadline-wrapper {
    margin: 8cm auto 0;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-subheadline-wrapper {
        margin: 1.5rem auto 0;
    }
    
    .hero-subheadline {
        font-size: clamp(1.2rem, 5vw, 1.8rem) !important;
    }
}

.hero-subheadline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

/* Responsive pour les sections avec grid inline */
@media (max-width: 768px) {
    .container > div[style*="grid"] {
        gap: 1rem !important;
    }
    
    .container > div[style*="height"] {
        height: 0.5em !important;
    }
}

@media (max-width: 480px) {
    .container > div[style*="height"] {
        height: 0.3em !important;
    }
}

.partners-section {
    position: relative;
    z-index: 5;
}

body::before {
    content: none;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 16px;
    background: rgba(16, 16, 16, 0.7);
    border: 1px solid rgba(255, 212, 90, 0.4);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.partner-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(210, 157, 0, 0.35), rgba(223, 80, 25, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.partner-badge svg,
.partner-badge span {
    position: relative;
    z-index: 1;
}

.partner-badge svg {
    width: 36px;
    height: 36px;
}

.partner-badge span {
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fdfdfd;
}

.partner-badge:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 224, 130, 0.6);
    box-shadow: 0 16px 32px rgba(210, 157, 0, 0.35);
}

.partner-badge:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .partner-badge {
        padding: 10px 14px;
        border-radius: 14px;
        gap: 10px;
    }

    .partner-badge svg {
        width: 32px;
        height: 32px;
    }

    .partner-badge span {
        letter-spacing: 0.18em;
    }
}

.partner-logo {
    width: 1cm;
    height: 1cm;
    object-fit: contain;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
}

@media (max-width: 768px) {
    .partners-section {
        padding: 1.5rem 0;
    }
    
    .partner-badge {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
        width: 100%;
        max-width: 200px;
    }
    
    .partner-logo {
        width: 0.9cm;
        height: 0.9cm;
    }
    
    .partner-badge span {
        font-size: 0.85rem;
    }
}

/* =========================
   MENU PAGE - LAYOUT & UI
========================= */
.menu-page { padding: 4rem 0; }

/* =========================
   MAP SECTION - GOOGLE MAPS
========================= */
.map-section {
    padding: 2rem 0;
    background: #000;
}

.map-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .map-section {
        padding: 1rem 0;
        margin: 0;
    }
    
    .map-wrapper {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding: 0;
    }
    
    .map-wrapper iframe {
        height: 300px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .map-wrapper iframe {
        height: 250px;
    }
}

/* Style pour le fond noir de la section menu */
.bolly-bg {
    background: #000 !important;
    position: relative;
}
