/* Variables & Reset */
:root {
    --red: #E3000F;
    --white: #FFFFFF;
    --black: #111111;
    --grey: #F4F4F4;
    --checker-size: 40px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--white);
    color: var(--black);
    font-family: 'Helvetica Neue', Impact, sans-serif;
    overflow-x: hidden;
}

/* Utils */
.tag { background: var(--black); color: var(--white); padding: 5px 10px; font-size: 0.8rem; font-weight: bold; display: inline-block; margin-bottom: 15px; }
.section-title { text-align: center; font-size: 3rem; text-transform: uppercase; margin-bottom: 50px; font-weight: 900; }

/* Marquee Animé */
.marquee { background: var(--red); color: var(--white); overflow: hidden; white-space: nowrap; padding: 10px 0; font-weight: bold; letter-spacing: 2px; }
.marquee-content span { display: inline-block; animation: scroll-left 15s linear infinite; font-size: 0.9rem; }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Navbar */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; background: var(--white); position: sticky; top: 0; z-index: 100; border-bottom: 3px solid var(--black); }
.logo { font-size: 2.5rem; font-weight: 900; letter-spacing: -2px; }
.logo .dot { color: var(--red); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--black); font-weight: 800; text-transform: uppercase; font-size: 1rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--red); }
.btn-menu { background: var(--red); color: var(--white) !important; padding: 10px 20px; border: 2px solid var(--black); box-shadow: 4px 4px 0px var(--black); transition: transform 0.1s, box-shadow 0.1s; }
.btn-menu:active { transform: translate(4px, 4px); box-shadow: 0px 0px 0px var(--black); }

/* Hero Section */
.hero { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 85vh; text-align: center; background: var(--grey); overflow: hidden; }
.hero-bg-checker { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: repeating-linear-gradient(45deg, rgba(227, 0, 15, 0.03) 25%, transparent 25%, transparent 75%, rgba(227, 0, 15, 0.03) 75%, rgba(227, 0, 15, 0.03)), repeating-linear-gradient(45deg, rgba(227, 0, 15, 0.03) 25%, var(--grey) 25%, var(--grey) 75%, rgba(227, 0, 15, 0.03) 75%, rgba(227, 0, 15, 0.03)); background-position: 0 0, var(--checker-size) var(--checker-size); background-size: calc(2 * var(--checker-size)) calc(2 * var(--checker-size)); z-index: 0; }
.hero-content { position: relative; z-index: 2; margin-top: 5vh; }
.glitch-title { font-size: 8rem; line-height: 0.85; text-transform: uppercase; font-weight: 900; color: var(--black); text-shadow: 5px 5px 0px var(--red); margin-bottom: 20px; }
.hero-content p { font-size: 1.2rem; font-weight: bold; max-width: 500px; margin: 0 auto; }

/* Burger Flottant */
.burger-showcase { position: relative; z-index: 2; margin-top: -30px; }
.floating-burger { width: 100%; max-width: 600px; animation: float 4s ease-in-out infinite; drop-shadow: 0 20px 30px rgba(0,0,0,0.3); }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-20px) rotate(2deg); } }

/* Order Section */
.order-section { padding: 100px 5%; background: var(--white); }
.order-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.order-card { padding: 40px; border: 4px solid var(--black); text-decoration: none; color: var(--black); display: flex; flex-direction: column; justify-content: space-between; min-height: 250px; transition: 0.2s; position: relative; overflow: hidden; }
.order-card h3 { font-size: 2rem; font-weight: 900; margin-bottom: 10px; }
.order-card p { font-weight: 600; }
.order-card .arrow { font-size: 3rem; font-weight: 900; align-self: flex-end; transition: transform 0.3s; }
.order-card:hover .arrow { transform: translateX(10px); }

