/* ══════════════════════════════════════════
   HERO SLIDER STYLES — hero.css
   ══════════════════════════════════════════ */

.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 6.77vw); /* 130px / 19.2 */
    min-height: 44.44vh; /* 480px / 10.8 */
    overflow: hidden;
    background: #0a0a0a;
}

/* Track holds all slides stacked */
.hs-track { position: relative; width: 100%; height: 100%; }

/* Each slide */
.hs-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.9s ease, transform 0.9s ease;
    will-change: opacity, transform;
}
.hs-slide.hs-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

/* Prev / Next buttons - Updated to Premium UI */
.hs-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: var(--theme-white);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.86vw; /* 55px */
    width: 2.86vw; /* 55px */
    border-radius: 0.7em;
    box-shadow: 0.1em 0.1em 0.6em 0.2em rgba(0,0,0,0.1);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--theme-primary);
    padding: 0;
}
.hs-btn:hover {
    background: var(--theme-primary);
    color: var(--theme-white);
}
.hs-btn svg {
    width: 1.25vw; /* 24px */
    height: 1.25vw; /* 24px */
    transition: transform 0.3s;
}
.hs-btn:active {
    transform: translateY(-50%) scale(0.95);
}
.hs-prev { left: 1.56vw; /* 30px */ }
.hs-next { right: 1.56vw; /* 30px */ }


@media (max-width: 960px) {
    .hs-btn { width: 12vw; height: 12vw; }
    .hs-btn svg { width: 5.33vw; height: 5.33vw; }
    .hs-prev { left: 4vw; }
    .hs-next { right: 4vw; }
    .hero-slider { 
        height: 80vw; /* Significant height for mobile */
        min-height: auto; 
        background: #000;
    }
    .hs-slide { background-size: cover; }
}
