/* =========================================
   GALLERY.CSS (Clean White & Full Fill)
   ========================================= */

/* Main Container */
.gallery-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

/* Page Title */
.gallery-section h2 {
    font-size: 2.2rem;
    color: #2e1503;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Sub-headers */
.gallery-section h3 {
    text-align: center;
    margin: 50px 0 20px;
    font-size: 1.6rem;
    font-weight: 500;
    color: #65350f; 
    display: inline-block;
    border-bottom: 2px solid #f4f9fd; 
    padding-bottom: 5px;
}

/* --- VIDEO SECTION --- */
.intro-video {
    max-width: 900px;
    margin: 0 auto 60px; 
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: #fff; /* Changed to White */
}

.intro-video video {
    width: 100%;
    height: auto;
    display: block;
}

/* --- SLIDER SECTION --- */
.gallery-swiper {  
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: #fff; /* REMOVED BLACK BACKGROUND */
}

/* Slide Images */
.swiper-slide {
    background-color: #fff; /* REMOVED BLACK BACKGROUND */
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: 500px; 
    display: block;
    
    /* CRITICAL CHANGE: This makes the image fill the space */
    object-fit: cover; 
}

/* Navigation Arrows (Darker now since BG is light) */
.swiper-button-next,
.swiper-button-prev {
    color: #ffffff !important; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.8); /* Strong shadow to see arrow on bright images */
}

/* Pagination Dots */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.8;
    width: 10px;
    height: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3); /* Shadow for visibility */
}

.swiper-pagination-bullet-active {
    background: #0d6eff !important; 
    opacity: 1;
}

/* =========================================
   MEDIA QUERIES (Responsive)
   ========================================= */

@media screen and (max-width: 992px) {
    .gallery-section { padding: 30px 15px; }
    .gallery-section h2 { font-size: 1.8rem; }
    
    .gallery-swiper { max-width: 100%; } 
    .swiper-slide img { height: 350px; } 
}

@media screen and (max-width: 576px) {
    .gallery-section { padding: 20px 10px; }
    .gallery-section h2 { font-size: 1.5rem; }
    .gallery-section h3 { font-size: 1.2rem; margin: 30px 0 15px; }

    /* Mobile Height */
    .swiper-slide img { height: 250px; } 

    .swiper-button-next::after, 
    .swiper-button-prev::after {
        font-size: 1.2rem !important;
    }
}