/* ========================================
   ISLAMIC BOOKSTORE - HERO SLIDER STYLES
   Dark Theme Hero Carousel
   ======================================== */

/* Hero Slider Container */
.hero-slider {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider .owl-carousel {
    width: 100%;
}

.hero-slider .owl-stage-outer {
    overflow: hidden;
}

/* Individual Slide Styling */
.hero-slide {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark overlay for better text readability */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

/* Slide Content */
.hero-slide-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.hero-slide-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-slide-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #f0f0f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-slide-content .custom-btn {
    padding: 15px 40px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Slide Background Images - Using absolute paths from root */
.hero-slide-1 {
    background-image: url(/islamic-ceom/new%20img/slider/Banners.png);
}

.hero-slide-2 {
    background-image: url(/islamic-ceom/new%20img/slider/Banners_1.png);
}

.hero-slide-3 {
    background-image: url(/islamic-ceom/new%20img/slider/Banners.png);
}

/* Navigation Arrows */
.hero-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.hero-slider .owl-nav button {
    position: absolute;
    background: rgba(255, 193, 7, 0.9) !important;
    color: #000 !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    border: none;
    outline: none;
}

.hero-slider .owl-nav button:hover {
    background: #ffc107 !important;
    transform: scale(1.1);
}

.hero-slider .owl-nav .owl-prev {
    left: 20px;
}

.hero-slider .owl-nav .owl-next {
    right: 20px;
}

.hero-slider .owl-nav button span {
    font-size: 30px;
    line-height: 50px;
}

/* Dots Navigation */
.hero-slider .owl-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.hero-slider .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.hero-slider .owl-dots .owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-slider .owl-dots .owl-dot.active span,
.hero-slider .owl-dots .owl-dot:hover span {
    background: #ffc107;
    transform: scale(1.3);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-slide {
        min-height: 500px;
        padding: 60px 0;
    }

    .hero-slide-content h1 {
        font-size: 42px;
    }

    .hero-slide-content p {
        font-size: 18px;
    }

    .hero-slider .owl-nav button {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }

    .hero-slider .owl-nav button span {
        font-size: 24px;
        line-height: 40px;
    }
}

@media (max-width: 767px) {
    .hero-slide {
        min-height: 400px;
        padding: 40px 0;
    }

    .hero-slide-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .hero-slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .hero-slide-content .custom-btn {
        padding: 12px 30px;
        font-size: 12px;
    }

    .hero-slider .owl-nav button {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    .hero-slider .owl-nav button span {
        font-size: 20px;
        line-height: 35px;
    }

    .hero-slider .owl-nav .owl-prev {
        left: 10px;
    }

    .hero-slider .owl-nav .owl-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero-slide {
        min-height: 350px;
    }

    .hero-slide-content h1 {
        font-size: 24px;
    }

    .hero-slide-content p {
        font-size: 14px;
    }
}