/* =============================================
   HERO SLIDER
   ============================================= */

.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: var(--bg-900);
    margin-bottom: 60px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Slide */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Slide Background */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Slide Overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 8, 16, 0.9) 0%,
        rgba(18, 6, 22, 0.8) 40%,
        rgba(139, 92, 246, 0.3) 100%
    );
    z-index: 1;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 2;
    padding-top: 180px;
    max-width: 700px;
}

.slide-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    color: white;
    margin: 0 0 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    animation: slideInUp 0.8s ease 0.2s both;
}

.slide-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 32px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.8s ease 0.4s both;
}

.slide-content .btn {
    animation: slideInUp 0.8s ease 0.6s both;
}

.btn--large {
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 700;
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 24px rgba(214, 108, 167, 0.4);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* Dots Navigation */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
    align-items: center;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    width: 36px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(214, 108, 167, 0.5);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-slider {
        height: 550px;
    }
    
    .slide-content {
        padding-top: 150px;
    }
    
    .slide-title {
        font-size: 48px;
    }
    
    .slide-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }
    
    .slide-content {
        padding-top: 120px;
        max-width: 100%;
    }
    
    .slide-title {
        font-size: 36px;
    }
    
    .slide-subtitle {
        font-size: 16px;
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 25px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dot.active {
        width: 28px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 450px;
    }
    
    .slide-content {
        padding-top: 100px;
    }
    
    .slide-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .slide-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .btn--large {
        padding: 14px 24px;
        font-size: 15px;
    }
}