/* css/components/Contact/ContactHero.css */
.contact-hero-section {
    position: relative;
    padding: 8rem 0 6rem;  
    background-size: cover;
    background-position: center 25%;
    text-align: center; /* Aangepast naar center zoals React */
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(236, 229, 219, 0.7); /* Koeleman gold light met transparantie */
    z-index: 1;
}
.contact-hero-section .container {
    position: relative;
    z-index: 2; /* Zorgt dat de tekst boven de overlay komt */
}
.contact-hero-section .hero-title {
    color: var(--koeleman-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-hero-section .hero-subtitle {
    font-size: 1.125rem;
    max-width: 60ch;
    margin: 0 auto;
    color: var(--text-primary);
}

@media (min-width: 768px) {
    .contact-hero-section .hero-title {
        font-size: 3.5rem;
    }
}
