/* ═══════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════ */
.hero-slider {
    height: 85vh;
    position: relative;
    overflow: hidden;
    background: var(--eden-cream);
}

.hs-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.hs-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 0 20px;
}

.hs-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--eden-gold-light) 0%, transparent 60%),
                radial-gradient(circle at 80% 100%, var(--eden-nude) 0%, transparent 60%);
    opacity: 0.6;
    pointer-events: none;
}

.hs-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 1s ease-out forwards;
}

.hs-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hs-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 500;
    color: var(--eden-dark);
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.hs-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(26, 10, 16, 0.65);
    letter-spacing: 2px;
    text-transform: uppercase;
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hs-areas {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    font-size: 0.75rem;
    color: var(--eden-text-muted);
    max-width: 600px;
    line-height: 1.6;
    margin-top: 10px;
}

.hs-area strong {
    color: var(--eden-burgundy);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hs-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--eden-burgundy);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    padding-bottom: 8px;
    transition: color 0.3s ease;
    margin-top: 20px;
}

.hs-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(140, 17, 85, 0.3);
    transition: background 0.3s ease, transform 0.3s ease;
}

.hs-cta:hover {
    color: var(--eden-gold);
}
.hs-cta:hover::after {
    background: var(--eden-gold);
    transform: translateY(2px);
}

/* Slider Controls */
.hs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(140, 17, 85, 0.1);
    color: var(--eden-burgundy);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.hs-arrow:hover {
    background: #fff;
    border-color: var(--eden-blush);
    box-shadow: 0 4px 15px rgba(140, 17, 85, 0.1);
}

.hs-prev { left: 20px; }
.hs-next { right: 20px; }

.hs-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(140, 17, 85, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hs-dot.active {
    background: var(--eden-burgundy);
    transform: scale(1.2);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hs-title {
        font-size: 2.5rem;
    }
    .hs-subtitle {
        font-size: 0.75rem;
    }
    .hs-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
}
@media (max-width: 480px) {
    .hs-title {
        font-size: 2rem;
    }
    .hs-subtitle {
        font-size: 0.65rem;
        margin-bottom: 20px;
    }
    .hs-icon {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    .hs-areas {
        font-size: 0.65rem;
    }
    .hs-arrow {
        display: none; /* Hide arrows on small screens, rely on swipe/dots */
    }
}
