/* ============================================
   Ô DUNES — Restaurant Port-Camargue
   Palette : sable, beige, doré
   ============================================ */

:root {
    /* Palette calée sur le logo Ô Dunes — tons crème/sable très clairs */
    --sand-50: #faf6ef;
    --sand-100: #f3ece0;
    --sand-200: #ece3d1;
    --sand-light: #e8dcc8;
    --sand-300: #e0d3ba;
    --sand-400: #d4c4a0;
    --sand-500: #c8b488;
    --sand-600: #b9a274;
    --sand-700: #a08a5e;
    --sand-800: #8a7650;
    --sand-900: #6b5b3e;
    --gold: #c4ad7a;
    --gold-light: #d4c09a;
    --gold-dark: #b09868;
    --sea-mid: #7cb8b4;
    --white: #ffffff;
    --black: #1a1a1a;
    --text: #6b5b3e;
    --text-light: #8a7e6a;
    --overlay: rgba(240, 232, 214, 0.75);

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--sand-50);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Container ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- Section ---- */
.section { padding: 100px 0; }
.section-alt { background: var(--sand-200); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--sand-800);
    margin-bottom: 16px;
}
.separator {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 0 auto 20px;
    border-radius: 2px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
    background: rgba(253, 248, 240, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}
.nav-container {
    max-width: 100%;
    margin: 0;
    padding: 0 24px 0 12px;
    display: flex;
    align-items: center;
    height: 100px;
}
.nav-container > a:first-child {
    flex: 0 0 auto;
    margin-right: 24px;
}
.logo-img {
    height: 120px;
    width: 120px;
    object-fit: contain;
    margin-top: 10px;
    transition: opacity var(--transition);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
}
#navbar:not(.scrolled) .logo-img { opacity: 0.8; }
#navbar.scrolled .logo-img { opacity: 1; }

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex: 1;
}
.nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    padding: 4px 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
#navbar.scrolled .nav-link { color: var(--sand-800); text-shadow: none; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.btn-commander {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background var(--transition), transform var(--transition);
}
.btn-commander:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

/* Burger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; }
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    transition: var(--transition);
}
#navbar.scrolled .nav-toggle span { background: var(--sand-800); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/banniere-hero.png') center center / cover no-repeat;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}
.hero-logo {
    width: 160px;
    height: 160px;
    margin: 0 auto 24px;
    object-fit: contain;
    background: none;
    box-shadow: none;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.3));
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 8px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.4);
}
.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 16px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.hero-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 40px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition);
}
.btn-primary {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--sand-800);
}
.btn-large { padding: 16px 48px; font-size: 1rem; }

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero-scroll a { display: block; width: 30px; height: 50px; }
.hero-scroll span {
    display: block;
    width: 20px; height: 20px;
    margin: 0 auto;
    border-right: 2px solid rgba(255,255,255,0.8);
    border-bottom: 2px solid rgba(255,255,255,0.8);
    transform: rotate(45deg);
    animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
    0% { opacity: 0; transform: rotate(45deg) translate(-8px, -8px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(8px, 8px); }
}

/* ============================================
   CONCEPT
   ============================================ */
.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.concept-text p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--text-light);
}
.concept-intro {
    font-size: 1.15rem !important;
    color: var(--text) !important;
    line-height: 1.8;
}
.concept-features { display: flex; flex-direction: column; gap: 30px; }
.feature {
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.feature-icon {
    width: 48px; height: 48px;
    color: var(--gold);
    margin-bottom: 12px;
}
.feature h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--sand-800);
    margin-bottom: 6px;
}
.feature p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ============================================
   CARTE / MENU
   ============================================ */
.menu-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.menu-tab {
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--sand-600);
    background: var(--white);
    border: 2px solid var(--sand-200);
    transition: all var(--transition);
}
.menu-tab:hover { border-color: var(--gold); color: var(--gold); }
.menu-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.menu-category { display: none; }
.menu-category.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    animation: fadeIn 0.4s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.menu-item {
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
.menu-item:hover { box-shadow: var(--shadow-md); }
.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}
.menu-item h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--sand-800);
}
.menu-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
}
.menu-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}
/* Image produit dans la carte */
.menu-item.has-img {
    display: flex;
    gap: 0;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
}
.menu-item-img {
    width: 160px;
    min-height: 100%;
    object-fit: cover;
    border-radius: var(--radius) 0 0 var(--radius);
    flex-shrink: 0;
}
.menu-item-body {
    padding: 14px 16px 14px 16px;
    flex: 1;
    min-width: 0;
}
.menu-item:not(.has-img) .menu-item-body {
    padding: 0;
}
.menu-item.has-img h3 {
    font-size: 1rem;
}
.menu-item.has-img .menu-price {
    font-size: 1rem;
}
.menu-item.has-img p {
    font-size: 0.82rem;
    line-height: 1.4;
}
@media (max-width: 480px) {
    .menu-item.has-img {
        flex-direction: column;
    }
    .menu-item-img {
        width: 100%;
        height: 160px;
        border-radius: var(--radius) var(--radius) 0 0;
    }
    .menu-item-body {
        padding: 16px;
    }
}

