/* gallery.css */

/* Container für die Bildgalerie */
.image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

/* Einzelne Bilder in der Galerie */
.image-gallery img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover-Effekt für Bilder */
.image-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Optional: Responsive Verhalten für kleinere Bildschirme */
@media (max-width: 768px) {
  .image-gallery img {
    width: 100%;
    height: auto;
  }
}