.order-card.primary { background: var(--red); color: var(--white); border-color: var(--black); box-shadow: 8px 8px 0px var(--black); }
.order-card.primary:hover { transform: translate(-4px, -4px); box-shadow: 12px 12px 0px var(--black); }
.order-card.secondary { background: var(--white); box-shadow: 8px 8px 0px var(--red); }
.order-card.secondary:hover { transform: translate(-4px, -4px); box-shadow: 12px 12px 0px var(--red); }
.order-card.uber { background: #06C167; color: var(--white); box-shadow: 8px 8px 0px var(--black); } /* Vert Uber Eats */

/* Franchise Section */
.franchise-section { padding: 100px 5%; background: var(--black); color: var(--white); }
.container-split { display: grid; grid-template-columns: 1fr 1fr; max-width: 1200px; margin: 0 auto; gap: 50px; align-items: center; }
.text-block h2 { font-size: 4rem; line-height: 1; margin-bottom: 20px; text-transform: uppercase; }
.text-block p { font-size: 1.1rem; line-height: 1.5; margin-bottom: 30px; opacity: 0.9; }
.btn-solid { background: var(--red); color: var(--white); padding: 15px 30px; text-decoration: none; font-weight: 900; font-size: 1.2rem; display: inline-block; transition: 0.2s; border: 2px solid transparent; }
.btn-solid:hover { background: var(--white); color: var(--red); border-color: var(--red); }
.placeholder-image { width: 100%; height: 400px; background: #222; border: 2px dashed #444; display: flex; align-items: center; justify-content: center; }
.placeholder-image img { width: 100%; height: 100%; object-fit: cover; }

/* Pub Section avec Damier pur CSS */
.pub-section { position: relative; padding: 120px 5%; text-align: center; color: var(--black); overflow: hidden; border-top: 10px solid var(--black); }
.checkerboard-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: conic-gradient(var(--red) 90deg, var(--white) 90deg 180deg, var(--red) 180deg 270deg, var(--white) 270deg); background-size: 60px 60px; opacity: 0.1; z-index: 0; }
.pub-content { position: relative; z-index: 2; background: rgba(255, 255, 255, 0.9); padding: 60px; display: inline-block; border: 5px solid var(--black); box-shadow: 15px 15px 0px var(--black); }
.pub-content h2 { font-size: 4rem; font-weight: 900; margin-bottom: 10px; }
.btn-outline-white { border: 4px solid var(--black); background: var(--black); color: var(--white); padding: 15px 40px; text-decoration: none; font-weight: 900; font-size: 1.2rem; display: inline-block; margin-top: 20px; transition: 0.2s; }
.btn-outline-white:hover { background: var(--white); color: var(--black); }

/* Animations Scroll JS */
.reveal { opacity: 0; transform: translateY(50px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Reponsive Mobile */
@media (max-width: 900px) {
    .nav-links { display: none; /* À remplacer par un menu burger sur mobile */ }
    .hero { min-height: 60vh; }
    .glitch-title { font-size: 4.5rem; }
    .order-grid, .container-split { grid-template-columns: 1fr; }
    .text-block h2 { font-size: 3rem; }
    .pub-content { padding: 30px; }
    .pub-content h2 { font-size: 2.5rem; }
}
/* =========================================
   SECTION RÉGIE PUB LOCALE (B2B)
   ========================================= */

.local-ads-section { 
    padding: 100px 5%; 
    background: var(--red); /* Fond rouge pour casser avec les autres sections */
    color: var(--white); 
    border-top: 10px solid var(--black); 
    border-bottom: 10px solid var(--black);
}

.ads-container { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    max-width: 1200px; 
    margin: 0 auto; 
    gap: 60px; 
    align-items: center; 
}

.tag-black { 
    background: var(--black); 
    color: var(--white); 
    padding: 8px 15px; 
    font-weight: 900; 
    display: inline-block; 
    margin-bottom: 25px; 
    font-size: 1rem;
    letter-spacing: 1px;
}

.ads-content h2 { 
    font-size: 4rem; 
    line-height: 0.95; 
    margin-bottom: 25px; 
    text-transform: uppercase; 
    color: var(--black); 
    font-weight: 900; 
    text-shadow: 2px 2px 0px var(--white);
}

.ads-content p { 
    font-size: 1.2rem; 
    margin-bottom: 40px; 
    font-weight: 600; 
    line-height: 1.4;
}

.ads-perks { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    margin-bottom: 40px; 
}

.perk { 
    display: flex; 
    align-items: center; 
    font-size: 1.1rem; 
    background: rgba(0, 0, 0, 0.15); 
    padding: 15px 20px; 
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
}

.perk:hover { 
    border-color: var(--black); 
    background: var(--black); 
    color: var(--white); 
    transform: translateX(15px); 
}

.perk-icon { 
    font-size: 1.8rem; 
    margin-right: 20px; 
}

.btn-solid-black { 
    background: var(--black); 
    color: var(--white); 
    padding: 18px 35px; 
    text-decoration: none; 
    font-weight: 900; 
    font-size: 1.2rem; 
    display: inline-block; 
    transition: 0.2s; 
    border: 4px solid var(--black); 
    box-shadow: 8px 8px 0px var(--white); 
}

.btn-solid-black:hover { 
    transform: translate(-4px, -4px); 
    box-shadow: 12px 12px 0px var(--white); 
}

.mockup-placeholder { 
    width: 100%; 
    height: 450px; 
    background: var(--black); 
    border: 4px dashed var(--white); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 900; 
    font-size: 1.5rem; 
    color: var(--white); 
    transform: rotate(3deg); 
    transition: 0.4s;
    box-shadow: -15px 15px 0px rgba(0,0,0,0.2);
}

.mockup-placeholder:hover { 
    transform: rotate(0deg) scale(1.02); 
    box-shadow: -20px 20px 0px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 900px) {
    .ads-container { grid-template-columns: 1fr; gap: 40px; }
    .ads-content h2 { font-size: 3rem; }
    .mockup-placeholder { height: 300px; }
}
/* Ta navbar (assure-toi d'avoir ces paramètres) */
.navbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 15px 5%; 
    background: var(--white); 
    position: sticky; 
    top: 0; 
    z-index: 100; 
    border-bottom: 3px solid var(--black); 
    height: 80px; /* On fixe une hauteur globale à la navbar */
}

/* Le nouveau conteneur du logo */
.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
    max-height: 60px; /* C'EST LA CLÉ : le logo ne dépassera jamais 50px de haut */
}

/* L'image du logo */
.brand-logo {
    height: 100%;
    width: auto;
    object-fit: contain; /* Garde les proportions exactes sans écraser l'image */
}
/* =========================================
   SECTION ALLERGÈNES (ACCUEIL)
   ========================================= */

.allergen-preview-section {
    padding: 100px 5%;
    background: var(--grey);
    border-top: 10px solid var(--black);
}

.allergen-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 50px;
    background: var(--white);
    border: 5px solid var(--black);
    box-shadow: 15px 15px 0px var(--black);
    padding: 60px;
    position: relative;
}

