:root {
    /* Halloween Modern Palette */
    --flame-orange: #ff6f00;
    --pumpkin-orange: #ff9500;
    --dark-purple: #2d1b3d;
    --deep-black: #0a0a0a;
    --fog-white: #f5f5f5;
    --blood-red: #d32f2f;
    --cobweb-gray: #e0e0e0;
    
    /* Glowing Effects */
    --candle-glow: 0 0 30px rgba(255, 149, 0, 0.6), 0 0 60px rgba(255, 149, 0, 0.3);
    --text-glow: 0 0 10px rgba(255, 111, 0, 0.8), 0 0 20px rgba(255, 111, 0, 0.4);
}

/* ===============================
   Fallbacks de NAVBAR (templates legacy)
   =============================== */
/* Top navbar rendue en .navbar-dark.bg-dark */
.navbar.navbar-dark.bg-dark {
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 149, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(74, 20, 140, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, rgba(45,27,61,1) 0%, rgba(30,18,40,1) 100%) !important;
    border-bottom: 3px solid var(--flame-orange) !important;
    box-shadow:
        0 4px 20px rgba(0,0,0,0.8),
        0 0 30px rgba(255,111,0,0.25),
        inset 0 -1px 0 rgba(255,149,0,0.25) !important;
}
.navbar.navbar-dark.bg-dark .navbar-brand,
.navbar.navbar-dark.bg-dark .nav-link {
    color: var(--fog-white) !important;
    text-decoration: none !important;
}
.navbar.navbar-dark.bg-dark .nav-link:hover {
    color: var(--pumpkin-orange) !important;
}

/* Bottom navbar rendue en .navbar-custom */
.navbar.navbar-custom {
    background:
        /* assombrissement global pour lisibilité */
        linear-gradient(0deg, rgba(0,0,0,0.25), rgba(0,0,0,0.25)),
        /* Striures verticales type citrouille */
        repeating-linear-gradient(90deg, rgba(0,0,0,0.15) 0 3px, transparent 3px 30px, rgba(0,0,0,0.15) 30px 33px, transparent 33px 60px),
        /* Texture grainée */
        repeating-linear-gradient(0deg, rgba(255,149,0,0.10) 0 1px, transparent 1px 3px, rgba(255,111,0,0.08) 3px 4px, transparent 4px 6px),
        /* Dégradé citrouille */
        radial-gradient(ellipse at top, #ff9500 0%, #ff7700 50%, #ff6f00 100%) !important;
    border-top: 3px solid #ff4500 !important;
    border-bottom: 2px solid rgba(255,69,0,0.6) !important;
    backdrop-filter: blur(8px);
    box-shadow:
        0 -5px 25px rgba(255,107,53,0.5),
        inset 0 2px 10px rgba(255,149,0,0.3),
        inset 0 -2px 10px rgba(139,69,19,0.4) !important;
}
.navbar.navbar-custom .navbar-brand,
.navbar.navbar-custom .nav-link,
.navbar.navbar-custom a {
    color: #f8f5f0 !important; /* crème lisible sur orange */
    font-family: 'Creepster', cursive !important; /* même esprit que titres */
    letter-spacing: .5px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,.45);
    text-decoration: none !important;
}
.navbar.navbar-custom .nav-link:hover,
.navbar.navbar-custom a:hover { color: var(--pumpkin-orange) !important; }
.navbar.navbar-custom .navbar-toggler { border: 2px solid #1a1a1a !important; }

/* ===============================
   Visibilité des onglets (Bootstrap + fallback)
   =============================== */
/* Bootstrap tabs: cacher tout sauf .active/.show */
.tab-content > .tab-pane { display: none; }
.tab-content > .active,
.tab-content > .show { display: block; }
.collapse:not(.show) { display: none; }

/* Fallback pour structure en .menu-tabs gérée par JS */
.menu-tabs { display: none; }

/* ===================================
   Petite araignée suspendue (CSS only)
   =================================== */
/* Fil texturé qui grandit/rétrécit en synchro */
#app::before {
    content: '';
    position: fixed;
    top: 0;
    right: calc(50% + 62px);
    width: 1px; /* plus fin */
    height: 0;
    background:
        repeating-linear-gradient(180deg,
            rgba(255,255,255,0.40) 0px,
            rgba(255,255,255,0.40) 5px,
            rgba(255,255,255,0.22) 5px,
            rgba(255,255,255,0.22) 8px,
            rgba(255,255,255,0.10) 8px,
            rgba(255,255,255,0.10) 9px
        );
    filter: drop-shadow(0 0 0.3px rgba(255,255,255,0.25)); /* lueur blanche très discrète */
    z-index: 998;
    pointer-events: none;
    animation: alc-thread-grow 14s ease-in-out infinite;
}

