/* ==================================================
   ROOFNEST V2
   GALLERY
   Version: 1.1
   ================================================== */


/* ==================================================
   PROPERTY GALLERY WRAPPER
   ================================================== */

.property-gallery {
    width: 100%;
    margin: 25px 0;
}


/* ==================================================
   MAIN GALLERY
   ================================================== */

.gallery-main {
    position: relative;

    width: 100%;
    height: 520px;

    overflow: hidden;

    border-radius: 12px;
    background: #f5f5f5;
}

.gallery-main img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    cursor: zoom-in;

    transition:
        transform .45s ease,
        opacity .35s ease;
}

.gallery-main:hover img {
    transform: scale(1.05);
}


/* ==================================================
   PHOTO COUNTER
   ================================================== */

.photo-count {
    position: absolute;

    right: 15px;
    bottom: 15px;

    background: rgba(0, 0, 0, .75);
    color: #fff;

    padding: 8px 14px;

    border-radius: 25px;

    font-size: 14px;
    font-weight: 600;

    z-index: 10;
}


/* ==================================================
   GALLERY THUMBNAILS
   ================================================== */

.gallery-thumbs {
    display: flex;

    gap: 10px;

    margin-top: 12px;

    overflow-x: auto;

    padding-bottom: 6px;

    scrollbar-width: thin;
}

.gallery-thumb {
    flex: 0 0 auto;

    width: 90px;
    height: 70px;

    object-fit: cover;

    border-radius: 8px;

    cursor: pointer;

    border: 2px solid transparent;

    transition: all .25s ease;
}

.gallery-thumb:hover {
    transform: scale(1.05);
    border-color: #2563eb;
}

.gallery-thumb.active {
    border-color: #2563eb;
}


/* ==================================================
   FALLBACK FEATURED IMAGE
   ================================================== */

.property-image {
    width: 100%;
}

.property-image img {
    width: 100%;
    height: 420px;

    object-fit: cover;

    border-radius: 12px;
    display: block;
}


/* ==================================================
   TABLET
   ================================================== */

@media (max-width: 900px) {

    .gallery-main {
        height: 430px;
    }

    .property-image img {
        height: 360px;
    }

}


/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 600px) {

    .property-gallery {
        margin: 20px 0;
    }

    .gallery-main {
        height: 300px;
        border-radius: 10px;
    }

    .gallery-thumb {
        width: 75px;
        height: 58px;
    }

    .photo-count {
        right: 10px;
        bottom: 10px;

        padding: 6px 11px;

        font-size: 12px;
    }

    .property-image img {
        height: 280px;
        border-radius: 10px;
    }

}