/** ===========================
    Gallery Slider Styles
=========================== **/

/* Main Swiper container */
.swiper {
    width: 100%;
    max-width: 800px; /* keep it centered */
    margin: auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Slide container */
.swiper-slide {
    font-size: 18px;
    color: #fff;
    box-sizing: border-box;
    padding: 0; /* Removed large padding to prevent overflow */
}

/* Slide images */
.swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain; /* keeps full image without cropping */
    background-color: #000; /* optional: fills empty space */
}

/* Optional parallax background */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 130%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Optional slide text styling */
.swiper-slide .title {
    font-size: 41px;
    font-weight: 300;
}

.swiper-slide .subtitle {
    font-size: 21px;
}

.swiper-slide .text {
    font-size: 14px;
    max-width: 400px;
    line-height: 1.3;
}

/** ===========================
    General Utilities
=========================== **/

.relative1 {
    position: relative;
}

/* Card images in grid */
.card-img-top {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

/* Gallery admin list styling */
#gallery-images-list li {
    list-style: none;
    margin: 10px 0;
}

/** ===========================
    Footer
=========================== **/

.footer-detail {
    height: 30vh;
    background: #778899;
}

/** ===========================
    Widget Images
=========================== **/

.front-widget img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
