.parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
.slide-in {
    animation: slideIn 1s ease-out forwards;
}

/* .masonry {
    column-count: 3;
    column-gap: 1rem;
}
.masonry-item {
    display: inline-block;
    margin-bottom: 1rem;
    width: 100%;
}
.masonry img {
    width: 100%;
    height: auto;
} */

.overlay { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0); /* Start with a transparent overlay */ 
    pointer-events: none; /* Allow interactions with the page beneath the overlay */ 
    z-index: 9999; 
}