/* ========================================
   Gallery Section Styles - Swiper & LightGallery
   ======================================== */

.gallery-section {
    padding: 80px 0;
    background-color: #fff;
}

.gallery-section .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 80px;
}

/* Header */
.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: #892622;
    margin: 0 auto;
}

/* Slider Wrapper */
.gallery-slider-wrapper {
    position: relative;
}

/* Swiper Container */
.gallery-swiper {
    overflow: hidden;
    border-radius: 8px;
}

/* Slides */
.gallery-slide {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.gallery-slide:hover img {
    transform: scale(1.08);
}

/* Navigation Arrows - Bottom Center */
.gallery-nav-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.gallery-arrow.swiper-button-prev,
.gallery-arrow.swiper-button-next {
    position: static;
    width: 45px;
    height: 45px;
    background: transparent;
    border: 2px solid #892622;
    border-radius: 50%;
    color: #892622;
    transition: all 0.3s ease;
    margin: 0;
}

.gallery-arrow.swiper-button-prev:hover,
.gallery-arrow.swiper-button-next:hover {
    background: #892622;
    color: #fff;
}

.gallery-arrow.swiper-button-prev::after,
.gallery-arrow.swiper-button-next::after {
    font-size: 16px;
    font-weight: bold;
}

/* ========================================
   LightGallery Customization
   ======================================== */

.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.95);
}

.lg-toolbar,
.lg-actions .lg-next,
.lg-actions .lg-prev {
    background-color: rgba(137, 38, 34, 0.8);
}

.lg-toolbar .lg-icon:hover,
.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
    background-color: #892622;
}

.lg-counter {
    font-family: 'Montserrat', sans-serif;
}

/* ========================================
   Responsive Styles
   ======================================== */

@media (max-width: 1024px) {
    .gallery-section .container {
        padding: 0 50px;
    }
    
    .gallery-arrow.swiper-button-prev,
    .gallery-arrow.swiper-button-next {
        width: 40px;
        height: 40px;
    }
    
    .gallery-arrow.swiper-button-prev::after,
    .gallery-arrow.swiper-button-next::after {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-section .container {
        padding: 0 30px;
    }
    
    .gallery-title {
        font-size: 28px;
    }
    
    .gallery-nav-bottom {
        margin-top: 25px;
        gap: 15px;
    }
    
    .gallery-arrow.swiper-button-prev,
    .gallery-arrow.swiper-button-next {
        width: 38px;
        height: 38px;
    }
    
    .gallery-arrow.swiper-button-prev::after,
    .gallery-arrow.swiper-button-next::after {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 40px 0;
    }
    
    .gallery-section .container {
        padding: 0 15px;
    }
    
    .gallery-header {
        margin-bottom: 30px;
    }
    
    .gallery-title {
        font-size: 24px;
    }
    
    .gallery-nav-bottom {
        margin-top: 20px;
        gap: 12px;
    }
    
    .gallery-arrow.swiper-button-prev,
    .gallery-arrow.swiper-button-next {
        width: 35px;
        height: 35px;
    }
    
    .gallery-arrow.swiper-button-prev::after,
    .gallery-arrow.swiper-button-next::after {
        font-size: 12px;
    }
}