/* --- CHARTE GRAPHIQUE ALLO FOOD (Ultra Modern Neon) --- */
:root {
    --bg-dark: #030712;
    --bg-gradient-main: radial-gradient(at top center, #1e1b4b 0%, #030712 80%);
    --neon-green: #00ff88;
    --neon-blue: #00c3ff;
    --gradient-neon: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(20px);
    
    --text-light: #ffffff;
    --text-muted: #94a3b8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { 
    width: 100%; 
    max-width: 100%; 
    overflow-x: hidden; 
    position: relative; 
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark);
    background-image: var(--bg-gradient-main);
    background-attachment: fixed;
    color: var(--text-light);
    line-height: 1.6;
    padding-top: 80px; 
    opacity: 0; transition: opacity 0.5s ease-in-out;
}
body.loaded { opacity: 1; }

h1, h2, h3, h4 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- NAVBAR FIXE --- */
.navbar {
    display: flex; justify-content: space-between; align-items: center; padding: 0 5%; 
    height: 80px;
    background: rgba(3, 7, 18, 0.8);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid;
    border-image: linear-gradient(to right, transparent, var(--neon-green), var(--neon-blue), transparent) 1;
    position: fixed; top: 0; left: 0; z-index: 1000; width: 100%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    font-family: 'Rajdhani', sans-serif; font-weight: 800; font-size: 2.4rem; text-decoration: none; cursor: pointer; z-index: 1002;
    background: var(--gradient-neon); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.5));
    flex-shrink: 0; 
}
.logo span { color: white; -webkit-text-fill-color: white; filter: none; }

.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 2.5rem; }
.nav-links a {
    text-decoration: none; color: var(--text-light); font-weight: 600; font-size: 1.1rem; text-transform: uppercase; transition: all 0.3s ease; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
    background: var(--gradient-neon); transition: width 0.3s ease; box-shadow: 0 0 5px var(--neon-green);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--neon-green); }

/* --- BOUTON MENU MOBILE (CORRIGÉ & BIEN VISIBLE) --- */
.burger { 
    display: none; 
    cursor: pointer; 
    z-index: 1002; 
    position: relative;
}
.burger div { 
    width: 30px; /* Plus large */
    height: 3px; 
    background: var(--neon-green); /* Vert néon ultra visible */
    margin: 6px 0; 
    border-radius: 10px; 
    transition: all 0.3s ease; 
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.8); /* Lueur brillante autour des traits */
}

/* --- HERO SECTION --- */
.hero {
    height: calc(88vh - 80px);
    position: relative;
    display: flex; align-items: center; justify-content: center; text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://images.unsplash.com/photo-1594212699903-ec8a3eca50f5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
    z-index: -1;
}
.hero-bg::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(3, 7, 18, 0.7), rgba(3, 7, 18, 0.95));
}

.hero-content { position: relative; z-index: 2; max-width: 1000px; padding: 20px; }

.hero h1 { 
    font-size: 6rem; line-height: 0.9; margin-bottom: 1rem; color: white;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}
.hero h1 span.highlight {
    background: var(--gradient-neon); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero p { 
    font-size: 1.4rem; font-weight: 500; margin-bottom: 3rem; color: #cbd5e1; 
    display: inline-block; padding: 10px 30px; 
    background: var(--glass-bg); backdrop-filter: var(--glass-blur);
    border-radius: 50px; border: 1px solid var(--glass-border);
}

.cta-btn {
    display: inline-block; padding: 1.2rem 4rem; font-size: 1.2rem; 
    background: var(--gradient-neon); color: #000; text-decoration: none; 
    font-weight: 800; border-radius: 50px; transition: all 0.3s ease; 
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.4); border: 2px solid transparent; 
}
.cta-btn:hover { 
    background: transparent; color: var(--neon-green); 
    border-color: var(--neon-green); box-shadow: 0 0 40px rgba(0, 255, 136, 0.6); 
    transform: scale(1.05); 
}

/* --- SECTIONS --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }
section { padding: 7rem 0; width: 100%; }

.section-title { text-align: center; font-size: 3.5rem; margin-bottom: 4rem; position: relative; }
.section-title span { background: var(--gradient-neon); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-title::after { content: ''; display: block; width: 80px; height: 4px; margin: 15px auto 0; background: var(--gradient-neon); border-radius: 10px; }

/* --- GLASSMORPHISM CARDS --- */
.glass-card {
    background: var(--glass-bg); backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border); border-radius: 25px; padding: 3rem;
    transition: all 0.4s ease; position: relative; overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3), inset 0 0 20px rgba(255,255,255,0.02);
}
.glass-card:hover {
    transform: translateY(-10px); border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1), inset 0 0 30px rgba(0, 255, 136, 0.05);
}
.glass-card::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: 0.5s; pointer-events: none;
}
.glass-card:hover::before { left: 100%; }

