.gallery-section {
    padding: 5rem 0;
    background-color: var(--bg-cream);
}

.gallery-section h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 3rem;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    margin-bottom: 2rem;
    height: 300px;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}