/* css/components/About/HeroSection.css */

.about-hero-section {
    position: relative;
    /* --- AANGEPAST: Hoogte verhoogd zoals in React versie --- */
    height: 130vh;
    min-height: 350px;
    background-size: cover;
    background-position: center start;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: var(--koeleman-blue);
    opacity: 0.7;
}

.hero-content-container {
    position: relative;
    color: var(--koeleman-gold-light);
}

.hero-title {
    font-size: 2.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-subtitle {
    margin-top: 1rem;
    font-size: 1.125rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    /* --- AANGEPAST: Tekstkleur zoals in React versie --- */
    color: var(--koeleman-gold-light);
}
