/* === HERO BANNER === */
.parcours-hero {
    width: 100%;
    max-width: 1440px;
    height: 622px;
    margin: 0 auto;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7); /* filtre noir à 70% */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 50px;
    font-weight: 700; /* Roboto Bold */
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.5;
}

.hero-btn {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #05D9C4; /* vert */
    color: #05D9C4;
    background: transparent;
    text-decoration: none;
    font-weight: 700; /* Roboto Bold */
    font-size: 16px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: #05D9C4;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .parcours-hero {
        height: 420px;
        align-items: flex-end;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }
}
/* === RECTANGLE VERT SOUS LE HERO === */
.parcours-divider {
    width: 100%;
    max-width: 1440px;
    height: 18px;
    margin: 0 auto;
    background-color:#05D9C4 ;
}

/* === BANDEAU NOIR === */
.bandeau-infos {
    width: 100%;
    max-width: 1440px;
    height: 125px;
    margin: 0 auto;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.bandeau-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 80%;
    max-width: 1200px;
    gap: 60px;
}

.info-bloc {
    text-align: center;
    flex: 1;
}

.info-bloc h3 {
    font-family: 'Watchtower', sans-serif; /* police spéciale pour les titres */
    font-size: 35px;
    margin-bottom: 8px;
    font-weight: 700;
}

.info-bloc p {
    font-family: 'Roboto', sans-serif;
    font-weight: 700; /* Roboto Bold */
    font-size: 20px;
    margin: 0;
}


/* === BANDEAU VERT === */
.bandeau-vert {
    width: 100%;
    max-width: 1440px;
    height: 115px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #05D9C4; /* fond vert */
    color: #0B0A0A;
    text-align: center;
}

.bandeau-vert h2 {
    font-family: 'Watchtower', sans-serif; /* police Watchtower */
    font-size: 80px;
    font-weight: 700;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .bandeau-vert {
        height: auto;
        padding: 30px 20px;
    }

    .bandeau-vert h2 {
        font-size: 48px;
    }
}
/* === IFRAME PARCOURS === */
.parcours-iframe {
    width: 100%;
    max-width: 1440px;
    margin: 50px auto;
    display: flex;
    justify-content: center;
}

.parcours-iframe iframe {
    width: 100%;
    height: 650px; /* correspond à ton iframe actuel */
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .parcours-iframe iframe {
        height: 450px;
    }
}
/* === BANDEAU NOIR AVEC BOUTONS === */
.bandeau-noir-btns {
    width: 100%;
    max-width: 1440px;
    height: 130px;
    margin: 0px auto 0;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
}

.bandeau-btns-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px; /* espace entre les boutons */
}

.bandeau-btn {
    display: inline-block;
    padding: 10px 28px;
    border: 2px solid #fff; /* contour blanc */
    color: #fff;
    background: transparent;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 500; /* Roboto Medium */
    transition: all 0.3s ease;
    border-radius: 0; /* pas de border-radius */
}

.bandeau-btn:hover {
    border-color: #05D9C4; /* contour vert global */
    color: #05D9C4;
}

/* Responsive */
@media (max-width: 768px) {
    .bandeau-btns-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    
    
}
/* Mobile : ne garder que le bouton "Voir le parcours" */
@media (max-width: 768px) {
    .bandeau-btns-wrapper .bandeau-btn:not(.voir-parcours) {
        display: none;
    }

    .bandeau-btns-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
    }

    .bandeau-btns-wrapper .bandeau-btn.voir-parcours {
        width: 80%;
        max-width: 300px;
        font-size: 14px;
        padding: 10px 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
  .info-bloc h3 {
    font-size: 24px; /* taille plus petite pour mobile */
  }

  .info-bloc p {
    font-size: 12px; /* optionnel : réduire aussi le texte si nécessaire */
  }
}
