/* ---- GALLERY SLIDER ---- */
.gallery-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}
.gallery-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
    width: max-content;
}
.gallery-item {
    flex: 0 0 25vw; /* 4 items exactly fit the screen width */
    padding: 0 10px;
    box-sizing: border-box;
}
.gallery-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 2px solid var(--aged-gold);
}

/* Responsiveness */
@media (max-width: 991px) {
    .gallery-item {
        flex: 0 0 50vw; /* 2 items on tablet */
    }
}
@media (max-width: 600px) {
    .gallery-item {
        flex: 0 0 100vw; /* 1 item on mobile */
    }
}
