/**
 * Gallery Images
 *
 * Generated by Dreamz Page Builder on 2026-08-12.
 */

.gallery-images {
	/* Add your styles here */
}

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

.gallery-section {
    width: 100%;
    padding: 40px 20px 70px;
}

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


/* =========================================
   TABS
========================================= */

.gallery-tabs {
    display: flex;
    gap: 14px;
    width: 100%;
    margin-bottom: 22px;
    overflow-x: auto;
    scrollbar-width: none;
     font-family: 'Liberation Sans';
}

.gallery-tabs::-webkit-scrollbar {
    display: none;
}

.gallery-tab {
    flex: 1 0 auto;

    min-height: 48px;

    padding: 13px 20px;

    border: 0;
    border-radius: 6px;

    background: #f1e7da;

    color: rgba(23, 21, 20, 1);

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.gallery-tab:hover {
    transform: translateY(-1px);
}

.gallery-tab.active {
    background: #a95735;
    color: #fff;
}


/* =========================================
   GRID
========================================= */

.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}

.gallery-item img {
    border-radius: 20px;
	height: 400px;
	object-fit: cover;
	cursor: pointer;
}
/* =========================================
   CARD
========================================= */

.gallery-card {
    position: relative;

    width: 100%;

    overflow: hidden;

    border-radius: 14px;

    background: #eee;
}

.gallery-image-link {
    display: block;

    width: 100%;

    aspect-ratio: 1 / 1;

    overflow: hidden;
}

.gallery-card img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.04);
}


/* =========================================
   TITLE
========================================= */

.gallery-card-title {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 35px 14px 14px;

    color: #fff;

    font-size: 14px;
    font-weight: 700;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.75),
            transparent
        );
}


/* =========================================
   LOAD MORE
========================================= */

.gallery-load-more-wrap {
    display: flex;

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

    margin-top: 35px;
}
.gallery-item img {
    width: 100%;
}
.gallery-load-more {
    flex: 1 0 auto;
    min-height: 48px;
    padding: 11px 30px;
    background-color: var(--rust);
    border: 1px solid var(--rust);
    border-radius: 40px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
	line-height: 24px;
	letter-spacing: 0.16px;

    cursor: pointer;

    transition: all 0.6s;
    display: flex;
    align-items: center;
    justify-content: center;
	cursor: pointer;
	margin: 80px auto 0
}

.gallery-load-more:hover {
    transform: translateY(-2px);
}

.gallery-load-more:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.gallery-loader {
    font-size: 14px;
    font-weight: 600;
}

button.gallery-image-button {
    background: none;
    padding: 0;
	border: none !important;
    width: 100%;
}
/* =========================================
   EMPTY
========================================= */

.gallery-empty {
    text-align: center;

    padding: 50px 20px;

    font-size: 18px;
}
.lg-toolbar .lg-close {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

@media (max-width: 767px) {
    .lg-toolbar .lg-close {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 40px;
        height: 40px;
        position: relative;
        z-index: 9999;
    }

    .lg-toolbar {
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {
	.gallery-item img {
		height: 250px;
	}
}



@media (max-width: 900px) {
.gallery-load-more {
    margin-top: 30px;
}
    .gallery-section {
        padding: 30px 15px 50px;
    }

    .gallery-tabs {
        gap: 10px;
    }

    .gallery-tab {
        padding: 12px 16px;
        font-size: 13px;
    }

    .gallery-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 12px;
    }
	.gallery-item img {
		height: 150px;
	}

}


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

@media (max-width: 600px) {
 .gallery-item img {
		height: 150px;
	}
    .gallery-section {
        padding: 20px 12px 40px;
    }

    .gallery-tabs {
        margin-bottom: 16px;
    }

    .gallery-tab {
        min-height: 44px;

        padding: 11px 15px;

        font-size: 12px;
    }


    .gallery-card-title {
        font-size: 13px;
    }

    .gallery-load-more {
        width: 100%;
        max-width: 220px;
    }

}

@media (max-width: 400px) {

    .gallery-grid {
        grid-template-columns:  1fr;

        gap: 12px;
    }

}