@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;800&display=swap');
/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* --- Colors (Identity Preserved) --- */
    --color-primary: #c44a4a;
    /* Red from logo */
    --color-primary-dark: #9d3135;
    /* Darker red for hover/text */
    --color-primary-light: #ff8080;
    /* Lighter red for accents */
    --color-text: #333333;
    /* Dark gray for main text */
    --color-text-light: #666666;
    /* Lighter gray for secondary text */
    --color-bg: #ffffff;
    /* White background */
    --color-bg-alt: #f9f9f9;
    /* Light gray background for sections */
    --color-white: #ffffff;
    --color-black: #000000;

    /* --- Fonts --- */
    --font-heading: 'Sport Bold', 'Kanit', sans-serif;
    --font-body: 'Milk Kids', 'Poppins', sans-serif;
    --font-accent: 'Dancing Script', cursive;

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

    /* --- Layout --- */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius: 12px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);

    /* --- Transitions --- */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-bg);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary-dark);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-lg) 0;
}

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

.text-primary {
    color: var(--color-primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8em 2em;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

/* =========================================
   2. HEADER & NAVIGATION (FAST FOOD STYLE)
   ========================================= */
.header {
    position: fixed;
    top: 20px;
    /* Floating effect */
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1250px;
    /* Slightly wider */
    height: 90px;
    /* Taller to fit logo */
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    /* More rounded */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    /* Ensure vertical centering */
}

.header.scrolled {
    top: 10px;
    height: 70px;
    width: 98%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 20px rgba(196, 74, 74, 0.15);
    /* Red tinted shadow */
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 30px;
    /* More breathing room */
}

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

.logo img {
    height: 75px;
    /* Much larger */
    width: auto;
    transition: var(--transition-normal);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    object-fit: contain;
}

.header.scrolled .logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 5px;
    /* Tighter gap */
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 800;
    /* Extra bold */
    color: var(--color-text);
    padding: 12px 20px;
    border-radius: 40px;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Icons in nav (requires HTML update or pseudo-elements, assuming HTML update next) */
.nav-link i {
    font-size: 1.3em;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.nav-link:hover {
    background-color: var(--color-bg-alt);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.nav-link.active {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(196, 74, 74, 0.4);
}

.nav-link.active i {
    color: var(--color-white);
}

/* Language selector override */
.nav-link[aria-label="Français"],
.nav-link[aria-label="Nederlands"] {
    background: transparent !important;
    box-shadow: none !important;
    padding: 10px 5px;
    min-width: unset;
}

.nav-link[aria-label="Français"]:hover,
.nav-link[aria-label="Nederlands"]:hover {
    background: transparent !important;
    color: var(--color-primary) !important;
    transform: translateY(-2px);
}

.nav-link[aria-label="Français"].active,
.nav-link[aria-label="Nederlands"].active {
    background: transparent !important;
    color: var(--color-text) !important;
    text-decoration: underline;
    text-decoration-color: var(--color-primary);
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
    box-shadow: none !important;
}

/* Special style for 'Commander' if it's a link, but we have a button usually. 
   If 'Commander' is in the list, let's make it pop. */
.nav-link[href*="commander"] {
    background-color: #ffb700;
    /* Mustard/Yellow for CTA */
    color: #000;
    padding: 12px 25px;
    /* Larger button */
    margin-left: 10px;
    /* Separate from others */
}

.nav-link[href*="commander"]:hover {
    background-color: #ffcc00;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 183, 0, 0.4);
}

.burger {
    display: none;
    font-size: 2rem;
    color: var(--color-primary);
    background: transparent;
    width: auto;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.burger:hover {
    transform: scale(1.1);
}

/* Mobile Menu - Bottom Sheet Style or Full Overlay */
@media (max-width: 900px) {
    .header {
        height: 75px;
    }
    
    .header.scrolled {
        height: 65px;
    }

    .header, 
    .header.scrolled {
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        border-radius: 0 0 20px 20px !important;
        border-left: none !important;
        border-right: none !important;
        border-top: none !important;
    }

    .header .logo img {
        height: 55px; /* Scrolled from 75px on desktop to 55px on mobile */
    }

    .header.scrolled .logo img {
        height: 45px; /* Scrolled from 50px on desktop to 45px on mobile */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transform: translateY(-100%);
        /* Slide from top */
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        /* Bouncy slide */
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-link {
        width: 100%;
        justify-content: center;
        font-size: 1.5rem;
        padding: 15px;
    }

    .burger {
        display: flex;
        z-index: 1001;
    }
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('assets/image/header-fond-blanc.png') center/cover no-repeat;
    /* Fallback/Base */
    overflow: hidden;
    padding-top: var(--header-height);
}

/* Overlay gradient for text readability if needed, though design asks for clean */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: var(--spacing-md);
    animation: fadeUp 1s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    transform: rotate(-2deg);
    display: inline-block;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-top: var(--spacing-md);
}

/* =========================================
   4. FEATURES / ABOUT SECTION
   ========================================= */
.features {
    background-color: var(--color-bg-alt);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.feature-card {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-sm);
    fill: var(--color-primary);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}

/* =========================================
   5. MENU PREVIEW / SPECIALTIES
   ========================================= */
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-md);
}

.specialty-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-md);
    group: hover;
}

.specialty-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

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

.specialty-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-md);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--color-white);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-normal);
}

