h1 {
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #004085;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Soulignement animé */
h1::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    background: #007bff;
    left: 0;
    bottom: 0;
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Quand h1 est centré */
.text-center h1::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Animation au survol (optionnel) */
h1:hover::after {
    width: 100px;
}






/* Appliquer Bricolage à tout sauf les titres */
body {
  font-family: 'Bricolage Grotesque', sans-serif;
}

/* Ne PAS appliquer Bricolage aux titres */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Arial', sans-serif; /* ou une autre police de ton choix pour les titres */
}
