/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* Gallery Grid */
.gallery-grid {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-grid img {
    width: 200px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.1);
}