.header-background {
    background-image: url(../library/images/TEAM.webp); /* Remplacez par le chemin de votre image */
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.header-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Filtre sombre pour améliorer la lisibilité du texte */
}

.header-content {
    font-family: 'League Gothic', sans-serif;
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    user-select: none
}

.header-title {
    font-size: 4rem;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #fff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-subtitle {
    font-size: 5rem; /* Taille du paragraphe */
    color: transparent; /* Couleur du texte */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Ombre pour améliorer la lisibilité */
    -webkit-text-stroke: 1.5px white; /* Contour blanc */
    border-radius: 5px; /* Coins arrondis */
}
@media (max-width: 768px) {
    .header-subtitle{font-size: 3.5rem;}
    .header-title {font-size: 3rem;}
}
.header-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    border: 1px solid transparent; /* Ajoute une bordure transparente par défaut */
}

.header-button:hover {
    background-color: transparent;
    border-color: white; /* Change la couleur de la bordure au survol */
}
