/* ============================================
   HERO SLIDER - FADE + KEN BURNS ZOOM
   ============================================ */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

/* ============================================
   PANEL STRUCTURE - Stacked fullscreen
   ============================================ */

.hero-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease;
    z-index: 0;
}

.hero-panel.active {
    opacity: 1;
    z-index: 1;
}

/* Background Image with Ken Burns zoom */
.hero-panel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
}

.hero-panel.active .hero-panel-bg {
    animation: heroKenBurns 7s ease-in-out forwards;
}

@keyframes heroKenBurns {
    from { transform: scale(1); }
    to   { transform: scale(1.12); }
}

/* Dark Overlay */
.hero-panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* ============================================
   CONTENT - Centered on active panel
   ============================================ */

.hero-panel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    text-align: center;
    color: white;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.8s ease 0.5s;
}

.hero-panel.active .hero-panel-content {
    opacity: 1;
}

/* Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    font-family: var(--font-title), serif;
    letter-spacing: -0.5px;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   NAVIGATION DOTS
   ============================================ */

.hero-slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: white;
    transform: scale(1.2);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .hero-slider {
        min-height: 500px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
    .hero-panel-content {
        width: 85%;
        padding: 0 20px;
    }
    .hero-slider-dots {
        bottom: 25px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 60vh;
        min-height: 450px;
    }
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
}