.allergen-content h2 {
    font-size: 4rem;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 25px;
    color: var(--black);
}

.allergen-content p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.4;
}

.btn-solid-red {
    background: var(--red);
    color: var(--white);
    padding: 18px 35px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    display: inline-block;
    border: 4px solid var(--black);
    box-shadow: 8px 8px 0px var(--black);
    transition: all 0.2s;
}

.btn-solid-red:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px var(--black);
}

.allergen-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Badge rond "Streetwear" */
.allergen-badge {
    background: var(--black);
    color: var(--white);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 12px solid var(--red);
    transform: rotate(-12deg);
    box-shadow: -15px 15px 0px rgba(0,0,0,0.15);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.allergen-badge:hover {
    transform: rotate(0deg) scale(1.05);
}

.allergen-badge span {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
}

.allergen-badge .small {
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: var(--red);
    margin-top: -5px;
}

/* Responsive Mobile */
@media (max-width: 900px) {
    .allergen-container {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        text-align: center;
    }
    
    .allergen-content h2 {
        font-size: 3rem;
    }
    
    .tag-black {
        margin: 0 auto 20px auto;
    }
    
    .allergen-badge {
        width: 220px;
        height: 220px;
        border-width: 8px;
    }
    
    .allergen-badge span {
        font-size: 4.5rem;
    }
    
    .allergen-badge .small {
        font-size: 1.2rem;
    }
}
/* Style pour le conteneur et la vidéo de la franchise */
.video-block { 
    width: 100%; 
    height: 400px; /* Tu peux ajuster la hauteur si besoin */
    overflow: hidden; 
    border: 4px solid var(--white); /* Petit contour blanc stylé */
    box-shadow: 10px 10px 0px rgba(255, 255, 255, 0.2); 
}

.franchise-video { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; /* Permet à la vidéo de remplir le bloc sans se déformer */
    display: block;
}
.video-mockup-wrapper {
    width: 100%;
    height: 450px;
    background: var(--black);
    border: 4px solid var(--white);
    overflow: hidden;
    transform: rotate(3deg);
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -15px 15px 0px rgba(0, 0, 0, 0.2);
}

.video-mockup-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: -20px 20px 0px rgba(0, 0, 0, 0.3);
}

.ads-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Permet à la vidéo de bien remplir le rectangle sans bandes noires */
    display: block;
}

