/* --- CHARTE GRAPHIQUE CAPRICE KEBAB (Orange Edition) --- */
:root {
    --primary: #ff8c00;       /* Orange vif */
    --primary-dark: #d35400;
    --glow: rgba(255, 140, 0, 0.4);
    
    --bg-dark: #0a0a0a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-main: #ffffff;
    --text-muted: #dcdcdc;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-dark);
    /* Petit dégradé de fond subtil */
    background-image: radial-gradient(circle at top right, #2a1505, transparent 40%),
                      radial-gradient(circle at bottom left, #1a0a00, transparent 40%);
    background-attachment: fixed;
}

/* --- NAVBAR FIXE (Modifié) --- */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 5%;
    
    /* ICI : La navbar suit le défilement */
    position: fixed; 
    top: 0; left: 0; width: 100%; 
    z-index: 1000;
    
    /* Fond sombre et flouté pour la lisibilité */
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.logo {
    font-size: 1.8rem; font-weight: 800; text-transform: uppercase; color: var(--text-main);
    text-shadow: 0 0 10px var(--glow);
}
.logo span { color: var(--primary); }

.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links a {
    text-decoration: none; color: var(--text-main); font-weight: 600; text-transform: uppercase;
    transition: 0.3s; position: relative; font-size: 0.9rem;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
    background: var(--primary); transition: 0.3s;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

/* --- HERO SECTION (Image Modifiée) --- */
.hero {
    height: 100vh;
    display: flex; align-items: center; justify-content: center; text-align: center;
    position: relative;
    
    /* ICI : Ton image "kebabarriereplan.webp" */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8)), 
                url('kebabarriereplan.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Effet parralax sympa */
}

.hero-content h1 {
    font-size: 5rem; line-height: 1.1; margin-bottom: 1rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
    font-weight: 900;
}
.hero-content span { color: var(--primary); }

.hero-content p {
    font-size: 1.5rem; color: var(--text-muted); margin-bottom: 2rem;
    max-width: 600px; margin-left: auto; margin-right: auto;
}

/* BOUTON */
.btn {
    display: inline-block; padding: 1rem 3rem; background: var(--primary); color: white;
    text-decoration: none; border-radius: 50px; font-weight: 700; text-transform: uppercase;
    transition: all 0.3s ease; border: 2px solid transparent;
    box-shadow: 0 0 20px var(--glow);
}
.btn:hover {
    background: transparent; border-color: var(--primary); color: var(--primary);
    box-shadow: 0 0 40px var(--primary); transform: translateY(-3px);
}

/* --- SECTIONS --- */
section { padding: 6rem 5%; } /* Un peu plus de padding car navbar fixe */
.section-title { text-align: center; font-size: 3rem; margin-bottom: 4rem; position: relative; }
.section-title::after {
    content: ''; display: block; width: 100px; height: 4px; background: var(--primary);
    margin: 10px auto 0; border-radius: 2px;
}

/* --- MENU GRID --- */
.menu-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;
}

.menu-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative; overflow: hidden;
}

.menu-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px var(--glow);
    background: rgba(255, 140, 0, 0.05);
}

.menu-card img {
    width: 100%; height: 220px; object-fit: cover; border-radius: 15px; margin-bottom: 1.5rem;
    transition: 0.4s;
}
.menu-card:hover img { transform: scale(1.05); }

.menu-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; font-weight: 700; }
.price { color: var(--primary); font-size: 1.5rem; font-weight: 800; display: block; margin-top: 1rem; }

/* --- FOOTER --- */
footer {
    text-align: center; padding: 2rem; background: #050505; color: #666;
    border-top: 1px solid #222;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 3rem; }
    .navbar { flex-direction: column; gap: 1rem; padding: 1rem; }
}