/* ============================================================
   HERO.CSS — Home Page Full-Viewport Hero Section
   ============================================================ */

#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-home.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: transform 8s ease;
    will-change: transform;
}

#hero:hover .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(8, 11, 16, 0.88) 0%,
            rgba(8, 11, 16, 0.72) 50%,
            rgba(8, 11, 16, 0.82) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 8rem 0 5rem;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--primary);
    background: rgba(240, 94, 14, 0.1);
    border: 1px solid rgba(240, 94, 14, 0.3);
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
}

.hero-badge svg {
    width: 13px;
    height: 13px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 0.9;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.hero-title span {
    color: var(--primary);
    display: inline-block;
}

.hero-title .year-text {
    -webkit-text-stroke: 2px var(--primary);
    color: transparent;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--text);
    max-width: 520px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    color: var(--text);
}

.hero-meta-item svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

/* ---- SCROLL INDICATOR ---- */
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    animation: scrollBounce 2s ease infinite;
}

.hero-scroll-line {
    width: 1px;
    height: 2.5rem;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}