/* ============================================================
   HERO.CSS — MV Moda Femenina
   ============================================================ */

.hero {
    position: relative;
    height: calc(100svh - 52px);
    min-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../assets/img/hero-bg1.PNG');
    background-size: cover;
    background-position: 66% center;
    transform: scale(1.04);
    transition: transform 8s ease-out;
}

.hero-bg.loaded {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(10, 8, 6, 0.72) 0%,
        rgba(10, 8, 6, 0.35) 55%,
        rgba(10, 8, 6, 0.1) 100%
    );
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    mask-image: linear-gradient(to top, black 0%, transparent 50%);
    -webkit-mask-image: linear-gradient(to top, black 0%, transparent 40%);
}

/* ---- Content ---- */

.hero-content {
    position: relative;
    width: 100%;
    z-index: 2;
    padding: 10px 28px 80px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hero-eyebrow {
    font-family: var(--f-italic);
    font-style: italic;
    font-size: 13px;
    font-weight: 300;
    color: var(--champagne);
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--champagne);
    opacity: 0.6;
}

.hero-title {
    font-family: var(--f-body);
    font-weight: 300;
    line-height: 1.05;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title-line {
    display: block;
    font-size: clamp(48px, 10vw, 96px);
}

.hero-title-line--italic {
    font-style: italic;
    color: var(--champagne);
    padding-left: clamp(24px, 4vw, 56px);
}

.hero-title-line--gold {
    color: var(--gold);
    font-size: clamp(32px, 6.5vw, 64px);
    white-space: nowrap;
}

.hero-subtitle {
    font-family: var(--f-body);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 36px;
}

/* ---- CTA ---- */

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--f-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: gap 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.hero-cta:hover {
    gap: 22px;
    border-bottom-color: var(--gold);
    color: var(--champagne);
}

/* ---- Scroll indicator ---- */

.hero-scroll {
    position: absolute;
    bottom: 48px;
    right: 32px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-scroll-text {
    font-family: var(--f-body);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    writing-mode: vertical-rl;
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
        0%, 100% {
        transform: scaleY(1);
        opacity: 1;
    }
        50% {
        transform: scaleY(0.5);
        opacity: 0.4;
    }
}

/* ---- Tablet (600px) ---- */

@media (min-width: 600px) {
        .hero-content {
        padding: 10px 50px 150px;
    }
}

/* ---- Desktop (768px) ---- */

@media (min-width: 768px) {
    .hero-content {
        padding: 10px 50px 150px;
        border-radius: 16px;
    }

        .hero-scroll {
        right: 56px;
    }
}

/* ---- Desktop (1024px) ---- */

@media (min-width: 1024px) {
    .hero {
        align-items: center;
    }
}

/* ---- Large Desktop (1200px) ---- */

@media (min-width: 1200px) {
        .hero {
        min-height: 720px;
    }

    .hero-content {
        max-width: 1440px;
        margin: 0 auto;
    }

        .hero-scroll {
        right: 80px;
    }
}

/* ============================================================
   MARQUEE BAND
   ============================================================ */

.marquee-band {
    height: 52px;
    background-color: var(--ink);
    overflow: hidden;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(212, 175, 125, 0.15);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    font-family: var(--f-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(212, 175, 125, 0.8);
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.marquee-dot {
    color: var(--gold);
    font-size: 8px;
}

@keyframes marqueeScroll {
        0% {
        transform: translateX(0);
    }
        100% {
        transform: translateX(-50%);
    }
}
