/* Hero / Small Header Image Section */

.small-header-image {
    margin-bottom: 0;
    margin-top: 0;
    position: relative;
}

.small-header-image .wrapper {
    background-color: var(--color-light);
    min-height: 450px;
    position: relative;
    height: 450px;
    margin-top: 0;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .small-header-image .wrapper {
        height: 200px;
    }
}

.bg-image {
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    width: 100%;
}

/* Optional overlay for text on hero */
.hero-overlay {
    align-items: center;
    color: var(--color-white);
    display: flex;
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    height: 100%;
    padding-top: 3rem;
    position: relative;
    z-index: 100;
}

.hero-overlay h1 {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hero-overlay {
        font-size: var(--font-size-2xl);
    }
    
    .hero-overlay h1 {
        font-size: var(--font-size-3xl);
    }
}
