html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: 'Open Sans', sans-serif;
}

.video-bg-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  z-index:0;
}

.video-bg-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.5); /* optional: dunkler machen für Textlesbarkeit */
  pointer-events: none;
}
/* Logo */
.overlay-logo {
  max-width: 180px;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  transition: transform 0.3s ease;
}

.overlay-logo:hover {
  transform: scale(1.05);
}

/* === TEXT & BUTTON ÜBER DEM VIDEO === */
.overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 0 15px;
  text-align: center;
  color: #fff8dc;
}

/* === TEXT IN EINER ZEILE === */
.welcome-inline-text {
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
  color: #fff8dc;
  white-space: nowrap;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

/* === BUTTON DESIGN === */
.enter-button {
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: bold;
  color: #fff8dc;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid #fff8dc;
  border-radius: 20px;
  text-decoration: none;
  text-transform: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  white-space: nowrap;
}

.enter-button:hover {
  background: rgba(255, 215, 0, 0.15);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* === MOBILE OPTIMIERUNG === */
@media (max-width: 480px) {
  .welcome-inline-text {
    font-size: 0.9rem;
  }

  .enter-button {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
  }

  .overlay-content {
    flex-direction: column;
    gap: 8px;
  }
}

/* === TABLET === */
@media (max-width: 768px) {
  .welcome-inline-text {
    font-size: 1rem;
  }

  .enter-button {
    font-size: 0.8rem;
    padding: 0.35rem 1rem;
  }
}

/* === ANIMATION OPTIONAL === */
@keyframes fadeInUpOnce {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-once {
  animation: fadeInUpOnce 1.8s ease-out forwards;
}
/* Sprachumschaltung unter dem Button */
.lang-switch.below-button {
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #d4af37;
}

.lang-switch.below-button a {
  text-decoration: none;
  color: #d4af37;
  margin: 0 6px;
  transition: color 0.3s ease;
}

.lang-switch.below-button a:hover {
  color: #fff;
  text-shadow: 0 0 6px #d4af37;
}