.gallery-grid {
    columns: 3;
    column-gap: 16px;
    padding: 50px 5%;
}

@media (max-width: 1100px) {
    .gallery-grid { columns: 2; }
}

@media (max-width: 600px) {
    .gallery-grid { columns: 1; }
}

.gallery-item {
    margin-bottom: 16px;
    break-inside: avoid;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    display: block;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(183, 110, 121, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 4px;
}
