:root {
    --bg: #faf9f7;
    --accent: #c0a062;
    --shadow: rgba(0, 0, 0, 0.1);
    --gap: 16px;
}


.gallery {
    column-count: 4;
    column-gap: var(--gap);
    width: 100%;
    /* max-width: 95%; */
    margin: 0 auto;
}

.gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: var(--gap);
    /* border-radius: 12px; */
    overflow: hidden;
    box-shadow: 0 4px 16px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px var(--shadow);
} */

.gallery-item img {
    width: 100%;
    display: block;
}

.load-more {
    display: flex;
    justify-content: center;
    /* margin-top: 30px; */
    margin: 50px 0;
}

.load-btn {
    text-decoration: none;
    background: linear-gradient(90deg, #d6b13a, #e4c45a);
    padding: 10px 25px;
    color: #181818;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    /* box-shadow: 0px 5px 20px #d6b13a30; */
    transition: all .5s ease-in-out;

    &:hover {
        box-shadow: 0px 5px 20px #d6b13a80;
        /* transform: scale(1.1); */
    }
}

.load-btn:hover {
    background: #b18b45;
}

/* .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.4s ease;
} */

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #ff5555;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Responsive Layout */
@media (max-width: 1024px) {
    .gallery {
        columns: 3;
    }
}

@media (max-width: 768px) {
    .gallery {
        column-count: 2;
    }

    header h1 {
        font-size: 24px;
    }
}