/* Petite araignée qui descend et se balance délicatement */
#app::after {
    content: '🕷';
    position: fixed;
    top: -24px;
    right: calc(50% + 56px);
    font-size: 1.25rem;
    filter: grayscale(100%) brightness(1.25);
    opacity: 0;
    z-index: 999;
    pointer-events: none;
    animation: alc-spider-descend 14s ease-in-out infinite, alc-spider-sway 3.8s ease-in-out infinite;
}

@keyframes alc-thread-grow {
    0% { height: 0; right: calc(50% + 62px); opacity: 0; }
    12% { height: 9vh; opacity: 1; }
    52% { height: 38vh; right: calc(50% + 60px); }
    88% { height: 9vh; opacity: 1; }
    100% { height: 0; right: calc(50% + 62px); opacity: 0; }
}

@keyframes alc-spider-descend {
    0% { top: -24px; opacity: 0; }
    12% { top: 9vh; opacity: 0.85; }
    52% { top: 38vh; opacity: 0.9; }
    88% { top: 9vh; opacity: 0.85; }
    100% { top: -24px; opacity: 0; }
}

@keyframes alc-spider-sway {
    0%, 100% { transform: translateX(0) rotate(-3deg); }
    50% { transform: translateX(6px) rotate(3deg); }
}

/* Body - Fond violet Halloween partout */
body {
    font-family: 'Roboto', sans-serif !important;
    background: linear-gradient(180deg, 
        rgba(45, 27, 61, 1) 0%,
        rgba(30, 18, 40, 1) 100%) !important;
    color: var(--fog-white) !important;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Toiles d'araignées supprimées - pas convaincantes */

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Creepster', cursive !important;
    text-shadow: var(--text-shadow);
}

h1 { 
    color: var(--h1-color) !important;
    font-size: 2.5rem;
    animation: title-glow 3s ease-in-out infinite;
}

h2 { 
    color: var(--h2-color) !important;
    font-size: 2rem;
}

h3 { 
    color: var(--h3-color) !important;
    font-size: 1.75rem;
}

h4, h5, h6 { 
    color: var(--ghost-white) !important;
}

p {
    color: var(--p-color) !important;
    line-height: 1.6;
}

