/* Grundlayout */
html, body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background: #111;
  color: #fff;
  height: 100%;
  overflow-y: auto;
}

/* Logo */
header {
  text-align: center;
  padding: 1rem;
}

.logo {
  max-width: 120px;
  height: auto;
}

/* Linkliste auf Startseite */
#link-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
}

/* Link-Buttons */
.link-button {
  background: #000;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border: 2px solid #fff;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.2);
  transition: background 0.3s;
  width: min(320px, 90vw);
  text-align: center;
}

/* Hover-Effekt */
.link-button:hover,
.form-button:hover {
  background: #222;
}

/* Inhaltsbereich */
.info-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
  width: 80%;
}

/* Formular */
.wunsch-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.wunsch-form label {
  font-weight: bold;
  color: #fff;
}

.wunsch-form input,
.wunsch-form select,
.wunsch-form textarea {
  padding: 0.5rem;
  border-radius: 4px;
  border: none;
  background: #222;
  color: #fff;
  font-size: 1rem;
}

/* Pflichtfeld-Hinweis */
.pflicht {
  color: #f00;
}

/* Button-Gruppe */
.form-buttons {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  width: 80%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Einheitliche Buttons */
.form-button {
  flex: 1;
  text-align: center;
  padding: 0.75rem;
  background: #000;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.2);
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
  font-family: inherit;
  font-size: 1rem;
  display: inline-block;
  max-width: 280px;
  width: 100%;
}

/* Audiogalerie */
.audio-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 1rem auto;
  width: 80%;
  max-width: 800px;
}

.audio-item {
  background: #222;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.1);
}

.audio-item p {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.audio-item audio {
  width: 100%;
  margin-bottom: 0.5rem;
}

/* Mobile-Optimierung */
@media (max-width: 480px) {
  .form-buttons {
    flex-direction: column;
    align-items: center;
  }

  .form-button {
    max-width: 90vw;
  }

  .audio-list {
    width: 90%;
  }

  .info-content {
    width: 90%;
  }
}
