/* Hero Section - Minimal */
.section-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.section-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.section-hero__bg img,
.section-hero__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Video: Mobile video hidden by default, shown on small screens */
.hero-video-mobile {
    display: none;
}

@media (max-width: 768px) {
    /* On mobile: show mobile video, hide desktop video */
    .hero-video-desktop:has(~ .hero-video-mobile) {
        display: none;
    }
    .hero-video-mobile {
        display: block;
    }
}

.section-hero__overlay {
    position: absolute;
    inset: 0;
    /*background: rgba(0,0,0,0.5);*/
}
