/* ========================================
   LANDING HERO — Phase 6.2
   Palette: GOLD (--gold-primary, --gold-hover, --gold-soft)
   Dilarang reuse style hero legacy (home-menu.css).
   ======================================== */

.landing-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #0f1419;
    padding: 130px 24px 90px;
}

.landing-hero-bg,
.landing-hero-slider,
.landing-hero-slide,
.landing-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.landing-hero-bg {
    background-size: cover;
    background-position: center;
}

.landing-hero-slider {
    margin: 0;
    padding: 0;
    list-style: none;
}

.landing-hero-slide {
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}

.landing-hero-slide.is-active {
    opacity: 1;
}

.landing-hero-video {
    object-fit: cover;
}

.landing-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.75) 100%);
}

.landing-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 8px;
}

.landing-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.12;
    letter-spacing: -0.01em;
    margin: 0 0 18px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.landing-hero-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.05rem, 2vw, 1.4rem);
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin: 0 0 14px;
}

.landing-hero-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.65;
    color: var(--text-light-soft);
    max-width: 720px;
    margin: 0 auto 34px;
}

.landing-hero-cta {
    display: inline-block;
    padding: 16px 46px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-hover) 100%);
    color: #111111;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(201, 161, 74, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.landing-hero-cta:hover,
.landing-hero-cta:focus {
    transform: translateY(-3px);
    box-shadow: 0 14px 38px rgba(201, 161, 74, 0.45);
    color: #111111;
}

@media (max-width: 768px) {
    .landing-hero {
        min-height: 92vh;
        padding: 120px 20px 70px;
    }

    .landing-hero-description {
        margin-bottom: 28px;
    }
}