@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700&display=swap');

body {
  background-color: #111;
  color: #f0f0f0;
  font-family: 'Cinzel', serif;
  margin: 0;
  padding: 0;
}

/* === Galerie-Sektion === */
.section-gallery {
  background-color: #111;
  padding: 5rem 2rem;
  color: #f0f0f0;
}

/* === Galerie-Titel und Text === */
.section-gallery h2 {
  font-size: 2.2rem;
  color: #ffd700;
  font-family: 'Cinzel', serif;
  margin-bottom: 1rem;
}

.section-gallery p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #ccc;
}

/* === Galerie-Layout === */
.gallery-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.gallery-row img {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid #3eb489;
  background-color: #1b1b1b;
}

.gallery-row img:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* === Textzentrierung === */
.text-center {
  text-align: center;
}

/* === Container-Layout === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* === Lightbox-Stil (optional) === */
#lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(255,255,255,0.3);
}

/* === Responsive Optimierung === */
@media (max-width: 768px) {
  .gallery-row {
    gap: 1rem;
  }

  .gallery-row img {
    max-width: 100%;
    aspect-ratio: auto;
  }

  .section-gallery h2 {
    font-size: 1.6rem;
  }

  .section-gallery p {
    font-size: 1rem;
  }
}
