.hero-section {
    position: relative;
    padding-bottom: var(--space-120);
    overflow: hidden;
    z-index: 12;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    inset: 0;
    background: linear-gradient(to bottom, #0C0C0C -1.76%, rgba(12, 12, 12, 0.1), rgba(12, 12, 12, 0.6));
    z-index: 12;
    user-select: none;
    pointer-events: none;
    z-index: -1;
}

.hero-section .container {
    position: relative;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    min-height: clamp(400px, 80vh, 1080px);
}

.hero-section .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    display: block;
}

/* Fallback Image (only shown on unsupported devices) */

.bg-fallback-image {
    background-image: url('../../../assets/images/hero-video-poster.webp');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

@media (prefers-reduced-motion: reduce) {
    .hero-section .bg-video {
        display: none;
    }
}

.hero-section .content {
    max-width: 1076px;
    color: var(--color-white);
}

.hero-section h1 {
    text-shadow: 0 0 5px rgba(12, 12, 12, 0.15);
}

.hero-section h1 span {
    font-style: italic;
}

.hero-section .content .btn {
    margin-top: var(--space-24);
}

@media (max-width: 768px) {
    .hero-section .bg-video {
        display: none;
    }

    .hero-section {
        /* background-image: url(/assets/images/home_page_mobile_banner.jpg); */
        background-repeat: no-repeat;
        background-size: cover;
    }
}