/* Styles communs pour les titres et sous-titres principaux */

/* Titre principal */
.display-3.fw-bold.text-uppercase.montserrat {
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* Ligne de séparation sous le titre */
.heading-line {
    width: 5rem;
    height: 3px;
    background-color: var(--secondary);
    margin: 0 auto 1.5rem auto;
}

/* Sous-titre */
.lead.display-2-subtitle.italic-apalu {
    color: var(--dark);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Animation pour les titres au chargement de la page */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.display-3.fw-bold.text-uppercase.montserrat {
    animation: fadeInDown 0.8s ease-out forwards;
}

.heading-line {
    animation: fadeInDown 0.8s ease-out 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.lead.display-2-subtitle.italic-apalu {
    animation: fadeInDown 0.8s ease-out 0.4s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}