/* HERO SLIDER SECTION */
.hero-slider-section {
    width: 100%;
    height: 600px;
    position: relative;
    background-color: var(--color-sand);
}
.hero-swiper {
    width: 100%;
    height: 100%;
}
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-white);
    background-size: cover;
    background-position: center;
}
.slide-content {
    max-width: 800px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(4px);
}
.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.slide-content p {
    font-size: 1.25rem;
    line-height: 1.6;
}

/* --- THIS IS THE NEW ART DIRECTION LOGIC --- */

/* Default Desktop Images */
#hero-slide-1 { background-image: url(../images/hero-1-desktop.jpg); }
#hero-slide-2 { background-image: url(../images/hero-2-desktop.jpg); }
#hero-slide-3 { background-image: url(../images/hero-3-desktop.jpg); }
#hero-slide-4 { background-image: url(../images/hero-4-desktop.jpg); }


/* SWIPER CONTROLS STYLING */
:root {
    --swiper-navigation-color: var(--color-white);
    --swiper-pagination-color: var(--color-white);
}
.swiper-button-next, .swiper-button-prev {
    background-color: rgba(10, 35, 66, 0.5); /* Semi-transparent navy */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: var(--color-blue);
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 20px;
    font-weight: 900;
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--color-white);
    opacity: 0.5;
    border-radius: 5px;
    transition: width 0.3s ease, opacity 0.3s ease;
}
.swiper-pagination-bullet-active {
    width: 30px;
    opacity: 1;
}

/* RESPONSIVE STYLES */
@media(max-width: 768px) {
    .hero-slider-section {
        height: 550px; /* Adjusted for a better mobile feel */
    }
    .slide-content h2 {
        font-size: 2.5rem;
    }
    .slide-content p {
        font-size: 1.1rem;
    }
    .swiper-button-next, .swiper-button-prev {
        display: none;
    }

    /* Override with Mobile Images */
    #hero-slide-1 { background-image: url(../images/hero-1-mobile.jpg); }
    #hero-slide-2 { background-image: url(../images/hero-2-mobile.jpg); }
    #hero-slide-3 { background-image: url(../images/hero-3-mobile.jpg); }
    #hero-slide-4 { background-image: url(../images/hero-4-mobile.jpg); }
}