/* PAGE HEADER */
.page-header {
    background-color: #050a18; 
    background-image: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('../img/fond-location.jpg');
    background-size: cover;
    background-position: center;
    padding: 180px 20px 80px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.ph-title { 
    font-family: 'Oswald', sans-serif; 
    font-size: 3.5rem; 
    text-transform: uppercase; 
    margin-bottom: 20px; 
    line-height: 1; 
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.ph-subtitle { 
    font-family: 'Manrope', sans-serif; 
    font-size: 1.1rem; 
    color: #e0e0e0; 
    max-width: 600px; 
    margin: 0 auto; 
    font-weight: 300;
}

/* CATALOGUE GRID */
.catalog-section { 
    padding: 100px 50px; 
    background: white; 
}

.catalog-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 40px; 
    max-width: 1400px; 
    margin: 0 auto; 
}

.cat-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.cat-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
}

.cat-img { 
    height: 250px; 
    background: #111; 
    position: relative; 
    overflow: hidden; 
}

.cat-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: 0.5s; 
}

.cat-card:hover .cat-img img { 
    transform: scale(1.05); 
}

.cat-content { 
    padding: 30px; 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    text-align: left; 
}

.cat-title { 
    font-family: 'Oswald', sans-serif; 
    font-size: 1.5rem; 
    text-transform: uppercase; 
    margin-bottom: 15px; 
    color: #050a18; 
}

.cat-desc { 
    font-size: 0.95rem; 
    color: #666; 
    line-height: 1.6; 
    margin-bottom: 20px; 
    flex: 1; 
}

/* --- BOUTONS (Manrope) --- */
.btn-card {
    display: block !important;
    width: 100%;
    padding: 15px 0;
    background-color: #050a18;
    color: white !important;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    margin-top: auto;
    cursor: pointer;
}

.btn-card:hover {
    background-color: var(--blue);
    border-color: var(--blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 92, 169, 0.2);
}

/* BANDEAU AVANTAGES */
.features-strip { 
    background: #f4f4f4; 
    padding: 80px 20px; 
    text-align: center; 
    border-top: 1px solid #eee;
}

.features-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.feat-item i { 
    font-size: 2.5rem; 
    color: var(--blue); 
    margin-bottom: 20px; 
}

.feat-item h4 { 
    font-family: 'Syne', sans-serif; 
    text-transform: uppercase; 
    font-weight: 700; 
    margin-bottom: 10px; 
    color: #050a18;
}

.feat-item p { 
    font-size: 0.95rem; 
    color: #666; 
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .features-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .ph-title { font-size: 2.5rem; }
    .catalog-section { padding: 60px 20px; }
}

@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .ph-title { font-size: 2rem; }
} 

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s var(--transition); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* HERO HOME */
.hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; color: white; background: #000; }
.hero-video-bg { position: absolute; inset: 0; opacity: 0.6; background-size: cover; background-position: center; }
.hero-content { position: relative; z-index: 2; max-width: 1200px; padding: 0 20px; padding-bottom: 50px; }
.hero-tags { display: flex; gap: 15px; justify-content: center; margin-bottom: 25px; }
.h-tag-black { border: 1px solid rgba(255, 255, 255, 0.2); padding: 8px 16px; border-radius: 4px; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; background: rgba(0,0,0,0.8); color: white; transition: 0.3s; }
.h-tag-white { border: 1px solid rgba(255, 255, 255, 0.8); padding: 8px 16px; border-radius: 4px; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; background: white; color: var(--navy); transition: 0.3s; }
.hero h1 { font-family: 'Oswald'; font-size: 5.5rem; line-height: 0.95; text-transform: uppercase; margin-bottom: 30px; text-shadow: 0 20px 60px rgba(0, 0, 0, 0.6); }
.hero-services-clean { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 50px; }
.hs-item { background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); padding: 12px 25px; border-radius: 50px; font-size: 0.9rem; font-weight: 700; letter-spacing: 1px; color: #ffffff; transition: 0.3s; }
.hs-item:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-3px); }
.btn-hero-round { background: white; color: var(--navy); padding: 18px 45px; border-radius: 50px; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; display: inline-block; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3); transition: all 0.3s ease; }
.btn-hero-round:hover { transform: translateY(-3px); box-shadow: 0 15px 50px rgba(255, 255, 255, 0.2); }