/* ============================================
   GALERIE
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; }
.gallery-large { grid-column: span 2; }
.gallery-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--sand-200), var(--sand-300));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    transition: transform var(--transition);
}
.gallery-large .gallery-placeholder { height: 300px; }
.gallery-placeholder:hover { transform: scale(1.02); }
.gallery-placeholder span {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--sand-600);
    font-size: 1rem;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}
.gallery-item:hover img { transform: scale(1.05); }

/* ============================================
   HORAIRES / INFOS
   ============================================ */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}
.info-card {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--sand-800);
    margin-bottom: 20px;
}
.schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--sand-100);
}
.schedule-row:last-child { border-bottom: none; }
.schedule-day { font-weight: 600; color: var(--sand-700); }
.schedule-time { color: var(--text-light); }
.address { line-height: 1.8; margin-bottom: 16px; color: var(--text-light); }
.phone a, .email a {
    color: var(--gold);
    font-weight: 600;
}
.phone a:hover, .email a:hover { color: var(--gold-dark); }
.phone { margin-bottom: 8px; }
.info-card-map { padding: 0; overflow: hidden; }
.map-placeholder {
    width: 100%; height: 100%; min-height: 280px;
    background: var(--sand-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--sand-600);
}

/* ============================================
   FORMULAIRE RÉSERVATION
   ============================================ */
.reservation-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--sand-700);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    height: 48px;
    border: 2px solid var(--sand-200);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    background: var(--sand-50);
    transition: border-color var(--transition);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b5b3e' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.form-group textarea { height: auto; min-height: 100px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.form-group textarea { resize: vertical; }
.form-actions { text-align: center; margin-top: 30px; }
.form-confirmation {
    margin-top: 20px;
    padding: 20px;
    background: #e8f5e9;
    border-radius: var(--radius);
    text-align: center;
    color: #2e7d32;
    font-weight: 600;
}

/* ============================================
   BOUTON FLOTTANT RÉSERVATION
   ============================================ */
.floating-cta {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all var(--transition), opacity 0.4s ease, visibility 0.4s ease;
    animation: floatCta 0.6s ease 1s both;
}
.floating-cta.hidden {
    opacity: 0 !important;
    pointer-events: none;
    visibility: hidden;
}
.floating-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-50%) translateX(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.25);
}
.floating-cta svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}
@keyframes floatCta {
    from { opacity: 0; transform: translateY(-50%) translateX(20px); }
    to { opacity: 1; transform: translateY(-50%); }
}
@media (max-width: 480px) {
    .floating-cta { padding: 10px 18px; font-size: 0.75rem; right: 12px; }
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: rgba(58, 50, 37, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255,255,255,0.9);
    padding: 20px 24px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    line-height: 1.5;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.cookie-banner.show { display: flex; }
.cookie-banner p { flex: 1; min-width: 240px; }
.cookie-banner p a {
    color: var(--gold-light);
    text-decoration: underline;
}
.cookie-banner p a:hover { color: var(--white); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}
.cookie-accept {
    background: var(--gold);
    color: var(--white);
}
.cookie-accept:hover { background: var(--gold-dark); }
.cookie-refuse {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.3);
}
.cookie-refuse:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

@media (max-width: 480px) {
    .cookie-banner { padding: 16px; gap: 12px; font-size: 0.8rem; }
    .cookie-btns { width: 100%; justify-content: center; }
}

/* ============================================
   ANIMATED WAVES (above footer)
   ============================================ */
