.gallery-minimal {
    background: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}


.section-divider {
    width: 50px;
    height: 1px;
    background: #e8cfc2;
    margin: 1rem auto 0;
}

/* Gallery Grid - responsive grid system */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    background: #faf6f2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.03);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 1.2rem;
}

/* Lightbox Modal */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Load More Button */
.load-more-btn {
    display: block;
    width: fit-content;
    margin: 2rem auto 0;
    background: transparent;
    border: 1px solid #e1cfc2;
    padding: 0.6rem 1.8rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #5d4033;
    transition: all 0.2s;
}

.load-more-btn:hover {
    background: #fef6f0;
    border-color: #c7a18b;
    color: #b45a3b;
}

/* Responsive: Small screens show 4 images (2x2 grid) */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .section-title-minimal {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        gap: 0.8rem;
    }
}