﻿/* ================= GALLERY SLIDER ================= */
.gallerySwiper {
    width: 100%;
    height: 75vh;
    position: relative;
    overflow: hidden;
}

.swiper-slide {
    width: 100%;
    height: 100%;
}

.gallery-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* OVERLAY */
.gallerySwiper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.55) );
    z-index: 2;
}

/* ARROWS */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    z-index: 3;
}

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 28px;
        font-weight: bold;
    }

/* DOTS */
.swiper-pagination {
    bottom: 25px !important;
    z-index: 3;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: .6;
}

.swiper-pagination-bullet-active {
    background: #f4b400;
    opacity: 1;
}

/* ================= SECTION HEADERS ================= */
.gallery-hero-header {
    text-align: center;
    margin-bottom: 30px;
    font-size: 42px;
    font-weight: 700;
    color: #0b2c5d;
    position: relative;
}

    .gallery-hero-header::after {
        content: "";
        width: 80px;
        height: 4px;
        background: #f4b400;
        display: block;
        margin: 10px auto 0;
        border-radius: 4px;
    }

/* ================= IMAGE CARDS ================= */
.gallery-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    transition: transform .3s, box-shadow .3s;
}

    .gallery-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
    }

    .gallery-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 40px rgba(0,0,0,.15);
    }

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    .gallerySwiper {
        height: 45vh;
    }

    .gallery-hero-header {
        font-size: 28px;
    }

    .gallery-card img {
        height: 200px;
    }
}
