/* Grundlegende Stile */
body {
  font-family: 'Helvetica Neue', sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
  background: #121212;
}

/* Hintergrundvideo */
#background-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1; /* Stellt sicher, dass das Video hinter allem anderen liegt */
  object-fit: cover;
  background-color: #000;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  padding: 15px 30px;
  font-size: 1.1em;
  display: flex;
  justify-content: center;
  gap: 20px;
  z-index: 10;
  backdrop-filter: blur(4px);
  font-family: 'Helvetica Neue', sans-serif;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  text-transform: uppercase;
}

nav a:hover {
  color: #e6a756;
}

/* Sprachauswahl */
.language-selector {
  position: fixed;
  top: 70px;
  right: 30px;
  z-index: 20;
  display: flex;
  gap: 10px;
}

/* Inhaltsbereiche */
.page-content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.3); /* Transparenter Hintergrund (30% Deckkraft) */
  border-radius: 16px;
  padding: 40px;
  max-width: 900px;
  margin: 140px auto 60px;
  color: #fff;
  text-align: left;
  font-family: 'Helvetica Neue', sans-serif;
  backdrop-filter: blur(3px);
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  line-height: 1.6;
}

/* Überschriften und Texte */
.page-content h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
}

.page-content p {
  max-width: 800px;
  margin: 0 auto 1em;
  font-size: 1.2em;
  line-height: 1.6;
  text-align: left;
}

/* Listen */
.page-content ul {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 20px;
  padding-left: 20px;
  line-height: 1.6;
}

/* Startseite spezifische Stile */
.main-title {
  font-size: 8em;
  white-space: nowrap;
  color: white;
  text-shadow: 5px 5px 12px rgba(0, 0, 0, 0.85);
  font-weight: 900;
  font-family: 'Helvetica Neue', sans-serif;
}

.subtitle {
  font-size: 3.5em;
  color: white;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.75);
  font-weight: 400;
  margin-top: 0.5em;
  font-family: 'Helvetica Neue', sans-serif;
}

.home-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* Formulare */
form {
  margin-top: 2em;
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

input, textarea {
  padding: 10px;
  border-radius: 4px;
  border: none;
}

button {
  padding: 12px;
  background-color: #e6a756;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #cf8c2f;
}

/* Links */
a {
  color: #e6a756;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #cf8c2f;
}

/* Bilder */
.rotating-image-left {
  transform: rotate(-4deg);
  opacity: 0.9;
}

.rotating-image-right {
  transform: rotate(4deg);
  opacity: 0.9;
}

/* Button-Stile */
.cta-button {
  margin-top: 20px;
  display: inline-block;
  padding: 12px 24px;
  background: #e6a756;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #cf8c2f;
}

/* Responsive Design für kleinere Bildschirme */
@media (max-width: 768px) {
  .main-title {
    font-size: 4em;
  }
  
  .subtitle {
    font-size: 2em;
  }
  
  nav {
    flex-wrap: wrap;
  }
  
  .page-content {
    margin: 100px auto 40px;
    padding: 30px;
  }
}.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
}

.button:hover {
  background-color: #2980b9;
}