/* Page d'Accueil */
#home {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 75vh;
    padding: 4vh 5vw;
    color: var(--text-color);
}

#home::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../img/home_background.png');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: -1;
    filter: brightness(0.85);
}

#home h1 {
    margin-bottom: 1rem;
}

#home h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--primary-color);
}

#home p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    max-width: 80ch;
    font-style: italic;
    font-family: "Inter", sans-serif;
    color: var(--muted-text-color);
    line-height: 1.6;
}

#introduction {
    margin: 0 auto;
    padding: 0 5vw 10vh 5vw;
    max-width: 1000px;
    background-color: var(--surface-color);
}

.ergotherapie, .association {
    margin-bottom: 4rem;
}

.ergotherapie span {
    font-weight: 600;
    color: var(--primary-color); /* Vert foncé */
}

.association span {
    font-style: italic;
    color: var(--muted-text-color); /* Gris doux */
}

@media (max-width: 768px) {
    h1{
        padding: 3rem 0;
    }
}