@keyframes title-glow {
    0%, 100% {
        text-shadow: 0 0 10px var(--primary-orange), 0 0 20px var(--primary-orange), 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    50% {
        text-shadow: 0 0 20px var(--primary-orange), 0 0 40px var(--primary-orange), 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
}

/* Main Container */
#main-container {
    margin-top: 0 !important;
    margin-bottom: 100px;
    padding: 0 !important;
    max-width: 100% !important;
}

/* Navigation Bars */
/* Header sticky - Texture cohérente Halloween (violet + lueur citrouille) */
.navbar-halloween {
    background:
        /* Lueur horizontale citrouille au centre */
        linear-gradient(90deg,
            transparent 0%,
            rgba(255, 149, 0, 0.06) 15%,
            rgba(255, 149, 0, 0.12) 50%,
            rgba(255, 149, 0, 0.06) 85%,
            transparent 100%
        ),
        /* Léger quadrillage façon toile (très subtil) */
        repeating-linear-gradient(
            45deg, transparent 0 22px, rgba(255,255,255,0.02) 22px 23px
        ),
        repeating-linear-gradient(
            -45deg, transparent 0 22px, rgba(255,255,255,0.02) 22px 23px
        ),
        /* Gradient violet */
        linear-gradient(180deg,
            rgba(45, 27, 61, 1) 0%,
            rgba(30, 18, 40, 1) 100%) !important;
    border-bottom: 3px solid var(--flame-orange);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(255, 111, 0, 0.25),
        inset 0 -1px 0 rgba(255, 149, 0, 0.25);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Titre restaurant avec effet glow */
.navbar-halloween .navbar-brand {
    filter: drop-shadow(0 0 20px rgba(255, 149, 0, 0.6));
}

.navbar-halloween::before {
    display: none;
}

.navbar-halloween-bottom {
    /* Fond orange citrouille avec VRAIE texture */
    background: 
        /* Striures verticales de citrouille */
        repeating-linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.15) 0px,
            rgba(0, 0, 0, 0.15) 3px,
            transparent 3px,
            transparent 30px,
            rgba(0, 0, 0, 0.15) 30px,
            rgba(0, 0, 0, 0.15) 33px,
            transparent 33px,
            transparent 60px
        ),
        /* Texture grainée */
        repeating-linear-gradient(
            0deg,
            rgba(255, 149, 0, 0.1) 0px,
            transparent 1px,
            transparent 3px,
            rgba(255, 111, 0, 0.08) 3px,
            transparent 4px,
            transparent 6px
        ),
        /* Gradient orange citrouille */
        radial-gradient(ellipse at top, 
            #ff9500 0%,
            #ff7700 50%,
            #ff6f00 100%
        );
    
    border-top: 3px solid #ff4500;
    border-bottom: 2px solid rgba(255, 69, 0, 0.6);
    backdrop-filter: blur(10px);
    
    /* Ombre pour effet 3D de citrouille */
    box-shadow: 
        0 -5px 25px rgba(255, 107, 53, 0.5),
        inset 0 2px 10px rgba(255, 149, 0, 0.3),
        inset 0 -2px 10px rgba(139, 69, 19, 0.4);
    
    padding: 0.5rem 0;
    position: relative;
}

/* Effet de striures verticales de citrouille */
.navbar-halloween-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 5%,
        transparent 10%,
        rgba(255, 149, 0, 0.1) 15%,
        transparent 20%
    );
    pointer-events: none;
    z-index: 1;
}

/* Pulsation lumineuse de citrouille */
.navbar-halloween-bottom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 165, 0, 0.3) 0%,
        transparent 70%
    );
    animation: navbar-pumpkin-glow 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes navbar-pumpkin-glow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

.halloween-brand {
    font-family: 'Creepster', cursive !important;
    color: var(--pumpkin-orange) !important;
    font-size: 2rem !important;
    text-shadow: 
        0 0 20px rgba(255, 149, 0, 0.8),
        0 0 40px rgba(255, 111, 0, 0.6),
        2px 2px 8px rgba(0, 0, 0, 0.9);
    letter-spacing: 2px;
}

@keyframes brand-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Navigation Links - Adaptés au fond orange citrouille */
.halloween-nav-link {
    color: #221a1a !important; /* Noir adouci pour raffinement sur orange */
    font-family: 'Creepster', cursive !important; /* Esprit Halloween */
    letter-spacing: 0.5px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.35);
    position: relative;
    z-index: 10;
}

.halloween-nav-link:hover {
    color: #fff !important; /* Blanc au hover */
    background: rgba(139, 69, 19, 0.4); /* Marron citrouille foncé */
    transform: translateY(-2px) scale(1.05);
    text-shadow: 
        0 0 8px rgba(255, 255, 255, 0.8),
        1px 1px 3px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Titre du menu dans la navbar orange */
.halloween-menu-title {
    color: #221a1a !important;
    font-family: 'Creepster', cursive !important;
    letter-spacing: 0.5px;
    font-weight: 700;
    font-size: 1.15rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.45);
    position: relative;
    z-index: 10;
}

