/* ================================
   HERO
================================ */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Image */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero:hover .hero__bg {
  transform: scale(1.0);
}

/* Overlay */
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.85) 0%,
        rgba(10, 10, 10, 0.60) 100%
    );
    z-index: 1;
}

/* Content */
.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

/* label */
.hero__label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.hero__label-text {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.hero__label-line {
    width: 40px;
    height: 1px;
    background-color: var(--color-gold);
    opacity: 0.6;
}

/* Title */
.hero__title {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero__title-typed {
    color: var(--color-gold);
    display: block;
    min-height: 1.2em;
}

/* Description */
.hero__description {
    font-size: 17px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* CTA Buttons */
.hero__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-jp);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: var(--radius-btn);
    text-decoration: none;
    transition: var(--transition);
}

.hero__btn--primary {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.hero__btn--primary:hover {
    background-color: var(--color-gold-light);
    transform: translateY(-2px);
}

.hero__btn--secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.hero__btn--secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.hero__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero__scroll-text {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.2em;
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(
        to bottom,
        rgba(201, 168, 76, 0.8),
        transparent
    );
    animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 767px) {
    .hero__title {
        font-size: 36px;
    }

    .hero__description {
        font-size: 15px;
    }

    .hero__cta {
        flex-direction: column;
        gap: 12px;
    }

    .hero__btn {
        width: 100%;
        text-align: center;
    }
}