/* ============================================================
   Hero Section
   ============================================================ */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 120px;
    overflow: hidden;
    background-color: var(--color-hero-bg); /* fallback while video loads */
}

/* Video background */

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

/* Content */

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1200px;
    width: 100%;
}

.hero-subtitle {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
}

.hero-title {
    font-family: var(--font-neo);
    font-size: 60px;
    font-weight: 400;
    line-height: 72px;
    letter-spacing: -2px;
    color: var(--color-white);
    max-width: 850px;
}

/* Links row */

.hero-links {
    display: flex;
    gap: 32px;
    align-items: flex-end;
}

.hero-link {
    font-family: var(--font-neo);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    color: var(--color-white);
    text-decoration: none;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

/* Sidebar (desktop only) */

.hero-sidebar {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1170px) {
    .hero-section {
        padding: 140px 24px;
    }

    .hero-subtitle {
        font-size: 12px;
        line-height: 18px;
    }

    .hero-title {
        font-size: 44px;
        line-height: 48px;
        letter-spacing: -2px;
    }

    .hero-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .hero-link {
        font-size: 16px;
        padding-bottom: 8px;
    }

    .hero-sidebar {
        display: none;
    }
}