/* Ajustement mobile pour éviter que l'inclinaison pose problème */
@media (max-width: 900px) {
    .video-mockup-wrapper {
        height: 300px;
        transform: rotate(0deg); /* On remet droit sur mobile pour une meilleure lisibilité */
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    }
}
/* =========================================
   SECTION RÉSEAUX SOCIAUX (ACCUEIL)
   ========================================= */

.social-section { 
    position: relative; 
    padding: 120px 5%; 
    text-align: center; 
    color: var(--black); 
    overflow: hidden; 
    border-top: 10px solid var(--black); 
}

.social-content { 
    position: relative; 
    z-index: 2; 
    background: rgba(255, 255, 255, 0.95); 
    padding: 60px; 
    display: inline-block; 
    border: 5px solid var(--black); 
    box-shadow: 15px 15px 0px var(--black); 
    max-width: 800px; 
    width: 100%;
}

.social-content h2 { 
    font-size: 4rem; 
    font-weight: 900; 
    margin-bottom: 15px; 
    text-transform: uppercase; 
    line-height: 1; 
}

.social-content p { 
    font-size: 1.2rem; 
    font-weight: 600; 
    margin-bottom: 40px; 
}

.social-actions { 
    display: flex; 
    gap: 20px; 
    justify-content: center; 
    flex-wrap: wrap; 
}

/* Boutons de base */
.btn-social { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    padding: 15px 30px; 
    text-decoration: none; 
    font-weight: 900; 
    font-size: 1.2rem; 
    border: 4px solid var(--black); 
    transition: all 0.2s; 
    box-shadow: 6px 6px 0px var(--black); 
}

.btn-social:hover { 
    transform: translate(-4px, -4px); 
    box-shadow: 10px 10px 0px var(--black); 
}

/* Style spécifique Instagram */
.btn-insta { 
    background: var(--black); 
    color: var(--white); 
}

.btn-insta:hover { 
    background: var(--white); 
    color: var(--black); 
}

/* Style spécifique Snapchat */
.btn-snap { 
    background: #FFFC00; /* Le vrai jaune Snapchat */
    color: var(--black); 
}

.btn-snap:hover { 
    background: var(--black); 
    color: #FFFC00; 
}

/* Responsive Mobile */
@media (max-width: 900px) {
    .social-section { padding: 80px 5%; }
    .social-content { padding: 40px 20px; }
    .social-content h2 { font-size: 3rem; }
    .btn-social { width: 100%; justify-content: center; }
}
/* =========================================
   SECTION HALAL
   ========================================= */

.halal-section {
    background: var(--black);
    color: var(--white);
    padding: 80px 5%;
    border-top: 5px solid var(--red);
    border-bottom: 5px solid var(--red);
    position: relative;
    overflow: hidden;
}

.halal-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Le Badge Streetwear */
.halal-badge {
    width: 200px;
    height: 200px;
    border: 10px solid var(--red);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--black);
    box-shadow: 0 0 40px rgba(227, 0, 15, 0.3), inset 0 0 20px rgba(227, 0, 15, 0.2);
    flex-shrink: 0;
    transform: rotate(-10deg);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.halal-badge:hover {
    transform: rotate(0deg) scale(1.05);
}

.halal-badge .badge-text {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--white);
    letter-spacing: 2px;
}

.halal-badge .badge-sub {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--red);
    letter-spacing: 4px;
    margin-top: 5px;
}

/* Le Contenu */
.tag-red {
    background: var(--red);
    color: var(--white);
    padding: 8px 15px;
    font-weight: 900;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 1rem;
    letter-spacing: 1px;
}

.halal-content h2 {
    font-size: 3.8rem;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 900;
}

.halal-content p {
    font-size: 1.2rem;
    line-height: 1.5;
    opacity: 0.9;
    font-weight: 600;
    max-width: 600px;
}

/* Responsive Mobile */
@media (max-width: 900px) {
    .halal-section {
        padding: 60px 5%;
    }
    
    .halal-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .tag-red {
        margin: 0 auto 20px auto;
    }
    
    .halal-content h2 {
        font-size: 3rem;
    }
    
    .halal-badge {
        width: 160px;
        height: 160px;
        border-width: 8px;
    }
    
    .halal-badge .badge-text {
        font-size: 2.8rem;
    }
    
    .halal-badge .badge-sub {
        font-size: 1rem;
    }
}