/* Toggler pour mobile sur fond orange */
.halloween-toggler {
    border-color: #1a1a1a !important;
    position: relative;
    z-index: 10;
}

.halloween-toggler i {
    color: #1a1a1a !important;
}

.halloween-icon {
    display: inline-block;
    margin-right: 0.5rem;
    animation: icon-bounce 2s ease-in-out infinite;
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Dropdown Halloween - Style terrifiant */
.halloween-dropdown {
    background: linear-gradient(180deg,
        rgba(30, 18, 40, 0.98) 0%,
        rgba(20, 10, 30, 0.98) 100%);
    border: 2px solid var(--flame-orange);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 111, 0, 0.4),
        inset 0 0 30px rgba(255, 111, 0, 0.1);
    border-radius: 8px;
}

.halloween-dropdown-item {
    color: var(--fog-white);
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 12px 20px;
    border-left: 3px solid transparent;
    position: relative;
}

/* Petit emoji Halloween avant chaque item */
.halloween-dropdown-item::before {
    content: '🦇';
    margin-right: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.halloween-dropdown-item:hover::before {
    opacity: 0.7;
}

.halloween-dropdown-item:hover {
    background: rgba(255, 111, 0, 0.2);
    color: var(--pumpkin-orange);
    border-left-color: var(--flame-orange);
    text-shadow: 0 0 10px rgba(255, 111, 0, 0.5);
    transform: translateX(5px);
}

/* Badge wishlist sur fond orange */
.badge-halloween {
    background-color: #8b0000 !important; /* Rouge sang foncé */
    color: #fff !important;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Icône cœur dans la navbar orange */
.navbar-halloween-bottom .fa-heart {
    filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.3));
}

/* Swipe indicator sur fond orange */
.swipe-indicator {
    color: #1a1a1a !important;
    position: relative;
    z-index: 10;
}

/* Badge Halloween - Animation de pulsation */
@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.badge-halloween {
    animation: badge-pulse 1.5s ease-in-out infinite;
}

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

/* Section avec bordure citrouille décorative */
.section-area {
    margin: 0 !important;
    margin-bottom: 0 !important;
    background: rgba(45, 27, 61, 0.95);
    border: none;
    border-bottom: 2px solid rgba(255, 111, 0, 0.3);
    border-radius: 0;
    padding: 2rem 1.5rem;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
}

/* Bordure lumineuse au hover */
.section-area::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--flame-orange), var(--pumpkin-orange), var(--blood-red));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.section-area:hover::before {
    opacity: 0.6;
    animation: border-glow 2s ease-in-out infinite;
}

@keyframes border-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

/* Citrouille intégrée dans le titre au lieu d'un pseudo-élément */
.section-area::after {
    display: none;
}

.section-label {
    color: var(--pumpkin-orange) !important;
    font-family: 'Creepster', cursive !important;
    font-size: 2.5rem !important;
    text-shadow: var(--text-glow);
    margin-bottom: 2rem !important;
    position: relative;
    display: inline-block;
    padding-left: 60px;
}

/* Bougie animée à côté du titre */
.section-label::before {
    content: '🕯️';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    filter: drop-shadow(0 0 15px var(--flame-orange));
    animation: candle-flicker 2s ease-in-out infinite;
}

@keyframes candle-flicker {
    0%, 100% { 
        opacity: 1;
        filter: drop-shadow(0 0 15px var(--flame-orange)) drop-shadow(0 0 30px var(--flame-orange));
    }
    25% { 
        opacity: 0.8;
        filter: drop-shadow(0 0 10px var(--flame-orange)) drop-shadow(0 0 20px var(--flame-orange));
    }
    50% { 
        opacity: 1;
        filter: drop-shadow(0 0 20px var(--flame-orange)) drop-shadow(0 0 40px var(--flame-orange));
    }
    75% { 
        opacity: 0.9;
        filter: drop-shadow(0 0 12px var(--flame-orange)) drop-shadow(0 0 25px var(--flame-orange));
    }
}