.specialty-card:hover .specialty-content {
    transform: translateY(0);
    opacity: 1;
}

.specialty-title {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

/* =========================================
   6. INTERIOR / GALLERY
   ========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: var(--spacing-sm);
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--border-radius);
}

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

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

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

/* =========================================
   7. FOOTER
   ========================================= */
.footer {
    background-color: #222;
    color: #fff;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-col h4 {
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

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

.footer-links a {
    color: #aaa;
}

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

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: var(--spacing-md);
    color: #666;
}

/* =========================================
   8. ANIMATIONS
   ========================================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* =========================================
   9. ORDER PAGE – BADGES & FIXES
   ========================================= */

/* --- Info Badges Row (price + delivery) --- */
.info-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.info-badge i {
    font-size: 1.2rem;
}

.info-badge--savings {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.info-badge--delivery {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    color: #e65100;
    border: 1px solid #ffcc80;
}

/* --- Status Badge (Open/Closed) --- */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 8px 20px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.status-badge .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.status-badge.open {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1.5px solid #66bb6a;
}

.status-badge.open .status-dot {
    background: #43a047;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.status-badge.closed {
    background: #fce4ec;
    color: #c62828;
    border: 1.5px solid #ef5350;
}

.status-badge.closed .status-dot {
    background: #e53935;
}

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

/* --- Select Wrapper Fix --- */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    padding: 12px 35px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-text);
    cursor: pointer;
}

.select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 0.75rem;
    pointer-events: none;
}

.select-wrapper .select-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    pointer-events: none;
}

/* --- Order Form Grid Fix --- */
.order-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
}

@media (max-width: 580px) {
    .order-form-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Form Controls --- */
.form-control {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 12px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-text);
    box-sizing: border-box !important;
    min-width: 0; /* Important for grid items */
}

textarea.form-control {
    padding: 12px 12px 12px 40px;
    resize: vertical;
}

/* --- Bottom Info Section (Parking, Halal + Payment) --- */
.bottom-info-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.bottom-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 24px;
    border-radius: 12px;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease;
}

.bottom-info-item:hover {
    transform: translateY(-2px);
}

.bottom-info-item i {
    font-size: 1.3rem;
}

.bottom-info-item--parking {
    color: #1565c0;
}

.bottom-info-item--parking i {
    color: #1976d2;
}

.bottom-info-item--halal {
    color: #2e7d32;
}

.bottom-info-item--halal i {
    color: #388e3c;
}

/* =========================================
   10. RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 2.5rem;
        --spacing-xl: 4rem;
        --header-height: 70px;
    }

    .header {
        top: 15px;
        width: 92%;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 40px;
        height: var(--header-height);
    }
    
    .nav {
        padding: 0 15px;
    }

    .logo img {
        height: 55px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 75%;
        background: var(--color-bg);
        flex-direction: column;
        padding: var(--spacing-xl) var(--spacing-md);
        transform: translateX(110%);
        visibility: hidden;
        transition: var(--transition-smooth);
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .burger {
        display: block;
        z-index: 1001;
        padding: 5px;
    }

    .hero {
        background-position: right center;
    }

    .hero-content {
        padding-top: 60px;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        margin-left: 0 !important;
        font-size: 0.95rem;
        padding: 12px 20px;
    }

    .cmd-form {
        padding: 18px 14px;
        margin: 15px auto;
    }

    .cmd-form .grid {
        grid-template-columns: 1fr;
    }

    .cmd-actions-bottom {
        flex-direction: column;
        width: 100%;
    }

    .cmd-actions-bottom .btn-primary, 
    .cmd-actions-bottom .pill-btn {
        width: 100%;
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item.large {
        grid-column: span 2;
    }
}

/* ============================================== MENU PAGE ============================================== */


body.menu-page {
    overflow: hidden;
}

body.menu-page header {
    display: none;
}

body.menu-page main {
    padding-top: 0;
}

.menu-gallery {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.menu-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 100px;
    box-sizing: border-box;
}

.menu-slides {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.menu-slide.active {
    display: flex;
    opacity: 1;
    z-index: 1;
}

.menu-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    user-select: none;
    -webkit-user-drag: none;
    display: block;
    margin: 0 auto;
}

/* Bouton fermer */
.menu-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.menu-close:hover,
.menu-close:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    outline: none;
}

.menu-close:active {
    transform: scale(0.95);
}

/* Boutons navigation */
.menu-prev,
.menu-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.menu-prev {
    left: 20px;
}

.menu-next {
    right: 20px;
}

.menu-prev:hover,
.menu-next:hover,
.menu-prev:focus,
.menu-next:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
    outline: none;
}

.menu-prev:active,
.menu-next:active {
    transform: translateY(-50%) scale(0.95);
}

/* Indicateurs */
.menu-indicators {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.menu-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
}

.menu-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.menu-indicator.active {
    background: #fff;
    border-color: #fff;
    width: 32px;
    border-radius: 6px;
}

