/* contact.css - Styles spécifiques à la page Contact */

.hero {
    position: relative;
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);  /* Overlay noir semi-transparent pour lisibilité */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1, .hero p.lead {
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p.lead {
        font-size: 1.2rem;
    }
}

/* Autres styles si besoin (ex : formulaire, infos contact) */
.list-unstyled li {
    font-size: 1.1rem;
}

.social-icons a {
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--rose-accent);
}