/* Structure principale */
main{
    display: flex;
    flex-direction: column;
    gap: var(--main-gap);
    align-items: center;
    margin-bottom: var(--main-gap);
}
/* Titre principal */
.title{
    padding: var(--padding-container);
    text-align: center;
    color: var(--text-color);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.5) !important;
}

/* Banniere */
.banner{
    background-image: url("../../images/historique/Banner-Qflqxdi.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height : 55vh ;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/* Structure des sections */
.historique{
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Texte des sections */

.historique-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: var(--padding-container);
    width: 70%;
    color: var(--text-color);

    h2{
        color: var(--text-color);
        text-align: center;
    }
    
    li{
        margin-left: 1rem;
    }

    a{
        color: var(--secondary-text-color);

        &:hover{
            color : var(--secondary-text-color);
        }
    }
}

/* Images des sections */
.historique-img{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    padding: 1rem;
    width: 30%;
    height : 50vh;
}
.first{
    background-image: url("../../images/historique/First-_4u6IU4.png");

}
.second{
    background-image: url("../../images/historique/Second-emqgmDB.webp");

}
.third{
    background-image: url("../../images/historique/Third-iRXQkEN.webp");
}
.fourth{
    background-image: url("../../images/historique/Fourth-_n1SqaW.webp");
}
.fifth{
    background-image: url("../../images/historique/Fifth-mEA4Nak.webp");
}
.sixth{
    background-image: url("../../images/historique/Sixth-1iqRIWl.webp");
}
/* Separateur */

.separator {
    width: 100%;
}

@media screen and (max-width: 600px) {
    .historique{
        flex-direction: column;
        padding: 1rem;
    }
    .historique-text{
        width: 100%;
        
        text-align: center;
    }
    .historique-img{
        width: 100%;
        height: 30vh;
    }
}


