.hero-video,
.hero-image {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
}

.hero-video-bg,
.hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-bottom-overlay {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.hero-center-overlay {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
    text-align: center;
}

.hero-inner {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* ==========================
   HERO TEXT
========================== */
.hero-title {
    color: var(--white);
    font-size: clamp(2.5rem, 3vw, 4.2rem) !important;
    line-height: clamp(3rem, 3vw, 4.2rem) !important;
    text-shadow: 4px 4px 2px var(--green);
}

.hero-subtitle {
    color: var(--white);
    font-size: clamp(2rem, 3vw, 3.4rem) !important;
    font-weight: 400;
    line-height: clamp(2.5rem, 3vw, 3.4rem) !important;
    text-shadow: 0 3px 6px var(--green);
}

@media(max-width:576px) {


    .hero-bottom-overlay {
        bottom: 25px;
        padding: 0 20px;
    }
}