body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
  padding-top: 300px; /* 240px Bild + ca. 60px Navigation */
  margin: 0;
}

/* Header fixiert oben */
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff4c2;
  border-bottom: 1px solid #e0c97f;
  z-index: 1000;
  text-align: center;
}

/* Header-Bild mit reduzierter Höhe */
.header-fixed img {
  width: 100%;
  height: 240px; /* ca. 1/3 schmaler als vorher */
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;
}

/* Navigation fix unter dem Header */
.nav-fixed {
  position: fixed;
  top: 240px; /* exakt unter dem Bild */
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 12px;
  border-bottom: 3px solid #e0c97f;
  z-index: 1001;
}

/* Navigation Links */
.nav-fixed a {
  text-decoration: none;
  color: #444;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.3s;
}

.nav-fixed a:hover {
  background: #f0e0a0;
}

/* Hauptbereich */
main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

main h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #d49b00;
}

main h2 {
  font-size: 22px;
  margin-top: 30px;
  color: #c58c00;
}

main p {
  margin-bottom: 16px;
}

/* Galerie */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.gallery img {
  width: 100%;
  height: auto;
  display: block;
}

/* Formulare */
form input,
form textarea {
  width: 100%;
  max-width: 500px;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

form button {
  background-color: #f0c040;
  color: #333;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
}

form button:hover {
  background-color: #e0b030;
}
