.gallery-container{
    font-family: 'Poppins', sans-serif;
    padding: 0 2rem;
}
.image-container {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.image-container a {
    display: block;
    height: 100%;
    width: 100%;
}
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: white;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.image-container:hover img {
    transform: scale(1.08);
}
.image-container:hover .image-overlay {
    opacity: 1;
}
.overlay-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}
.image-container:hover .overlay-title,
.image-container:hover .overlay-text {
    transform: translateY(0);
}
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    .overlay-title {
        font-size: 1.5rem;
    }
    .image-container {
        aspect-ratio: 3/4;
    }
}