/* MANIFESTO */
.manifesto { padding: 120px 50px; background: white; text-align: center; }
.manifesto-content { max-width: 1000px; margin: 0 auto; }
.manifesto-label { display: block; font-family: 'Manrope', sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 4px; color: #999; margin-bottom: 20px; }
.manifesto-text { font-family: 'Oswald', sans-serif; font-size: 3rem; line-height: 1.2; color: var(--navy); font-weight: 400; margin-bottom: 30px; text-transform: uppercase; }
.brand-vis { font-weight: 700; color: var(--text); }
.brand-led { font-weight: 700; color: var(--blue); }
.manifesto-sub { display: inline-block; font-family: 'Manrope', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--blue); border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 15px 30px; }

/* SERVICES STRIP */
.services-strip { background: #02040a; color: white; padding: 100px 0; position: relative; z-index: 10; }
.services-header { text-align: center; margin-bottom: 70px; }
.services-header h2 { font-family: 'Syne', sans-serif; font-size: 2rem; text-transform: uppercase; letter-spacing: -1px; font-weight: 700; margin-bottom: 20px; color: white; }
.header-line { width: 60px; height: 4px; background-color: var(--blue); margin: 0 auto; border-radius: 2px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1400px; margin: 0 auto; padding: 0 50px; }
.srv-item { background: #050a18; border: 1px solid rgba(255,255,255,0.08); padding: 50px 30px; transition: 0.4s; display: flex; flex-direction: column; align-items: flex-start; border-radius: 4px; height: 100%; }
.srv-item:hover { border-color: var(--blue); transform: translateY(-5px); background: #080d1c; }
.srv-icon { font-size: 2rem; color: var(--blue); margin-bottom: 30px; display: block; }
.srv-title { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; text-transform: uppercase; margin-bottom: 15px; letter-spacing: 0.5px; color: white; }
.srv-desc { font-family: 'Manrope', sans-serif; font-size: 0.95rem; color: #94a3b8; line-height: 1.6; font-weight: 400; }

/* PROJECTS ZIGZAG */
.projects-container { background: white; padding-bottom: 0; }
.project-block { display: flex; min-height: 85vh; background: white; border-bottom: none; margin-bottom: 0; }
.project-block:nth-child(even) { flex-direction: row-reverse; }
.project-visual { flex: 1.2; position: relative; overflow: hidden; }
.project-visual img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block;
    transition: transform 1s ease; 
}
.project-block:hover .project-visual img { transform: scale(1.05); }
.project-content { flex: 0.8; padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }
.client-logo-box {
    height: 90px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.client-logo-box img {
    height: 100%;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: 0.3s;
}
.project-block:hover .client-logo-box img { filter: grayscale(0); }
.p-title { font-family: 'Oswald'; font-size: 3rem; line-height: 1; margin-bottom: 25px; color: var(--text); text-transform: uppercase; }
.p-desc { color: #555; line-height: 1.7; margin-bottom: 20px; font-size: 1rem; }
.p-location { display: flex; align-items: center; gap: 10px; color: var(--blue); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; margin-bottom: 25px; font-family: 'Syne', sans-serif; }
.project-tag { display: inline-block; background: #f4f4f4; padding: 6px 14px; font-family: 'Syne', sans-serif; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: var(--navy); border-radius: 4px; margin-bottom: 30px; width: fit-content; }
.btn-black { display: inline-block; padding: 15px 35px; background: #111; color: white; border-radius: 4px; font-weight: 700; text-transform: uppercase; font-size: 0.75rem; text-decoration: none; transition: 0.3s; width: fit-content; letter-spacing: 1px; }
.btn-black:hover { background: var(--blue); }

.projects-cta-band { background: #111111; padding: 40px 0; text-align: center; margin-top: -1px; position: relative; z-index: 2; }
.btn-view-all { display: inline-block; padding: 15px 40px; background: transparent; color: white; border: 1px solid rgba(255,255,255,0.3); border-radius: 4px; font-family: 'Syne', sans-serif; font-weight: 700; text-transform: uppercase; font-size: 0.8rem; text-decoration: none; transition: 0.3s; letter-spacing: 1px; }
.btn-view-all:hover { background: white; color: var(--navy); border-color: white; }

/* SECTORS IMAGES */
.sectors-img-section { padding: 100px 50px; background: white; }
.sectors-img-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1400px; margin: 0 auto; }
.img-card { position: relative; height: 450px; text-decoration: none; overflow: hidden; border-radius: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; }
.img-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s ease; z-index: 1; }
.img-card::after { 
    content:''; 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.2) 100%);
    z-index: 2; 
    transition: background 0.5s ease;
}

.img-card:hover::after {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
}
.ic-content { position: relative; z-index: 3; color: white; }
.ic-title { font-family: 'Oswald', sans-serif; font-size: 2rem; text-transform: uppercase; line-height: 1; margin-bottom: 20px; }
.ic-link { font-family: 'Manrope', sans-serif; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: white; display: inline-flex; align-items: center; gap: 10px; }
.ic-link i { transition: 0.3s; color: var(--blue); }
.img-card:hover .ic-link i { transform: translateX(5px); color: white; }

/* AJOUT POUR MOBILE */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; 
        gap: 30px; 
    }
    .srv-item {
        align-items: center;
        text-align: center;
        padding-left: 30px; 
        padding-right: 30px;
    } 
}/* ... LE RESTE DE TON CSS EST AU DESSUS ... */

/* AJOUT POUR LA PAGE VENTE */
.page-header.header-vente {
    /* Change l'URL ci-dessous par ton image de fond pour la page vente */
    background-image: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('../img/fond-vente.jpg');
}/* =========================================
   STYLE SPECIFIQUE PAGE FAN ZONE (DARK MODE)
   ========================================= */

/* On force le fond noir pour toute la page Fan Zone */
.fanzone-page {
    background-color: #050a18;
    color: white;
}

/* HERO FAN ZONE */
.fz-hero {
    height: 85vh; /* Prend presque tout l'écran */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Mets une belle photo de foule/stade en fond ici */
    background-image: url('../img/fanzone/hero-fanzone.jpg'); 
    background-size: cover;
    background-position: center;
}

.fz-overlay {
    position: absolute;
    inset: 0;
    /* Dégradé sombre pour que le texte ressorte */
    background: linear-gradient(to bottom, rgba(5,10,24,0.3), rgba(5,10,24,1));
}

.fz-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.fz-tag {
    display: inline-block;
    background: var(--blue);
    color: white;
    padding: 8px 16px;
    text-transform: uppercase;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.fz-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Effet de contour sur le texte "du direct" */
.text-stroke {
    color: transparent;
    -webkit-text-stroke: 2px white;
}

.fz-hero p {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.btn-fz-hero {
    display: inline-block !important;
    width: auto;
    padding: 15px 40px;
    background: white;
    color: #050a18 !important;
    border: none;
}
.btn-fz-hero:hover {
    background: var(--blue);
    color: white !important;
}

/* SECTION CONCEPT (Split) */
.fz-split {
    display: flex;
    min-height: 600px;
    background: #050a18;
}

.fz-split-img {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.fz-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fz-split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fz-split-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 30px;
}

.fz-split-content p {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.fz-list {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.fz-list li {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.fz-list li i {
    color: var(--blue);
}

/* PILIERS (ICONES) */
.fz-pillars {
    background: #080d1c; /* Un peu plus clair que le fond noir */
    padding: 100px 50px;
}

.fz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.fz-item {
    text-align: center;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.05);
    background: #050a18;
    transition: 0.3s;
}

.fz-item:hover {
    border-color: var(--blue);
    transform: translateY(-10px);
}

.fz-item i {
    font-size: 3rem;
    color: var(--blue);
    margin-bottom: 25px;
}

.fz-item h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.fz-item p {
    color: #888;
    line-height: 1.5;
}

/* BANDEAU SECURITE */
.fz-safety {
    padding: 80px 20px;
    background: var(--blue);
    text-align: center;
    color: white;
}

.fz-safety-content {
    max-width: 800px;
    margin: 0 auto;
}

.fz-safety h2 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.fz-safety p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* RESPONSIVE FAN ZONE */
@media (max-width: 1024px) {
    .fz-hero h1 { font-size: 3.5rem; }
    .fz-split { flex-direction: column; }
    .fz-split-img { height: 300px; flex: none; }
    .fz-grid { grid-template-columns: 1fr; }
}/* ... LE CODE PRECEDENT EST AU DESSUS ... */

/* --- OVERRIDE POUR LE SLIDESHOW SUR LA PAGE FAN ZONE (DARK MODE) --- */
.fanzone-page .installations-section.fz-gallery-section {
    background-color: #050a18; /* Fond noir */
    border-top: 1px solid rgba(255,255,255,0.1); /* Ligne de séparation subtile */
    padding-bottom: 50px;
}

.fanzone-page .gallery-header {
    background-color: #050a18; /* Fond noir pour le titre */
    border-bottom: none;
}

.fanzone-page .gallery-header h3 {
    color: white; /* Titre en blanc */
}

/* On s'assure que les images gardent leur aspect mais sans bordure blanche moche */
.fanzone-page .gallery-item {
    border-right: 1px solid #000;
}/* =======================================================
   A COLLER A LA FIN DE TON FICHIER PAGES.CSS
   ======================================================= */

/* 1. MOTEUR DU SLIDESHOW (Si jamais il a sauté avec le bug) */
.installations-section { 
    background: white; 
    padding: 0; 
    overflow: hidden; 
}

.gallery-header { 
    background: #111; 
    text-align: center; 
    margin-bottom: 0; 
    padding: 25px 50px; 
}

.gallery-header h3 { 
    color: white; 
    font-family: 'Syne', sans-serif; 
    font-size: 1.5rem; 
    text-transform: uppercase; 
    font-weight: 700; 
    margin: 0; 
}

.gallery-track { 
    display: flex; 
    gap: 0; 
    width: max-content; 
    will-change: transform; 
    animation: scrollGallery 40s linear infinite alternate; 
}

.gallery-item { 
    width: 400px; 
    height: 350px; 
    flex-shrink: 0; 
    border-radius: 0; 
    overflow: hidden; 
    position: relative; 
    cursor: pointer; 
}

.gallery-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: 0.5s; 
}

.gallery-item:hover img { 
    transform: scale(1.05); 
}

.gallery-overlay { 
    position: absolute; 
    inset: 0; 
    background: rgba(0,78,162,0.3); 
    opacity: 0; 
    transition: 0.3s; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.gallery-item:hover .gallery-overlay { 
    opacity: 1; 
}

.gallery-overlay i { 
    color: white; 
    font-size: 2rem; 
}

@keyframes scrollGallery { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(calc(-100% + 100vw)); } 
}

/* 2. STYLE FAN ZONE (DARK MODE & OVERRIDES) */
.fanzone-page {
    background-color: #050a18;
    color: white;
}

/* Force le slideshow en mode sombre sur la page Fan Zone */
.fanzone-page .installations-section.fz-gallery-section {
    background-color: #050a18;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 50px;
}

.fanzone-page .gallery-header {
    background-color: #050a18;
    border-bottom: none;
}

.fanzone-page .gallery-header h3 {
    color: white;
}

.fanzone-page .gallery-item {
    border-right: 1px solid #000;
}

/* Utilitaires spécifiques Fan Zone */
.nav-active {
    color: var(--blue) !important;
}

.text-highlight {
    color: var(--blue);
}

.text-highlight-big {
    font-family: 'Syne', sans-serif; 
    color: var(--blue); 
    font-size: 2.5rem;
}

.text-stroke {
    color: transparent;
    -webkit-text-stroke: 2px white;
}

/* Hero Fan Zone */
.fz-hero {
    height: 85vh; 
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../img/fanzone/hero-fanzone.jpg'); 
    background-size: cover;
    background-position: center;
}

.fz-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5,10,24,0.3), rgba(5,10,24,1));
}

.fz-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.fz-tag {
    display: inline-block;
    background: var(--blue);
    color: white;
    padding: 8px 16px;
    text-transform: uppercase;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.fz-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.fz-hero p {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.btn-fz-hero {
    display: inline-block !important;
    width: auto;
    padding: 15px 40px;
    background: white;
    color: #050a18 !important;
    border: none;
}
.btn-fz-hero:hover {
    background: var(--blue);
    color: white !important;
}

/* Section Split */
.fz-split {
    display: flex;
    min-height: 600px;
    background: #050a18;
}

.fz-split-img {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.fz-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fz-split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fz-split-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 30px;
}

.fz-split-content p {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.fz-list {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.fz-list li {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.fz-list li i {
    color: var(--blue);
}

/* Piliers */
.fz-pillars {
    background: #080d1c; 
    padding: 100px 50px;
}

.fz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.fz-item {
    text-align: center;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.05);
    background: #050a18;
    transition: 0.3s;
}

.fz-item:hover {
    border-color: var(--blue);
    transform: translateY(-10px);
}

.fz-item i {
    font-size: 3rem;
    color: var(--blue);
    margin-bottom: 25px;
}

.fz-item h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.fz-item p {
    color: #888;
    line-height: 1.5;
}

/* Sécurité */
.fz-safety {
    padding: 80px 20px;
    background: var(--blue);
    text-align: center;
    color: white;
}

.fz-safety-content {
    max-width: 800px;
    margin: 0 auto;
}

.fz-safety h2 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.fz-safety p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
    .fz-hero h1 { font-size: 3.5rem; }
    .fz-split { flex-direction: column; }
    .fz-split-img { height: 300px; flex: none; }
    .fz-grid { grid-template-columns: 1fr; }
}/* =======================================================
   A COLLER A LA FIN DE PAGES.CSS - NE PAS ECORCHER
   ======================================================= */

/* --- 1. MOTEUR DU SLIDESHOW (Importé de Home pour Pages) --- */
.installations-section { 
    background: white; 
    padding: 0; 
    overflow: hidden; 
}

.gallery-header { 
    background: #111; 
    text-align: center; 
    margin-bottom: 0; 
    padding: 25px 50px; 
}

/* TYPO EXACTE DE INDEX.HTML (Syne) */
.gallery-header h3 { 
    color: white; 
    font-family: 'Syne', sans-serif; 
    font-size: 1.5rem; 
    text-transform: uppercase; 
    font-weight: 700; 
    margin: 0; 
}

.gallery-track { 
    display: flex; 
    gap: 0; 
    width: max-content; 
    will-change: transform; 
    animation: scrollGallery 40s linear infinite alternate; 
}

.gallery-item { 
    width: 400px; 
    height: 350px; 
    flex-shrink: 0; 
    border-radius: 0; 
    overflow: hidden; 
    position: relative; 
    /* Pas de cursor pointer, pas de zoom */
}

.gallery-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

@keyframes scrollGallery { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(calc(-100% + 100vw)); } 
}

/* --- 2. STYLE FAN ZONE (DARK MODE) --- */
.fanzone-page {
    background-color: #050a18;
    color: white;
}

/* Modification spécifique pour le slideshow sur fond noir */
.fanzone-page .installations-section.fz-gallery-section {
    background-color: #050a18;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 50px;
}

.fanzone-page .gallery-header {
    background-color: #050a18;
    border-bottom: none;
}

/* Hero Fan Zone */
.fz-hero {
    height: 85vh; 
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../img/fanzone/hero-fanzone.jpg'); 
    background-size: cover;
    background-position: center;
}

.fz-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5,10,24,0.3), rgba(5,10,24,1));
}

.fz-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.fz-tag {
    display: inline-block;
    background: var(--blue);
    color: white;
    padding: 8px 16px;
    text-transform: uppercase;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.fz-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.text-stroke {
    color: transparent;
    -webkit-text-stroke: 2px white;
}

.fz-hero p {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.btn-fz-hero {
    display: inline-block !important;
    width: auto;
    padding: 15px 40px;
    background: white;
    color: #050a18 !important;
    border: none;
}
.btn-fz-hero:hover {
    background: var(--blue);
    color: white !important;
}

/* Section Concept (Split) */
.fz-split {
    display: flex;
    min-height: 600px;
    background: #050a18;
}

.fz-split-img {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.fz-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fz-split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fz-split-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 30px;
}

.fz-split-content p {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.fz-list {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.fz-list li {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.fz-list li i {
    color: var(--blue);
}

/* Piliers */
.fz-pillars {
    background: #080d1c; 
    padding: 100px 50px;
}

.fz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.fz-item {
    text-align: center;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.05);
    background: #050a18;
    transition: 0.3s;
}

.fz-item:hover {
    border-color: var(--blue);
    transform: translateY(-10px);
}

.fz-item i {
    font-size: 3rem;
    color: var(--blue);
    margin-bottom: 25px;
}

.fz-item h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.fz-item p {
    color: #888;
    line-height: 1.5;
}

/* Sécurité */
.fz-safety {
    padding: 80px 20px;
    background: var(--blue);
    text-align: center;
    color: white;
}

.fz-safety-content {
    max-width: 800px;
    margin: 0 auto;
}

.fz-safety h2 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.fz-safety p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Utilitaires HTML remplacés */
.nav-active { color: var(--blue) !important; }
.text-highlight { color: var(--blue); }
.text-highlight-big { font-family: 'Syne', sans-serif; color: var(--blue); font-size: 2.5rem; }

/* Responsive Fan Zone */
@media (max-width: 1024px) {
    .fz-hero h1 { font-size: 3.5rem; }
    .fz-split { flex-direction: column; }
    .fz-split-img { height: 300px; flex: none; }
    .fz-grid { grid-template-columns: 1fr; }
}/* =======================================================
   A COLLER A LA FIN DE PAGES.CSS - NE PAS ECORCHER
   ======================================================= */

/* --- 1. MOTEUR DU SLIDESHOW (Importé de Home pour Pages) --- */
.installations-section { 
    background: white; 
    padding: 0; 
    overflow: hidden; 
}

.gallery-header { 
    background: #111; 
    text-align: center; 
    margin-bottom: 0; 
    padding: 25px 50px; 
}

/* TYPO EXACTE DE INDEX.HTML (Syne) */
.gallery-header h3 { 
    color: white; 
    font-family: 'Syne', sans-serif; 
    font-size: 1.5rem; 
    text-transform: uppercase; 
    font-weight: 700; 
    margin: 0; 
}

.gallery-track { 
    display: flex; 
    gap: 0; 
    width: max-content; 
    will-change: transform; 
    animation: scrollGallery 40s linear infinite alternate; 
}

.gallery-item { 
    width: 400px; 
    height: 350px; 
    flex-shrink: 0; 
    border-radius: 0; 
    overflow: hidden; 
    position: relative; 
    /* Pas de cursor pointer, pas de zoom */
}

.gallery-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

@keyframes scrollGallery { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(calc(-100% + 100vw)); } 
}

/* --- 2. STYLE FAN ZONE (DARK MODE) --- */
.fanzone-page {
    background-color: #050a18;
    color: white;
}

/* Modification spécifique pour le slideshow sur fond noir */
.fanzone-page .installations-section.fz-gallery-section {
    background-color: #050a18;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 50px;
}

.fanzone-page .gallery-header {
    background-color: #050a18;
    border-bottom: none;
}

/* Hero Fan Zone */
.fz-hero {
    height: 85vh; 
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../img/fanzone/hero-fanzone.jpg'); 
    background-size: cover;
    background-position: center;
}

.fz-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5,10,24,0.3), rgba(5,10,24,1));
}

.fz-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.fz-tag {
    display: inline-block;
    background: var(--blue);
    color: white;
    padding: 8px 16px;
    text-transform: uppercase;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.fz-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.text-stroke {
    color: transparent;
    -webkit-text-stroke: 2px white;
}

.fz-hero p {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.btn-fz-hero {
    display: inline-block !important;
    width: auto;
    padding: 15px 40px;
    background: white;
    color: #050a18 !important;
    border: none;
}
.btn-fz-hero:hover {
    background: var(--blue);
    color: white !important;
}

/* Section Concept (Split) */
.fz-split {
    display: flex;
    min-height: 600px;
    background: #050a18;
}

.fz-split-img {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.fz-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fz-split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fz-split-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 30px;
}

.fz-split-content p {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.fz-list {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.fz-list li {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.fz-list li i {
    color: var(--blue);
}

/* Piliers */
.fz-pillars {
    background: #080d1c; 
    padding: 100px 50px;
}

.fz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.fz-item {
    text-align: center;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.05);
    background: #050a18;
    transition: 0.3s;
}

.fz-item:hover {
    border-color: var(--blue);
    transform: translateY(-10px);
}

.fz-item i {
    font-size: 3rem;
    color: var(--blue);
    margin-bottom: 25px;
}

.fz-item h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.fz-item p {
    color: #888;
    line-height: 1.5;
}

/* Sécurité */
.fz-safety {
    padding: 80px 20px;
    background: var(--blue);
    text-align: center;
    color: white;
}

.fz-safety-content {
    max-width: 800px;
    margin: 0 auto;
}

.fz-safety h2 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.fz-safety p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Utilitaires HTML remplacés */
.nav-active { color: var(--blue) !important; }
.text-highlight { color: var(--blue); }
.text-highlight-big { font-family: 'Syne', sans-serif; color: var(--blue); font-size: 2.5rem; }

/* Responsive Fan Zone */
@media (max-width: 1024px) {
    .fz-hero h1 { font-size: 3.5rem; }
    .fz-split { flex-direction: column; }
    .fz-split-img { height: 300px; flex: none; }
    .fz-grid { grid-template-columns: 1fr; }
}/* =======================================================
   A COLLER A LA FIN DE PAGES.CSS (POUR REGIE PUB)
   ======================================================= */

/* Permet d'inverser l'ordre Image/Texte pour faire le Zig-Zag */
.fz-split.fz-reverse {
    flex-direction: row-reverse;
}

/* Image de fond spécifique pour le Hero de la Régie Pub */
.fz-hero.regie-hero {
    /* Change le nom du fichier par ton image de fond réelle */
    background-image: url('../img/regie/fond-regie.jpg'); 
}

/* RESPONSIVE UPDATE */
@media (max-width: 1024px) {
    /* Sur mobile/tablette, on empile tout verticalement, même ceux inversés */
    .fz-split.fz-reverse { 
        flex-direction: column; 
    }
}/* Modification du conteneur de texte pour éviter qu'il touche l'image */
.fz-split-content {
    flex: 1;
    /* AVANT c'était 80px 60px. */
    /* MAINTENANT : 80px 100px -> On met une grosse marge sur les côtés */
    padding: 80px 100px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Sécurité pour que la marge soit bien prise en compte */
    box-sizing: border-box; 
}

/* Ajout d'une sécurité supplémentaire sur les paragraphes */
.fz-split-content p {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.05rem;
    /* On empêche le texte d'aller chercher le bord extrême */
    max-width: 95%; 
}.fz-split-content { 
        /* Sur mobile, on remet une marge plus petite car l'image est au dessus */
        padding: 50px 30px; 
    }/* =======================================================
   A COLLER A LA FIN DE PAGES.CSS
   ======================================================= */

/* 1. GESTION DU ZIG-ZAG (INVERSION) */
.fz-split.fz-reverse {
    flex-direction: row-reverse;
}

/* 2. IMAGE DE FOND HERO REGIE */
.fz-hero.regie-hero {
    background-image: url('../img/regie/fond-regie.jpg'); 
}

/* 3. CORRECTION DES MARGES TEXTE (POUR EVITER QUE CA TOUCHE L'IMAGE) */
/* On écrase le style précédent pour mettre plus d'espace */
.fz-split-content {
    flex: 1;
    padding: 80px 100px; /* Plus d'espace sur les côtés */
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box; 
}

/* On limite la largeur du texte pour faire propre */
.fz-split-content p {
    max-width: 95%; 
}

/* 4. RESPONSIVE (MOBILE) */
@media (max-width: 1024px) {
    /* Sur mobile, on empile tout verticalement */
    .fz-split.fz-reverse { 
        flex-direction: column; 
    }
    
    /* Sur mobile, on remet des petites marges */
    .fz-split-content { 
        padding: 50px 30px; 
    }
}
/* =======================================================
   STYLE PAGE RESEAU (NOUVEAU - VRAIE CARTE)
   ======================================================= */

.network-section {
    padding: 50px;
    background-color: #050a18;
    min-height: 80vh;
}

.network-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    height: 700px; /* Hauteur fixe pour que la carte soit grande */
}

/* LISTE A GAUCHE */
.network-list {
    flex: 0.8; 
    background: #080d1c;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 8px;
    overflow-y: auto; /* Permet de scroller la liste si elle est longue */
}

.network-list h3 {
    font-family: 'Oswald', sans-serif;
    color: white;
    text-transform: uppercase;
    border-bottom: 2px solid var(--blue);
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.region-title {
    color: #888;
    font-family: 'Syne', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 15px;
    margin-top: 30px;
}
.region-group:first-child .region-title { margin-top: 0; }

/* DESIGN CARTE VILLE (PROPRE) */
.spot-card {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.03);
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    transition: 0.2s;
    cursor: pointer;
    border-left: 3px solid transparent; /* Bordure invisible par défaut */
}

.spot-card:hover {
    background: rgba(255,255,255,0.08);
    border-left: 3px solid var(--blue); /* Ligne bleue au survol */
}

.spot-icon {
    width: 30px;
    color: #555;
    text-align: center;
    font-size: 1.1rem;
    margin-right: 15px;
    transition: 0.3s;
}

.spot-card:hover .spot-icon {
    color: var(--blue); /* L'icône s'allume en bleu au survol */
}

.spot-info strong {
    display: block;
    color: white;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
}

.spot-info span {
    display: block;
    color: #777;
    font-size: 0.8rem;
    margin-top: 3px;
}

/* CARTE VISUELLE A DROITE */
.network-map-visual {
    flex: 1.5; /* La carte prend plus de place */
    position: relative;
    background: #111; /* Fond noir pendant le chargement */
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 1; /* Important pour Leaflet */
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .network-container {
        flex-direction: column-reverse; /* Carte en haut sur mobile */
        height: auto;
    }
    
    .network-map-visual {
        height: 400px; /* Hauteur forcée sur mobile */
    }
    
    .network-section {
        padding: 30px 20px;
    }
}/* =======================================================
   A COLLER A LA FIN DE PAGES.CSS
   ======================================================= */

/* --- 1. SCROLLBAR DESIGN (Chrome/Edge/Safari) --- */
::-webkit-scrollbar {
    width: 8px; /* Largeur fine */
}

::-webkit-scrollbar-track {
    background: #02040a; /* Fond de la barre (très sombre) */
}

::-webkit-scrollbar-thumb {
    background: var(--blue); /* Le curseur en bleu VisionAir */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #004a8f; /* Un peu plus sombre au survol */
}

/* --- 2. STYLE DES POPUPS MAP (DARK MODE) --- */
.leaflet-popup-content-wrapper, .leaflet-popup-tip {
    background: #080d1c !important; /* Fond noir bleuté */
    color: white !important;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-radius: 4px;
}

.leaflet-popup-content strong {
    color: var(--blue);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.leaflet-popup-content img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-top: 10px;
    margin-bottom: 5px;
}

/* --- 3. SECTION GRILLE DES VILLES (SOUS LA CARTE) --- */
.locations-grid-section {
    padding: 80px 50px;
    background-color: #050a18;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.locations-header {
    text-align: center;
    margin-bottom: 60px;
}

.locations-header h3 {
    font-family: 'Oswald', sans-serif;
    color: white;
    font-size: 2.5rem;
    text-transform: uppercase;
}

.loc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.loc-card {
    background: #080d1c;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
    overflow: hidden;
    transition: 0.3s;
}

.loc-card:hover {
    border-color: var(--blue);
    transform: translateY(-5px);
}

.loc-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.loc-content {
    padding: 25px;
}

.loc-city {
    font-family: 'Oswald', sans-serif;
    color: var(--blue);
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.loc-address {
    font-family: 'Manrope', sans-serif;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
    display: block;
}

.loc-details {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .locations-grid-section { padding: 50px 20px; }
    .loc-grid { grid-template-columns: 1fr; }
}/* =======================================================
   A COLLER A LA FIN DE PAGES.CSS
   ======================================================= */

/* --- STYLE CARTE & LISTE --- */
.network-section {
    padding: 50px;
    background-color: #050a18;
    min-height: 80vh;
}

.network-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    height: 700px; /* Force la hauteur de la carte */
}

/* LISTE A GAUCHE */
.network-list {
    flex: 0.8; 
    background: #080d1c;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 8px;
    overflow-y: auto; 
}

/* Scrollbar Custom */
.network-list::-webkit-scrollbar { width: 8px; }
.network-list::-webkit-scrollbar-track { background: #02040a; }
.network-list::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }

.network-list h3 {
    font-family: 'Oswald', sans-serif;
    color: white;
    text-transform: uppercase;
    border-bottom: 2px solid var(--blue);
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.region-title {
    color: #888;
    font-family: 'Syne', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 15px;
    margin-top: 30px;
}
.region-group:first-child .region-title { margin-top: 0; }

.spot-card {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.03);
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    transition: 0.2s;
    cursor: pointer;
    border-left: 3px solid transparent;
}

.spot-card:hover {
    background: rgba(255,255,255,0.08);
    border-left: 3px solid var(--blue);
}

.spot-icon {
    width: 30px;
    color: #555;
    text-align: center;
    font-size: 1.1rem;
    margin-right: 15px;
    transition: 0.3s;
}

.spot-card:hover .spot-icon {
    color: var(--blue);
}

.spot-info strong {
    display: block;
    color: white;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
}

.spot-info span {
    display: block;
    color: #777;
    font-size: 0.8rem;
    margin-top: 3px;
}

/* CARTE DROITE */
.network-map-visual {
    flex: 1.5; 
    position: relative;
    background: #111; 
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 1;
}

/* POPUPS SOMBRES */
.leaflet-popup-content-wrapper, .leaflet-popup-tip {
    background: #080d1c !important;
    color: white !important;
    border: 1px solid rgba(255,255,255,0.1);
}
.leaflet-popup-content strong {
    color: var(--blue);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

/* --- SECTION GRILLE DES VILLES (BAS DE PAGE) --- */
.locations-grid-section {
    padding: 80px 50px;
    background-color: #050a18;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.locations-header {
    text-align: center;
    margin-bottom: 60px;
}

.locations-header h3 {
    font-family: 'Oswald', sans-serif;
    color: white;
    font-size: 2.5rem;
    text-transform: uppercase;
}

.loc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.loc-card {
    background: #080d1c;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
    overflow: hidden;
    transition: 0.3s;
}

.loc-card:hover {
    border-color: var(--blue);
    transform: translateY(-5px);
}

.loc-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.loc-content {
    padding: 25px;
}

.loc-city {
    font-family: 'Oswald', sans-serif;
    color: var(--blue);
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.loc-address {
    font-family: 'Manrope', sans-serif;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
    display: block;
}

.loc-details {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .network-container {
        flex-direction: column-reverse;
        height: auto;
    }
    .network-map-visual {
        height: 400px;
    }
    .network-section {
        padding: 30px 20px;
    }
    .loc-grid { grid-template-columns: 1fr; }
}