.waves-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 180px;
    margin-top: -180px;
    background: transparent;
    pointer-events: none;
}
.waves-container svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
}
.wave { animation: waveFlow linear infinite; }
.wave-1 { animation-duration: 8s; }
.wave-2 { animation-duration: 11s; animation-direction: reverse; }
.wave-3 { animation-duration: 14s; }
@keyframes waveFlow {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--sand-300);
    color: var(--sand-800);
    padding: 60px 0 200px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 12px;
    opacity: 0.9;
}
.footer-brand p { color: var(--sand-700); font-size: 0.95rem; }
.footer h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--sand-900);
    margin-bottom: 16px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-dark); }
.footer-contact p { margin-bottom: 8px; font-size: 0.9rem; }
.social-links { display: flex; gap: 12px; }
.social-link {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    color: var(--sand-700);
    transition: all var(--transition);
}
.social-link:hover {
    background: var(--gold);
    color: var(--white);
}
.social-link svg { width: 20px; height: 20px; }
.footer-bottom {
    border-top: 1px solid var(--sand-400);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--sand-700);
}
.footer-bottom a:hover { color: var(--gold-dark); }
.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all var(--transition);
}
.footer-cta:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.footer-cta svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }

/* ============================================
   SECTIONS VIDÉO (Snack, Cocktails, Glaces)
   ============================================ */
.section-video { padding: 80px 0; }
.section-dark { background: var(--sand-200); }

.video-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.video-showcase-reverse { direction: rtl; }
.video-showcase-reverse > * { direction: ltr; }

.video-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--sand-800);
    margin-bottom: 16px;
}
.video-text .separator { margin: 0 0 20px; }
.video-text p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.8;
}

.video-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--sand-300);
}
.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

/* ============================================
   PAGE HEADER (pages interieures)
   ============================================ */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    background: var(--sand-300);
    overflow: hidden;
}
.page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.page-header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}
/* Bokeh circles */
.page-header-bokeh {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}
.page-header-bokeh span {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: bokehFloat 6s ease-in-out infinite;
}
@keyframes bokehFloat {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0.8); }
    30% { opacity: 1; }
    70% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-30px) scale(1.1); }
}

/* Thèmes par page */
.page-header--carte .page-header-overlay {
    background: linear-gradient(135deg, rgba(185,162,116,0.6), rgba(60,40,20,0.5));
}
.page-header--carte .page-header-bokeh span { background: rgba(220,200,140,0.25); }

.page-header--restaurant .page-header-overlay {
    background: linear-gradient(135deg, rgba(180,160,120,0.55), rgba(44,74,82,0.45));
}
.page-header--restaurant .page-header-bokeh span { background: rgba(212,196,160,0.25); }

.page-header--reservation .page-header-overlay {
    background: linear-gradient(135deg, rgba(44,74,82,0.6), rgba(90,154,158,0.4));
}
.page-header--reservation .page-header-bokeh span { background: rgba(168,212,208,0.3); }

.page-header--contact .page-header-overlay {
    background: linear-gradient(135deg, rgba(90,154,158,0.55), rgba(44,74,82,0.5));
}
.page-header--contact .page-header-bokeh span { background: rgba(200,230,228,0.3); }

.page-header--avis .page-header-overlay {
    background: linear-gradient(135deg, rgba(196,173,122,0.55), rgba(90,154,158,0.4));
}
.page-header--avis .page-header-bokeh span { background: rgba(220,200,140,0.3); }
.page-header h1 {
    position: relative;
    z-index: 2;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.page-header .separator {
    position: relative;
    z-index: 2;
    margin-bottom: 16px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
}
.page-header p {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}

/* ============================================
   CTA BANDEAU
   ============================================ */
.cta-band {
    background: linear-gradient(135deg, var(--sand-600), var(--sand-700));
    padding: 60px 0;
    text-align: center;
}
.cta-band h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 8px;
}
.cta-band p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
    font-size: 1.05rem;
}
.cta-band .btn-primary {
    background: var(--gold-light);
    color: var(--sand-900);
}
.cta-band .btn-primary:hover {
    background: var(--white);
    color: var(--sand-800);
}

/* ============================================
   ALLERGENS / BADGE
   ============================================ */
.badge-maison {
    display: inline-block;
    padding: 3px 10px;
    background: var(--gold-light);
    color: var(--sand-900);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    margin-top: 8px;
}
.badge-vedette {
    display: inline-block;
    padding: 3px 10px;
    background: var(--sea-mid);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    margin-top: 8px;
}
.allergens-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid var(--sand-200);
}

/* ============================================
   CARTE — LOADING SKELETON + ERREUR
   ============================================ */
