/* Grundlayout */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
  text-align: center;
}

/* Schwarze Kopfzeile mit Navigation */
header {
  background-color: #222;
  color: white;
  padding: 20px 0;
}

header h1 {
  margin: 0;
  font-size: 28px;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #ffcc00;
}

/* Intro-Bereich mit kleinem Bild */
.intro {
  padding: 20px;
}

.intro img {
  width: 150px; /* Größe des Startseitenbildes */
  border-radius: 8px;
  margin-bottom: 15px;
}

.intro h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.intro p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Einheitliche Inhaltsboxen */
.section-box {
  max-width: 800px;
  margin: 30px auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

/* Preislisten-Formatierung */
.prices-list {
  list-style: none;
  padding: 0;
  font-size: 18px;
}

.prices-list li {
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
}

.prices-list li:last-child {
  border-bottom: none;
}

/* Gelber Button fürs Buchungsformular */
.buchung-button {
  display: inline-block;
  background-color: #ffcc00; /* Gelb */
  color: black; /* Schwarze Schrift */
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.buchung-button:hover {
  background-color: #e6b800; /* Dunkleres Gelb beim Hover */
}

/* Footer */
footer {
  background-color: #222;
  color: white;
  padding: 15px 0;
  margin-top: 40px;
}