.intro-text {
    margin-bottom: 40px !important;
    color: var(--ghost-white) !important;
    font-style: italic;
    opacity: 0.9;
}

.outro-text {
    color: rgba(248, 248, 248, 0.7) !important;
    font-style: italic;
    margin-top: 2rem;
    padding: 15px !important;
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Dishes Table avec séparateurs décoratifs */
.dishes-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
}

.dishes-table tr {
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    border-left: 3px solid transparent;
}

.dishes-table tr:hover {
    background: rgba(255, 111, 0, 0.15);
    transform: translateX(8px);
    border-left-color: var(--flame-orange);
    box-shadow: 
        0 4px 20px rgba(255, 111, 0, 0.3),
        inset 0 0 30px rgba(255, 111, 0, 0.1);
}

.dish-label {
    color: var(--pumpkin-orange) !important;
    font-weight: bold !important;
    font-size: 1.15rem;
    text-shadow: 0 0 5px rgba(255, 149, 0, 0.5);
    transition: all 0.3s ease;
    padding: 15px !important;
    border-radius: 10px 0 0 10px;
    position: relative;
    text-align: left !important;
}

/* Forcer l’alignement gauche du texte du plat (spécificité élevée) */
.dishes-table td:first-child,
.dishes-table .dish-label,
.dishes-table .dish-label *,
.dish .dish-label,
.dish .dish-label * {
    text-align: left !important;
}

/* Petit crâne décoratif */
.dish-label::before {
    content: '💀';
    font-size: 0.8rem;
    margin-right: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dishes-table tr:hover .dish-label::before {
    opacity: 0.6;
}

.dish-description {
    color: rgba(245, 245, 245, 0.85) !important;
    line-height: 1.6;
    padding: 15px !important;
    font-size: 0.95rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    /* Masquer les textes de debug bizarres */
    min-height: 20px;
}

.dish-price {
    font-weight: bold !important;
    color: var(--flame-orange) !important;
    font-size: 1.3rem;
    text-shadow: 0 0 8px rgba(255, 111, 0, 0.6);
    padding: 15px 20px !important;
    border-radius: 0 10px 10px 0;
    background: linear-gradient(90deg, transparent, rgba(255, 111, 0, 0.1));
}

/* Table Styling - Suppression des bordures classiques */
table td {
    vertical-align: middle;
    border: none !important;
    padding: 0 !important;
}

/* Séparateur décoratif entre les plats */
.dish-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pumpkin-orange), transparent);
    opacity: 0.3;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .section-area {
        padding: 1.5rem;
        /* Réduction de l'espace excessif sous la navbar */
        margin-top: 10px !important;
    }
    
    .halloween-brand {
        font-size: 1.5rem !important;
    }
    
    .halloween-menu-title {
        font-size: 1rem !important;
    }
    
    #main-container {
        margin-bottom: 100px;
    }
    
    /* Amélioration tactile mobile */
    .halloween-nav-link {
        padding: 1rem !important;
        min-height: 44px; /* Apple HIG touch target */
    }
    
    .tab_button {
        touch-action: manipulation;
    }
}

@media (max-width: 576px) {
    .section-area {
        padding: 1rem;
    }
    
    .dish-label {
        font-size: 1rem;
    }
    
    .dish-price {
        font-size: 1.1rem;
    }
}

/* ===================================
   DÉCORATIONS HALLOWEEN SUPPLÉMENTAIRES
   =================================== */

/* Fantômes flottants décoratifs */
#main-container::before {
    content: '👻';
    position: fixed;
    top: 20%;
    right: 10%;
    font-size: 3rem;
    opacity: 0.15;
    animation: ghost-float 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

