/* Sekcja Galeria */
#gallery {
    padding: 40px 0;
}

#gallery h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #e7c7c0;
    margin-bottom: 20px;
}

#gallery img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}