/* --- Grundlegende Schrift und Layout --- */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}
/* --- Header mit Weihnachtsweg-Flyer Bild + Overlay --- */
header {
  position: relative;
  background: url('images/weihnachtsweg-flyer.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  padding: 80px 20px 40px 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}

header::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35); /* leichtes Overlay für Lesbarkeit */
  z-index: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

header h1, header nav {
  position: relative;
  z-index: 1;
}

header h1 {
  font-size: 3em;
  margin: 0;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

header nav {
  margin-top: 20px;
}

header nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

header nav a:hover {
  color: #ffdd00; /* goldener Hover-Effekt */
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  header h1 {
    font-size: 2em;
  }

  header nav a {
    display: block;
    margin: 10px 0;
  }
}
  }
}
/* --- Hero Abschnitt --- */
.hero {
  background: rgba(255,255,255,0.85);
  padding: 40px 20px;
  max-width: 900px;
  margin: 40px auto; /* oben/unten 40px, horizontal auto → Block horizontal zentriert */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-align: center; /* Text zentriert */
  display: block; /* stellt sicher, dass Block-Breite angewendet wird */
}

/* --- Inhalt --- */
.content {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}

/* --- Galerie --- */
.gallery-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

.gallery-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #333;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

/* --- Footer --- */
footer {
  background: #222;
  color: #eee;
  text-align: center;
  padding: 30px 20px;
  margin-top: 40px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

/* --- Buttons --- */
button, .btn {
  background: #006400;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover, .btn:hover {
  background: #228B22;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  header h1 {
    font-size: 2em;
  }

  header nav a {
    display: block;
    margin: 10px 0;
  }

  .hero {
    margin: 20px auto;
    padding: 20px;
  }
}






