@font-face {
    font-family: lato;
    src: url("../fonts/Lato-Regular.woff2");
}

@font-face {
    font-family: lexend;
    src: url("../fonts/Lexend-Regular.woff2");
}

body {
    font-family: lato;
}

/* =========================================================
   LAYOUT GÉNÉRAL
   ========================================================= */

.generalDiv {
    --bs-gutter-x: 0;
    min-height: 94vh;
}

.sloganText {
    font-size: 1.275rem;
    line-height: .75em;
}

.sloganLiens {
    color: black;
}

.sloganTextDiv {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.bandeauTextDate {
    font-size: 1rem;
    padding-bottom: 1rem;
    line-height: normal;
    margin: 0;
}

.bandeauTextGras {
    font-size: 1rem;
    font-weight: bold;
}

.bandeauText {
    font-size: 1rem;
}

/* =========================================================
   TIMELINE DESKTOP (pour TA vue actuelle)
   - ligne noire continue 100vw
   - chevrons pile sur la ligne
   - dates au-dessus
   ========================================================= */

.horizontal-timeline-resir {
    position: relative;
}

/* UL = repère principal */
.horizontal-timeline-resir .items {
    --line-y: 2.2rem;

    list-style: none;
    margin: 0;
    padding: var(--line-y) 0 0 0;

    display: flex;
    justify-content: space-around;
    gap: 2rem;

    position: relative;
}

/* ligne noire continue */
.horizontal-timeline-resir .items::before {
    content: "";
    position: absolute;
    top: var(--line-y);
    left: 50%;
    translate: -50%;
    width: 100vw;
    height: 2px;
    background: #000;
    transform: translateY(-50%);
}

/* colonnes */
.horizontal-timeline-resir .items .items-list {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
}

/* chevron EXACTEMENT sur la ligne */
.horizontal-timeline-resir .items .items-list .timelineChevron {
    position: absolute;
    top: 0;
    left: 0;

    transform: translateX(-5px) translateY(-50%);
    font-size: 1.3rem;
    color: #000;
    text-shadow: 1px 0 black, -1px 0 black;
    z-index: 2;

    display: block;
    line-height: 1;
    vertical-align: unset !important;
}

/* date au-dessus de la ligne */
.horizontal-timeline-resir .items .items-list .event-date {
    position: absolute;
    left: 0;
    /* right: 0; */
    top: calc(-1 * var(--line-y) + 0.2rem);

    text-align: center;
    margin: 0;
    font-size: 1rem;
    line-height: normal;
}

/* contenu sous la ligne */
.horizontal-timeline-resir .items .items-list .event-body {
    padding-top: 1.4rem;
}

/* =========================================================
   MOBILE : timeline verticale (ton layout existant, mais "timeline style")
   - dates visibles
   - ligne verticale noire
   - chevrons CENTRÉS SUR la ligne (comme ton exemple)
   ========================================================= */

@media (max-width: 991.98px) {

    /* on cache la timeline desktop */
    .horizontal-timeline-resir {
        display: none;
    }

    /* conteneur mobile = repère de la ligne verticale */
    .bandeauLigne {
        position: relative;
        max-width: 80%;
        margin: auto;
    }

    /* ligne verticale noire */
    .bandeauLigne::before {
        content: "";
        position: absolute;
        left: 1rem;
        /* POSITION DE LA LIGNE */
        top: 0;
        bottom: 0;
        width: 2px;
        background: #000;
    }

    /* chaque item : décale le contenu à droite */
    .bandeauIcon {
        position: relative;
        padding-left: 2.2rem;
        /* évite chevauchement texte / icône */
        padding-bottom: 2rem;
    }

    /* point d’ancrage sur la ligne */
    .chevronDiv {
        position: absolute;
        left: 1rem;
        top: 0.35rem;

        /* centre EXACT du point sur la ligne de 2px */
        transform: translateX(-50%) translateX(1px);
    }

    /* dates visibles */
    .bandeauTextDate {
        display: block;
        font-size: 1.15rem;
        margin-bottom: .35rem;
    }

    .bandeauText {
        font-size: 1.1rem;
        line-height: normal;
    }

    /* on cache l’icône bootstrap */
    .chevronIconResponsive {
        display: none;
    }

    /* tiret posé sur la ligne */
    .chevronDiv::before {
        content: "";
        display: block;

        width: 8px;
        height: 8px;
        background: #000;
        border-radius: 50%;
    }
}

/* =========================================================
   MEDIA QUERIES SLOGAN (INCHANGÉES)
   ========================================================= */

@media screen and (max-width: 1900px) and (min-width: 1830px) {
    .sloganText {
        font-size: 1.225rem;
        line-height: 1em;
        margin-bottom: .5rem;
    }

    .bandeauTextGrasMobile {
        display: none;
    }
}

@media screen and (max-width: 1830px) and (min-width: 1600px) {
    .sloganText {
        font-size: 1.1rem;
        line-height: 1em;
        margin-bottom: .5rem;
    }

    .bandeauTextGrasMobile {
        display: none;
    }
}

@media screen and (max-width: 1599px) and (min-width: 992px) {
    .sloganText {
        font-size: 1rem;
        line-height: 1em;
        margin-bottom: .5rem;
    }

    .sloganTextDiv {
        margin-top: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .sloganLiens {
        font-size: 1rem;
    }

    .sloganLiensDiv {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important;
    }

    .sloganLogoDiv {
        padding-top: 3rem !important;
    }

    /* micro-ajustement ligne si nécessaire */
    .horizontal-timeline-resir .items {
        --line-y: 2.0rem;
    }
}

@media screen and (max-width: 991px) {
    .sloganDiv {
        max-width: 80%;
        margin: auto;
    }

    .sloganText {
        font-size: 1.25rem;
        line-height: 1.2rem;
        margin-bottom: .5rem;
    }

    .sloganTextDiv {
        margin-top: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .sloganDiv {
        max-width: 90%;
        margin: auto;
    }

    .sloganText {
        font-size: 1.15rem;
        line-height: 1.25rem;
        margin-bottom: .5rem;
    }

    .sloganTextDiv {
        margin-top: 2.25rem;
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 576px) {
    .sloganDiv {
        max-width: 95%;
        margin: auto;
    }

    .sloganText {
        font-size: 1.075rem;
        line-height: 1.25rem;
        margin-bottom: .5rem;
    }

    .sloganTextDiv {
        margin-top: 2rem;
        margin-bottom: 1.5rem;
    }
}