/* --- MISE EN PAGE GLOBALE --- */
:root {
    /* ... (Vos variables CSS non modifiées) ... */
    --header-height: 70px; /* Augmenter légèrement pour le Hero */
    --hero-min-height: 100vh; /* CLÉ : Hauteur full-screen */
}

/* 1. Body : Pas de padding-top, l'en-tête n'est plus fixe globalement */
body {
    margin:0;
    font-family:'Poppins',sans-serif;
    background:var(--background-color);
    display:flex;
    flex-direction:column;
    min-height:100vh;
    padding-top: 0; /* Important : réinitialiser */
}


/* 2. Ancien style global Header : RETIRÉ OU MIS À JOUR */
/* Votre ancien bloc "EN-TÊTE ÉPURÉ (FIXE)" est remplacé par les styles ci-dessous */

/* --- SECTION HERO (FULL SCREEN VISUEL) --- */
#hero-section {
    position: relative;
    /* CLÉ : Hauteur pleine page */
    height: var(--hero-min-height);
    width: 100%;
    /*background: url('https://decibelles-data.media.tourinsoft.eu/upload/DSC-0163-8.jpg') no-repeat center center/cover; */
    /* Image de fond */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: white;
    padding: 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Overlay sombre, crucial pour la lisibilité du texte H1 */
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* 3. Header intégré et non fixé */
#hero-section > header {
    /* position: relative; /* Positionné dans le flux, au-dessus de l'overlay */ */
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    width: 100%;
    box-sizing: border-box;
    height: var(--header-height);
    background: white;
    color: var(--primary-color);
}



.header-filters-btn {
    background: rgba(255, 255, 255, 0.15); /* Bouton semi-transparent */
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
    z-index: 15;
}

/* 4. Contenu central (H1/P/CTA) */
#hero-content {
    position: relative;
    z-index: 5;
    /* Centrer verticalement le contenu restant */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    margin-top: calc(-1 * var(--header-height)); /* Remonter le contenu sous le header */
}

#hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0,0,0,0.7); /* Contraste maximal */
}

#hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 900px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Style du CTA (Call to Action) */
.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    transition: background-color 0.2s, transform 0.1s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* 5. Barre de filtres (Maintenir la position STICKY) */

/* Le reste des styles pour #filter-bar est conservé */


/* 6. Mobile adjustment */
@media (max-width: 900px) {
    #hero-section {
        height: 80vh; /* Moins haut sur mobile pour laisser de la place au contenu */
    }
    #hero-content h1 {
        font-size: 32px;
    }
    #hero-content p {
        font-size: 16px;
    }
}

.marker-cluster-small div ,.marker-cluster-medium div{
  background-color: var(--primary-color);
}
.leaflet-marker-icon.marker-cluster.marker-cluster-small.leaflet-zoom-animated.leaflet-interactive,.marker-cluster-medium {
  font-size: 2em;
  background: var(--primary-color) !important;
  color: white;
  background-color: var(--primary-color) !important;
}
