/* Modern Slider Styles */

.hero-slider-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 10;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.slide-content {
    text-align: center;
    color: white;
    animation: slideInContent 0.8s ease-out 0.3s both;
}

.slide-decoration {
    display: block;
    margin: 0 auto 30px;
    max-width: 60px;
    animation: slideInDecoration 0.6s ease-out both;
}

.slide-content h1 {
    font-size: 3rem;
    margin: 20px 0;
    font-weight: 300;
    letter-spacing: 1px;
    animation: slideInText 0.8s ease-out 0.1s both;
}

.slide-content p {
    font-size: 1.2rem;
    margin: 15px 0;
    animation: slideInText 0.8s ease-out 0.2s both;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.nav-dot.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes slideInContent {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDecoration {
    from {
        opacity: 0;
        transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

@keyframes slideInText {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider-container {
        height: 400px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-slider-container {
        height: 300px;
    }

    .slide-content h1 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .slider-nav {
        bottom: 15px;
    }

    .nav-dot {
        width: 10px;
        height: 10px;
    }

    .nav-dot.active {
        width: 24px;
    }
}
