/* Section spécifique à l'accueil */
#accueil .section-background {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    background-image: url(../IMAGES/backgroundAccueil.jpg);
    margin-top: 0;
}
.content {
    position: relative; /* Assure que le texte passe par-dessus l'overlay */
    z-index: 2; /* Assure que le texte est visible et au-dessus de l'overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
#accueil .overlay {
    position: absolute;
    margin-top: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Ombre noire avec opacité */
    
    z-index: 1; /* Place l'overlay en-dessous du texte mais au-dessus de l'image */
}
#accueil h1 {
    font-size: 48px;
    color: white;
}
#accueil p {
    font-size: 20px;
    color: white;
    margin-top: 10px;
}
#accueil .btn {
    margin: 20px 10px;
}