.menu-loading {
    padding: 20px 0;
}
.menu-loading-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.menu-loading-tabs span {
    display: block;
    width: 100px;
    height: 40px;
    border-radius: 50px;
    background: var(--sand-200);
    animation: menu-pulse 1.2s ease-in-out infinite;
}
.menu-loading-tabs span:nth-child(2) { animation-delay: 0.1s; }
.menu-loading-tabs span:nth-child(3) { animation-delay: 0.2s; }
.menu-loading-tabs span:nth-child(4) { animation-delay: 0.3s; }
.menu-loading-tabs span:nth-child(5) { animation-delay: 0.4s; }

.menu-loading-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.menu-loading-card {
    height: 120px;
    border-radius: 12px;
    background: var(--sand-100);
    animation: menu-pulse 1.2s ease-in-out infinite;
}
.menu-loading-card:nth-child(2) { animation-delay: 0.15s; }
.menu-loading-card:nth-child(3) { animation-delay: 0.3s; }
.menu-loading-card:nth-child(4) { animation-delay: 0.45s; }

@keyframes menu-pulse {
    0%, 100% { opacity: 0.4; }
    50%      { opacity: 1; }
}

.menu-error {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}
.menu-error p {
    margin: 8px 0;
    font-size: 1rem;
}
.menu-error a {
    color: var(--gold);
    font-weight: 600;
}

@media (max-width: 768px) {
    .menu-loading-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--sand-800);
    margin-bottom: 16px;
}
.about-text .separator { margin: 0 0 20px; }
.about-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--sand-200), var(--sand-300));
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-image img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.about-image span {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--sand-600);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.value-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.value-icon {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
    color: var(--gold);
}
.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--sand-800);
    margin-bottom: 8px;
}
.value-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.contact-form .form-group { margin-bottom: 20px; }

/* ============================================
   AVIS CLIENTS
   ============================================ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}
.review-stars .star {
    width: 18px;
    height: 18px;
    color: var(--gold);
}
.review-stars .star.empty { color: var(--sand-300); }
.review-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}
.review-author {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--sand-800);
}
.review-date {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 2px;
}

/* Note globale */
.reviews-summary {
    text-align: center;
    margin-bottom: 40px;
}
.reviews-summary .big-note {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--sand-800);
    line-height: 1;
}
.reviews-summary .big-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: 8px 0;
}
.reviews-summary .big-stars .star { width: 24px; height: 24px; color: var(--gold); }
.reviews-summary .big-stars .star.empty { color: var(--sand-300); }
.reviews-summary .total-avis {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Formulaire avis */
.review-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.review-form .form-group { margin-bottom: 20px; }

/* Star rating input */
.star-rating-input {
    display: flex;
    gap: 4px;
    margin-bottom: 4px;
}
.star-rating-input .star-btn {
    width: 32px;
    height: 32px;
    padding: 0;
    color: var(--sand-300);
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}
.star-rating-input .star-btn:hover { transform: scale(1.15); }
.star-rating-input .star-btn.active { color: var(--gold); }
.star-rating-input .star-btn svg { width: 100%; height: 100%; }

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}
.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   ANIMATIONS (scroll reveal)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .concept-grid { grid-template-columns: 1fr; gap: 40px; }
    .menu-category.active { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .video-showcase,
    .video-showcase-reverse { grid-template-columns: 1fr; gap: 30px; direction: ltr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .section-header h2 { font-size: 2rem; }
    .hero h1 { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1rem; letter-spacing: 2px; }
    .nav-container { height: 80px; }
    .logo-img { height: 90px; width: 90px; }

    /* Mobile nav */
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: var(--sand-50);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right var(--transition);
        box-shadow: var(--shadow-lg);
    }
    .nav-menu.open { right: 0; }
    .nav-menu .nav-link {
        color: var(--sand-800);
        font-size: 1rem;
    }

    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-large { grid-column: span 2; }

    .reservation-form { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .page-header { padding: 160px 0 60px; }
    .page-header h1 { font-size: 2.2rem; }
    .page-header p { font-size: 1rem; }
    .values-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 28px 20px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .review-form { padding: 28px 20px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .nav-container { height: 70px; }
    .logo-img { height: 70px; width: 70px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-large { grid-column: span 1; }
    .menu-categories { gap: 8px; }
    .menu-tab { padding: 8px 18px; font-size: 0.85rem; }
}