#main-container::after {
    content: '👻';
    position: fixed;
    bottom: 30%;
    left: 5%;
    font-size: 2.5rem;
    opacity: 0.12;
    animation: ghost-float 10s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 1;
}

@keyframes ghost-float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.15;
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(5deg);
        opacity: 0.08;
    }
    50% { 
        transform: translateY(-40px) translateX(-5px) rotate(-5deg);
        opacity: 0.05;
    }
    75% {
        transform: translateY(-20px) translateX(-10px) rotate(5deg);
        opacity: 0.10;
    }
}

/* Chauves-souris décoratives */
.section-area:nth-child(2)::before {
    content: '🦇';
    position: absolute;
    top: 15px;
    right: 30px;
    font-size: 1.5rem;
    opacity: 0.4;
    animation: bat-fly 4s ease-in-out infinite;
    z-index: 2;
}

@keyframes bat-fly {
    0%, 100% { 
        transform: translateX(0px) translateY(0px) rotate(0deg);
    }
    50% { 
        transform: translateX(-20px) translateY(-10px) rotate(-15deg);
    }
}

/* Effet brouillard sur les sections */
.section-area {
    position: relative;
    overflow: hidden;
}

.section-area::before {
    /* Override pour l'effet de brouillard */
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(45, 27, 61, 0.2) 50%, 
        transparent 100%
    );
    animation: fog-move 10s ease-in-out infinite;
}

@keyframes fog-move {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 0.6; transform: translateY(-10px); }
}

/* Amélioration du glow au hover des plats */
.dishes-table tr:hover {
    box-shadow: 
        0 0 20px rgba(255, 111, 0, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Effet particules sur le titre principal */
h1 {
    position: relative;
    animation: title-glow 3s ease-in-out infinite;
}

@keyframes title-glow {
    0%, 100% {
        text-shadow: 
            0 0 10px var(--flame-orange),
            0 0 20px var(--pumpkin-orange),
            0 0 30px var(--flame-orange),
            2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    50% {
        text-shadow: 
            0 0 20px var(--flame-orange),
            0 0 40px var(--pumpkin-orange),
            0 0 60px var(--flame-orange),
            2px 2px 4px rgba(0, 0, 0, 0.8);
    }
}

/* Performance: GPU acceleration pour animations */
.section-area,
.halloween-nav-link,
.halloween-brand,
.pumpkin-decoration,
#main-container::before,
#main-container::after {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Accessibility */
.halloween-nav-link:focus,
.halloween-dropdown-item:focus {
    outline: 3px solid var(--pumpkin-orange);
    outline-offset: 2px;
}

/* ===================================
   Dish options - contraste renforcé
   =================================== */
.dish-options {
    color: rgba(248, 248, 248, 0.92) !important;
    border-left: 2px dotted var(--pumpkin-orange);
    margin-left: 1rem;
    padding-left: 0.75rem;
}

.dish-options, .dish-options * {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65);
}

.dish-options .option,
.dish-options .extra,
.dish-options .supplement,
.dish-options li,
.dish-options span {
    color: rgba(255, 255, 255, 0.95) !important;
}

.dish-options a {
    color: var(--pumpkin-orange) !important;
    text-decoration: none;
}

.dish-options a:hover { color: #ffd199 !important; }

.dish-options .price,
.dish-options .supplement-amount {
    color: var(--flame-orange) !important;
    font-weight: 600;
}

/* Print Styles */
@media print {
    body,
    body::before,
    body::after {
        background: white !important;
        color: black !important;
    }
    
    .navbar,
    .navbar-halloween,
    .navbar-halloween-bottom,
    #halloween-spider,
    #main-container::before,
    #main-container::after {
        display: none !important;
    }
    
    .section-area {
        border: 2px solid black;
        box-shadow: none;
        page-break-inside: avoid;
    }
    
    .section-area::before,
    .section-area::after {
        display: none !important;
    }
}
