/* ═══════════════════════════════════════════════════════════════════════════
   MODERN HERO SLIDER - Touch & Glow Beauty Parlour
   ═══════════════════════════════════════════════════════════════════════════ */

/* Slider Container */
.modern-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    margin-top: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Slide Overlay - Dark gradient for text readability */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.65) 100%
    );
    z-index: 1;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 140px;
}

.slide-text {
    max-width: 700px;
    color: #ffffff;
    animation: fadeInUp 1s ease-out;
}

/* Slide Typography */
.slide-subtitle {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #bf9456;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.slide-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.slide-heading {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.slide-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Slide Buttons */
.slide-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.btn-primary-slider,
.btn-secondary-slider {
    display: inline-block;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary-slider {
    background-color: #bf9456;
    color: #000000;
    border: 2px solid #bf9456;
}

.btn-primary-slider:hover {
    background-color: #d4a866;
    border-color: #d4a866;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(191, 148, 86, 0.4);
}

.btn-secondary-slider {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary-slider:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Slider Navigation Arrows */
.slider-nav {
    position: absolute;
    right: 30px;
    bottom: 38px;
    z-index: 10;
    display: flex;
    gap: 12px;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.slider-prev:hover,
.slider-next:hover {
    background-color: #bf9456;
    border-color: #bf9456;
    transform: scale(1.1);
}

.slider-prev i,
.slider-next i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.dot.active {
    background-color: #bf9456;
    border-color: #bf9456;
    width: 40px;
    border-radius: 10px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1199px) {
    .slide-title {
        font-size: 60px;
    }
    
    .slide-heading {
        font-size: 30px;
    }
    
    .slide-description {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .modern-hero-slider {
        height: 80vh;
        min-height: 500px;
    }
    
    .slide-title {
        font-size: 48px;
    }
    
    .slide-heading {
        font-size: 24px;
    }
    
    .slide-description {
        font-size: 15px;
    }

    .slide-content {
        padding-right: 110px;
    }
    
    .slider-prev,
    .slider-next {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .slider-nav {
        right: 20px;
        bottom: 26px;
    }
}

@media (max-width: 767px) {
    .modern-hero-slider {
        height: 70vh;
        min-height: 450px;
    }
    
    .slide-content {
        justify-content: center;
        text-align: center;
        padding-right: 0;
    }
    
    .slide-text {
        max-width: 90%;
    }
    
    .slide-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .slide-title {
        font-size: 36px;
    }
    
    .slide-heading {
        font-size: 20px;
    }
    
    .slide-description {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .slide-buttons {
        justify-content: center;
        gap: 15px;
    }
    
    .btn-primary-slider,
    .btn-secondary-slider {
        padding: 12px 30px;
        font-size: 13px;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-nav {
        right: 12px;
        bottom: 80px;
    }
    
    .slider-dots {
        bottom: 30px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 30px;
    }
}

@media (max-width: 575px) {
    .modern-hero-slider {
        height: 60vh;
        min-height: 400px;
    }
    
    .slide-title {
        font-size: 28px;
    }
    
    .slide-heading {
        font-size: 18px;
    }
    
    .slide-description {
        font-size: 13px;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .slider-nav {
        bottom: 96px;
    }
    
    .btn-primary-slider,
    .btn-secondary-slider {
        width: 100%;
        max-width: 280px;
        padding: 12px 25px;
        font-size: 12px;
    }
}

/* Accessibility */
.slider-prev:focus,
.slider-next:focus,
.dot:focus {
    outline: 2px solid #bf9456;
    outline-offset: 2px;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .slide-text,
    .slide-subtitle,
    .slide-title,
    .slide-heading,
    .slide-description,
    .slide-buttons {
        animation: none !important;
        transition: none !important;
    }
}
