body#antiClickjack { display: none !important; }

:root {
    --bg-dark: #070707;       
    --orange-vif: #FF3E00;    
    --text-white: #ffffff;
    --font-titre: 'Anton', sans-serif;
    --font-texte: 'Inter', sans-serif;
    
    /* Couleurs Néon du Flyer */
    --neon-red: #ff2a2a;
    --neon-yellow: #ffb700;
    --neon-blue: #00d4ff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; user-select: none; -webkit-user-drag: none; }
body { background-color: var(--bg-dark); background-image: radial-gradient(circle at center, #111 0%, #000 100%); color: var(--text-white); font-family: var(--font-texte); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
::selection { background: transparent; color: inherit; }

/* ----- HEADER & HERO ----- */
header { position: fixed; top: 0; width: 100%; z-index: 1000; background-color: rgba(0,0,0,0.9); backdrop-filter: blur(10px); border-bottom: 2px solid var(--text-white); padding: 15px 0; transition: transform 0.3s ease; }
.navbar { display: flex; justify-content: space-between; align-items: center; max-width: 1500px; margin: 0 auto; padding: 0 40px; }
.logo-container { display: flex; align-items: center; gap: 15px; text-decoration: none; }
.header-badge { width: 60px; height: 60px; border-radius: 50%; position: relative; overflow: hidden; border: 3px solid var(--orange-vif); background-color: #000; }
.header-badge img { position: absolute; width: 145%; height: auto; top: 48%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.logo-text { font-family: var(--font-titre); font-size: 2.5rem; color: var(--text-white); text-transform: uppercase; line-height: 1; letter-spacing: 1px; }
.logo-text span { color: var(--orange-vif); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { font-family: var(--font-titre); font-size: 1.6rem; color: var(--text-white); text-decoration: none; text-transform: uppercase; transition: 0.2s; letter-spacing: 1px; }
.nav-links a:hover { color: var(--orange-vif); text-shadow: 0 0 10px var(--orange-vif); }
.btn-commander { background-color: var(--orange-vif); color: var(--bg-dark); font-family: var(--font-titre); font-size: 1.6rem; text-decoration: none; text-transform: uppercase; padding: 10px 30px; border: 3px solid var(--orange-vif); transition: 0.2s; box-shadow: 0 0 15px rgba(255, 62, 0, 0.4); }
.btn-commander:hover { background: var(--text-white); color: var(--bg-dark); border-color: var(--text-white); box-shadow: 0 0 25px rgba(255, 255, 255, 0.6); }

.hero { min-height: 100vh; padding: 150px 5% 80px; display: flex; align-items: center; max-width: 1500px; margin: 0 auto; gap: 40px; }
.hero-content { flex: 1.1; }
.hero-img-container { flex: 0.9; display: flex; justify-content: flex-end; }
.hero-img { width: 100%; max-width: 550px; height: 650px; object-fit: cover; border: 5px solid var(--text-white); pointer-events: none; box-shadow: 15px 15px 0 var(--orange-vif); }
.hero h1 { font-family: var(--font-titre); font-size: clamp(5rem, 11vw, 11rem); line-height: 0.9; text-transform: uppercase; margin-bottom: 20px; letter-spacing: -1px; text-shadow: 0 0 20px rgba(255,255,255,0.2); }
.hero h1 span { color: var(--orange-vif); text-shadow: 0 0 30px rgba(255, 62, 0, 0.5); }
.hero p { font-size: 1.4rem; font-weight: 600; max-width: 500px; line-height: 1.4; margin-bottom: 40px; color: #e2e8f0; }

.marquee-wrapper { background-color: var(--orange-vif); border-top: 4px solid var(--text-white); border-bottom: 4px solid var(--text-white); padding: 15px 0; overflow: hidden; white-space: nowrap; width: 105vw; margin-left: -2.5vw; transform: rotate(-2deg); position: relative; z-index: 10; box-shadow: 0 0 20px rgba(255,62,0,0.5); }
.marquee-wrapper.inverse { background-color: var(--text-white); border-color: var(--orange-vif); transform: rotate(2deg); margin: 80px 0; box-shadow: 0 0 20px rgba(255,255,255,0.3); }
.marquee-wrapper.inverse span { color: var(--orange-vif); }
.marquee-content { display: inline-block; animation: scroll-left 12s linear infinite; }
.marquee-content span { font-family: var(--font-titre); font-size: 4rem; color: var(--bg-dark); text-transform: uppercase; padding: 0 30px; letter-spacing: 2px; }
@keyframes scroll-left { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-50%, 0, 0); } }

/* =========================================================================
   🔥 LE MENU DYNAMIQUE (STYLE FLYER NÉON) 🔥
   ========================================================================= */
#menu { padding: 100px 2% 50px; max-width: 1600px; margin: 0 auto; }

.menu-neon-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr)); gap: 40px; margin-top: 50px; }

.neon-panel { background-color: rgba(10, 10, 10, 0.8); border: 3px solid; border-radius: 15px; padding: 30px 20px; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; overflow: hidden; }
.neon-panel::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: repeating-linear-gradient(transparent, transparent 48px, rgba(255,255,255,0.03) 48px, rgba(255,255,255,0.03) 50px), repeating-linear-gradient(90deg, transparent, transparent 98px, rgba(255,255,255,0.03) 98px, rgba(255,255,255,0.03) 100px); z-index: 0; pointer-events: none; }
.neon-panel:hover { transform: translateY(-10px); }

.panel-red { border-color: var(--neon-red); box-shadow: 0 0 15px rgba(255, 42, 42, 0.2), inset 0 0 20px rgba(255, 42, 42, 0.1); }
.panel-red:hover { box-shadow: 0 0 30px rgba(255, 42, 42, 0.5), inset 0 0 30px rgba(255, 42, 42, 0.2); }
.panel-yellow { border-color: var(--neon-yellow); box-shadow: 0 0 15px rgba(255, 183, 0, 0.2), inset 0 0 20px rgba(255, 183, 0, 0.1); }
.panel-yellow:hover { box-shadow: 0 0 30px rgba(255, 183, 0, 0.5), inset 0 0 30px rgba(255, 183, 0, 0.2); }
.panel-blue { border-color: var(--neon-blue); box-shadow: 0 0 15px rgba(0, 212, 255, 0.2), inset 0 0 20px rgba(0, 212, 255, 0.1); }
.panel-blue:hover { box-shadow: 0 0 30px rgba(0, 212, 255, 0.5), inset 0 0 30px rgba(0, 212, 255, 0.2); }

.panel-title { font-family: var(--font-titre); font-size: 3.5rem; text-align: center; text-transform: uppercase; line-height: 1; margin-bottom: 30px; position: relative; z-index: 2; animation: pulse 2s infinite alternate; }
.panel-red .panel-title { color: #fff; text-shadow: 0 0 10px var(--neon-red), 0 0 20px var(--neon-red); }
.panel-yellow .panel-title { color: #fff; text-shadow: 0 0 10px var(--neon-yellow), 0 0 20px var(--neon-yellow); }
.panel-blue .panel-title { color: #fff; text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue); }
@keyframes pulse { 0% { opacity: 0.8; transform: scale(0.98); } 100% { opacity: 1; transform: scale(1); } }

.menu-item { position: relative; z-index: 2; margin-bottom: 25px; text-align: center; transition: 0.3s; padding: 10px; border-radius: 8px; }
.menu-item:hover { background-color: rgba(255,255,255,0.05); transform: scale(1.05); }
.item-name { font-family: var(--font-titre); font-size: 2.2rem; color: var(--text-white); text-transform: uppercase; letter-spacing: 1px; }
.item-price { font-family: var(--font-titre); font-size: 2rem; }
.panel-red .item-name, .panel-red .item-price { color: var(--neon-red); }
.panel-yellow .item-name, .panel-yellow .item-price { color: var(--neon-yellow); }
.panel-blue .item-name, .panel-blue .item-price { color: var(--neon-blue); }
.item-desc { font-size: 1rem; color: #ccc; font-weight: 600; margin-top: 5px; line-height: 1.3; }
.item-tag { font-size: 0.9rem; color: #fff; background: #333; padding: 2px 8px; border-radius: 4px; display: inline-block; margin-bottom: 5px; }

.flex-list { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 15px; margin-bottom: 30px; position: relative; z-index: 2; }
.flex-item { text-align: center; flex: 1 1 45%; background: rgba(0,0,0,0.5); padding: 10px; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; transition: 0.2s; }
.flex-item:hover { border-color: currentColor; background: rgba(255,255,255,0.1); }
.flex-item-name { font-family: var(--font-titre); font-size: 1.8rem; color: var(--text-white); text-transform: uppercase; line-height: 1.1; }
.flex-item-price { font-weight: 900; font-size: 1.3rem; margin-top: 5px; }

.sides-container { display: flex; justify-content: space-between; gap: 20px; position: relative; z-index: 2; margin-top: 30px; }
.side-col { flex: 1; text-align: left; }
.side-title { font-family: var(--font-titre); font-size: 2.2rem; text-align: center; margin-bottom: 15px; border-bottom: 2px solid; padding-bottom: 5px; }
.panel-yellow .side-title { color: var(--text-white); border-color: var(--neon-yellow); text-shadow: 0 0 5px var(--neon-yellow); }
.side-row { display: flex; justify-content: space-between; font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; padding: 0 10px; }
.side-row span:last-child { font-family: var(--font-titre); color: var(--neon-yellow); font-size: 1.4rem; }

.special-box { border: 2px dashed; padding: 15px; text-align: center; margin-top: 30px; position: relative; z-index: 2; transition: 0.3s; }
.special-box:hover { background: rgba(255,255,255,0.1); }
.panel-red .special-box { border-color: var(--neon-red); }
.panel-yellow .special-box { border-color: var(--neon-yellow); }
.special-title { font-family: var(--font-titre); font-size: 2rem; color: var(--text-white); }
.special-price { font-family: var(--font-titre); font-size: 2rem; }

.extra-row { display: flex; justify-content: space-between; font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; border-bottom: 1px dotted rgba(255,255,255,0.2); padding-bottom: 5px; }
.panel-blue .extra-row span:last-child { font-family: var(--font-titre); color: var(--neon-blue); }
.sub-section-title { font-family: var(--font-titre); font-size: 2.5rem; text-align: center; margin: 40px 0 20px; text-transform: uppercase; position: relative; z-index: 2; }
.panel-blue .sub-section-title { color: #fff; text-shadow: 0 0 10px var(--neon-blue); }

/* Emphase visuelle émojis */
.emoji-icon { text-shadow: none; font-size: 1.2em; vertical-align: middle; margin: 0 5px; display: inline-block; }

/* ----- CONCEPT & FOOTER ----- */
section { padding: 100px 5%; max-width: 1500px; margin: 0 auto; }
.actus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.actu-img { width: 100%; height: 500px; object-fit: cover; border: 4px solid var(--text-white); pointer-events: none; }
.actu-texte h3 { font-family: var(--font-titre); font-size: 4rem; color: var(--orange-vif); text-transform: uppercase; line-height: 1; margin-bottom: 20px; }
.actu-texte p { font-size: 1.3rem; font-weight: 600; line-height: 1.5; margin-bottom: 20px; color: #e2e8f0; }

footer { padding: 100px 5% 50px; border-top: 4px solid #333; background-color: var(--bg-dark); text-align: center; }
.footer-badge { width: 180px; height: 180px; border-radius: 50%; position: relative; overflow: hidden; border: 4px solid var(--orange-vif); margin: 0 auto 30px; }
.footer-badge img { position: absolute; width: 145%; height: auto; top: 48%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.footer-nom { font-family: var(--font-titre); font-size: clamp(5rem, 12vw, 12rem); line-height: 0.8; margin-bottom: 60px; }
.footer-nom span { color: var(--orange-vif); }
.footer-infos { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 40px; max-width: 1000px; margin: 0 auto; text-align: center; }
.footer-col h4 { font-family: var(--font-titre); font-size: 2.5rem; text-transform: uppercase; margin-bottom: 15px; color: var(--orange-vif); }
.footer-col p { font-weight: 600; font-size: 1.2rem; margin-bottom: 10px; color: var(--text-white); }
        
/* ----- ADAPTATION MOBILE AMÉLIORÉE ----- */
@media (max-width: 968px) {
    .hero { flex-direction: column; text-align: center; padding-top: 220px; }
    .hero-img-container { justify-content: center; }
    .hero-img { height: 400px; }
    
    /* Restructuration de la navigation mobile */
    .navbar { flex-direction: column; text-align: center; gap: 15px; padding: 0 15px; }
    .nav-links { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; margin-top: 15px; }
    .btn-commander { margin-top: 10px; }
    header { padding: 20px 0; }
    
    .actus-grid { grid-template-columns: 1fr; }
    .marquee-wrapper, .marquee-wrapper.inverse { transform: rotate(0); margin-left: -5vw; width: 110vw; }
    .sides-container { flex-direction: column; }

    /* Adaptation des couleurs pour les nouveaux panneaux de la grille */
.panel-red .extra-row span:last-child { font-family: var(--font-titre); color: var(--neon-red); }
.panel-yellow .extra-row span:last-child { font-family: var(--font-titre); color: var(--neon-yellow); }
.panel-red .sub-section-title { color: #fff; text-shadow: 0 0 10px var(--neon-red); }
.panel-yellow .sub-section-title { color: #fff; text-shadow: 0 0 10px var(--neon-yellow); }
}