/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.9.1787036516
Updated: 2026-08-18 07:01:56

*/

/* =========================================================
   PROPERTY GALLERY
   ========================================================= */

.property-gallery {
    width: 100% !important;
    height: 100% !important;
    min-height: 500px;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 1fr 1fr 1fr !important;
    gap: 15px !important;
    overflow: hidden;
}

/* Gallery item */
.property-gallery__item {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 0;
    min-height: 0;
    overflow: hidden !important;
    border-radius: 6px;
    text-decoration: none;
    max-height: 350px;
    object-fit: cover;
}

/* Image */
.property-gallery__item img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    transition: transform 0.3s ease;
}

/* First image */
.property-gallery__item--1 {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
}

/* Second image */
.property-gallery__item--2 {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
}

/* Third image */
.property-gallery__item--3 {
    grid-column: 1 !important;
    grid-row: 3 !important;
}

/* Fourth image */
.property-gallery__item--4 {
    grid-column: 2 !important;
    grid-row: 3 !important;
}

/* Remaining images */
.property-gallery__item--hidden {
    display: none !important;
}

/* More Photos overlay */
.property-gallery__more {
    position: absolute !important;
    inset: 0 !important;
    z-index: 5;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    background: rgba(0, 0, 0, 0.55) !important;
    color: #fff !important;
    text-align: center;
}

.property-gallery__more strong {
    display: block !important;
    margin: 0 !important;
    font-size: 28px !important;
    line-height: 1.1 !important;
    font-weight: 600 !important;
}

.property-gallery__more small {
    display: block !important;
    margin-top: 4px !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    color: #fff !important;
}

/* Hover */
.property-gallery__item:hover img {
    transform: scale(1.03);
}

/* =========================================================
   PROPERTY GALLERY LIGHTBOX
   ========================================================= */

.property-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;

    background: rgba(0, 0, 0, 0.92);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.property-gallery-lightbox--active {
    opacity: 1;
    visibility: visible;
}

.property-gallery-lightbox__content {
    position: relative;

    width: min(90vw, 1200px);
    height: min(85vh, 800px);

    display: flex;
    align-items: center;
    justify-content: center;
}

.property-gallery-lightbox__image {
    display: block;

    max-width: 100%;
    max-height: 100%;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 4px;
}


/* Close */

.property-gallery-lightbox__close {
    position: absolute;
    top: 25px;
    right: 30px;

    z-index: 10;

    width: 45px;
    height: 45px;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);
    color: #fff;

    font-size: 32px;
    line-height: 1;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Previous / Next */

.property-gallery-lightbox__prev,
.property-gallery-lightbox__next {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    z-index: 10;

    width: 50px;
    height: 50px;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);
    color: #fff;

    font-size: 26px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: background 0.2s ease;
}

.property-gallery-lightbox__prev:hover,
.property-gallery-lightbox__next:hover,
.property-gallery-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.property-gallery-lightbox__prev {
    left: 30px;
}

.property-gallery-lightbox__next {
    right: 30px;
}


/* Counter */

.property-gallery-lightbox__counter {
    position: absolute;

    bottom: -35px;
    left: 50%;

    transform: translateX(-50%);

    color: #fff;

    font-size: 14px;
    line-height: 1;

    white-space: nowrap;
}


/* Prevent page scroll */

body.property-gallery-lightbox-open {
    overflow: hidden;
}


/* =========================================================
   PROPERTY AMENITIES
   ========================================================= */

.property-amenities {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 80px;
    row-gap: 24px;
    width: 100%;
}

.property-amenity {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.property-amenity__icon {
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-amenity__icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: #fdbd00;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.property-amenity__name {
    font-size: 18px;
    line-height: 1.4;
    color: #161616;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
    
    .property-gallery-lightbox {
        padding: 20px;
    }

    .property-gallery-lightbox__content {
        width: 100%;
        height: 80vh;
    }

    .property-gallery-lightbox__prev,
    .property-gallery-lightbox__next {
        width: 40px;
        height: 40px;

        font-size: 20px;
    }

    .property-gallery-lightbox__prev {
        left: 10px;
    }

    .property-gallery-lightbox__next {
        right: 10px;
    }

    .property-gallery-lightbox__close {
        top: 15px;
        right: 15px;

        width: 40px;
        height: 40px;

        font-size: 28px;
    }

    .property-gallery {
        min-height: 400px;
        grid-template-rows: 130px 130px 120px !important;
    }

    .property-gallery__more strong {
        font-size: 22px !important;
    }

    .property-gallery__more small {
        font-size: 12px !important;
    }
    
    .property-amenities {
        grid-template-columns: 1fr;
        row-gap: 18px;
    }
    .property-amenity__name {
    font-size: 16px;
}
}

