/* Styles spécifiques à la page d'accueil */
.image-accueil {
    height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.titre {
    padding: 2rem;
    max-width: 600px;
}

.titre h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    color: var(--color-light);
}

.titre p {
    font-size: 1.2rem;
    color: var(--color-light);
    line-height: 1.6;
}

/* Responsive design */
@media (max-width: 768px) {
    .titre h1 {
        font-size: 2.5rem;
    }

    .titre p {
        font-size: 1rem;
    }
}