/* Compteur */
.menu-counter {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    z-index: 10001;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'LemonMilk', sans-serif;
}

.menu-counter .menu-current {
    color: #fff;
    font-weight: 700;
}

.menu-counter .menu-total {
    color: rgba(255, 255, 255, 0.7);
}

/* =========== MENU PAGE - RESPONSIVE =========== */

/* ≤ 992px */
@media (max-width: 992px) {
    .menu-container {
        padding: 60px 15px 120px;
    }

    .menu-prev,
    .menu-next {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .menu-prev {
        left: 15px;
    }

    .menu-next {
        right: 15px;
    }

    .menu-close {
        width: 45px;
        height: 45px;
        font-size: 20px;
        top: 15px;
        right: 15px;
    }
}

/* ≤ 768px - Mobile */
@media (max-width: 768px) {
    .menu-container {
        padding: 50px 10px 180px;
    }

    .menu-slide {
        padding: 0;
    }

    .menu-slide img {
        border-radius: 4px;
        max-width: 100%;
        width: 100%;
    }

    .menu-prev,
    .menu-next {
        width: 44px;
        height: 44px;
        font-size: 18px;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.4);
        top: auto;
        bottom: 70px;
        transform: none;
    }

    .menu-prev {
        left: 50%;
        transform: translateX(calc(-50% - 60px));
    }

    .menu-next {
        right: auto;
        left: 50%;
        transform: translateX(calc(-50% + 60px));
    }

    .menu-prev:hover,
    .menu-next:hover,
    .menu-prev:focus,
    .menu-next:focus {
        transform: translateX(calc(-50% - 60px)) scale(1.1);
    }

    .menu-next:hover,
    .menu-next:focus {
        transform: translateX(calc(-50% + 60px)) scale(1.1);
    }

    .menu-prev:active,
    .menu-next:active {
        transform: translateX(calc(-50% - 60px)) scale(0.95);
    }

    .menu-next:active {
        transform: translateX(calc(-50% + 60px)) scale(0.95);
    }

    .menu-close {
        width: 42px;
        height: 42px;
        font-size: 18px;
        top: 12px;
        right: 12px;
        background: rgba(255, 255, 255, 0.15);
    }

    .menu-indicators {
        bottom: 20px;
        gap: 10px;
        padding: 10px 16px;
    }

    .menu-indicator {
        width: 10px;
        height: 10px;
    }

    .menu-indicator.active {
        width: 28px;
    }

    .menu-counter {
        top: 12px;
        left: 12px;
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* ≤ 560px - Petit mobile */
@media (max-width: 560px) {
    .menu-container {
        padding: 40px 8px 160px;
    }

    .menu-slide {
        padding: 0;
    }

    .menu-slide img {
        max-width: 100%;
        width: 100%;
    }

    .menu-prev,
    .menu-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
        background: rgba(255, 255, 255, 0.25);
        border: 2px solid rgba(255, 255, 255, 0.5);
        top: auto;
        bottom: 60px;
        transform: none;
    }

    .menu-prev {
        left: 50%;
        transform: translateX(calc(-50% - 50px));
    }

    .menu-next {
        right: auto;
        left: 50%;
        transform: translateX(calc(-50% + 50px));
    }

    .menu-prev:hover,
    .menu-next:hover,
    .menu-prev:focus,
    .menu-next:focus {
        transform: translateX(calc(-50% - 50px)) scale(1.1);
    }

    .menu-next:hover,
    .menu-next:focus {
        transform: translateX(calc(-50% + 50px)) scale(1.1);
    }

    .menu-prev:active,
    .menu-next:active {
        transform: translateX(calc(-50% - 50px)) scale(0.95);
    }

    .menu-next:active {
        transform: translateX(calc(-50% + 50px)) scale(0.95);
    }

    .menu-close {
        width: 38px;
        height: 38px;
        font-size: 16px;
        top: 10px;
        right: 10px;
    }

    .menu-indicators {
        bottom: 15px;
        gap: 8px;
        padding: 8px 14px;
    }

    .menu-indicator {
        width: 8px;
        height: 8px;
    }

    .menu-indicator.active {
        width: 24px;
    }

    .menu-counter {
        top: 10px;
        left: 10px;
        padding: 6px 14px;
        font-size: 13px;
    }
}

/* Support du mode plein écran natif */
.menu-gallery:fullscreen {
    background: rgba(0, 0, 0, 0.98);
}

.menu-gallery:-webkit-full-screen {
    background: rgba(0, 0, 0, 0.98);
}

.menu-gallery:-moz-full-screen {
    background: rgba(0, 0, 0, 0.98);
}

.menu-gallery:-ms-fullscreen {
    background: rgba(0, 0, 0, 0.98);
}

/* Animation d'entrée */
@keyframes menuFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.menu-gallery {
    animation: menuFadeIn 0.3s ease-in-out;
}

/* Accessibilité - focus visible */
.menu-close:focus-visible,
.menu-prev:focus-visible,
.menu-next:focus-visible,
.menu-indicator:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.8);
    outline-offset: 3px;
}