/* Hintergrundfarbe für den gesamten Body-Bereich */
body.gallery-page {
  background-color: #e5f0fb; /* Wählen Sie hier die gewünschte Hintergrundfarbe */
  color: #333;
  font-family: "Arial", sans-serif;
}

/* Hintergrundfarbe für spezifische Section-Elemente */
.gallery-page section {
  background-color: #bfd7e4; /* Wählen Sie hier die gewünschte Hintergrundfarbe für Sections */
  padding: 2px;
  margin-bottom: 20px;
  border-radius: 10px;
  padding: 2px;
}

/* Begrenzter Container für die Galerie */
.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2px;
  background-color: hsl(0, 55%, 35%); /* Hintergrundfarbe für den Galerie-Container */
  border-radius: 2px;
  margin: 200px auto;
}

/* Hintergrundfarbe für die eigentliche Galerie */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 2spx;
  justify-content: start;
  background-color: #bfd7e4;
  padding: 2px;
  border-radius: 0px;
}

/* Bildstile innerhalb der Galerie */
.gallery img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 0px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Überschrift der Galerie */
.gallery-headline {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

/* Footer-Stile */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo img {
  width: 100px;
  filter: drop-shadow(1rem 0 1rem #ef9035);
}

.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
  .gallery {
    justify-content: center;
    gap: 10px;
  }

  .gallery img {
    width: 100%;
    height: auto;
  }

  .hamburger {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    display: none;
  }

  .nav ul.show {
    display: flex;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo img {
    width: 80px;
    margin-bottom: 20px;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .footer-nav li {
    margin-left: 0;
    margin-bottom: 10px;
  }
}