/* --- INFOS HORAIRES --- */
.night-info { text-align: center; margin-bottom: 50px; }
.night-clock { font-size: 4rem; background: var(--gradient-neon); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 20px; filter: drop-shadow(0 0 10px rgba(0,255,136,0.3));}
.open-sign { 
    background: var(--gradient-neon); color: black; padding: 10px 25px; 
    font-weight: 800; border-radius: 50px; font-size: 1rem; text-transform: uppercase; 
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5); display: inline-block; margin-top: 20px;
    animation: pulseNeon 2s infinite alternate;
}
@keyframes pulseNeon { from { box-shadow: 0 0 20px rgba(0, 255, 136, 0.5); } to { box-shadow: 0 0 40px rgba(0, 255, 136, 0.8); } }

/* --- SERVICES & MENU --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.service-card { text-align: center; padding: 3rem 2rem; }
.service-card i { font-size: 3rem; background: var(--gradient-neon); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 1.5rem; filter: drop-shadow(0 0 8px rgba(0,255,136,0.3)); }
.service-card h3 { font-size: 1.6rem; margin-bottom: 1rem; }

/* --- EN-TÊTES DE PAGES (MENU & CONTACT) --- */
.menu-header { 
    background: var(--glass-bg); backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(0, 255, 136, 0.3); border-radius: 20px;
    text-align: center; padding: 3rem 1rem; margin: 3rem auto 4rem; max-width: 900px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5), inset 0 0 30px rgba(0, 255, 136, 0.05);
    position: relative; overflow: hidden;
}
.menu-header::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px;
    background: var(--gradient-neon);
}

.category-title { font-size: 2.4rem; margin-bottom: 2.5rem; color: white; display: flex; align-items: center; }
.category-title::before { content: ''; display: inline-block; width: 30px; height: 4px; background: var(--gradient-neon); margin-right: 15px; border-radius: 10px; }

.category-wrapper { margin-bottom: 6rem; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 30px; }

.menu-item { display: flex; justify-content: space-between; align-items: center; padding: 1.8rem; }
.menu-item.featured { border-color: rgba(0, 255, 136, 0.5); box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1); }

.item-content h4 { font-size: 1.4rem; margin-bottom: 8px; color: white; }
.item-content p { font-size: 1rem; color: var(--text-muted); line-height: 1.5; }
.item-price { font-family: 'Rajdhani', sans-serif; font-weight: 800; font-size: 1.4rem; margin-top: 15px; display: block; background: var(--gradient-neon); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.item-img { width: 100px; height: 100px; background: #111; border-radius: 15px; margin-left: 25px; object-fit: cover; flex-shrink: 0; border: 2px solid rgba(255,255,255,0.1); }

/* --- CONTACT & FOOTER --- */
.contact-section { border-top: 1px solid rgba(255,255,255,0.05); position: relative; }
.contact-section::before { content: ''; position: absolute; bottom: 0; left: 20%; width: 60%; height: 300px; background: radial-gradient(ellipse at bottom, rgba(0, 195, 255, 0.15), transparent 70%); pointer-events: none; }

.info-item { text-align: center; }
.info-item i { font-size: 2.5rem; background: var(--gradient-neon); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 20px; }

.hours-table { margin: 0 auto; text-align: left; color: var(--text-muted); width: 100%; max-width: 320px; background: var(--glass-bg); backdrop-filter: var(--glass-blur); border-radius: 20px; padding: 20px; border: 1px solid var(--glass-border); }
.hours-table td { padding: 12px 15px; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 1.1rem; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child { color: white; font-weight: 600; white-space: nowrap; }

footer { background: #020408; text-align: center; padding: 3rem; font-size: 0.9rem; color: #475569; border-top: 1px solid rgba(255,255,255,0.05); }

/* --- ANIMATIONS --- */
.hero-anim { opacity: 0; animation: fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
.hero-anim:nth-child(1) { animation-delay: 0.1s; } 
.hero-anim:nth-child(2) { animation-delay: 0.3s; }
.hero-anim:nth-child(4) { animation-delay: 0.6s; }
.reveal { opacity: 0; transform: translateY(50px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.active { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); scale: 0.95; } to { opacity: 1; transform: translateY(0); scale: 1; } }

/* --- RESPONSIVE MOBILE --- */
@media screen and (max-width: 768px) {
    .navbar { padding: 0 15px; }
    .logo { font-size: 1.6rem; } 
    
    .nav-links {
        position: fixed; 
        top: 80px; left: 0; width: 100%; height: calc(100vh - 80px);
        background: rgba(3, 7, 18, 0.98); backdrop-filter: blur(30px);
        flex-direction: column; align-items: center; padding: 40px 0;
        transform: translateY(-150%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999; border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    }
    .nav-links li { margin: 1.5rem 0; opacity: 1; }
    .nav-active { transform: translateY(0%); }
    .burger { display: block; }
    
    /* Animation et couleur de la croix de fermeture */
    .toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); background: var(--neon-green); }
    .toggle .line2 { opacity: 0; }
    .toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); background: var(--neon-green); }
    
    .hero h1 { font-size: 3.5rem; }
    .menu-header h1 { font-size: 2.2rem !important; white-space: nowrap; }
    .menu-header p { font-size: 0.9rem !important; }
    .section-title { font-size: 2.5rem; }
}