:root {
  --primary-color: #6a0dad;
  --accent-color: #9b30ff;
  --light-accent: #e6e6fa;
  --dark-bg: #ffffff;   /* Hintergrund jetzt Weiß */
  --text-color: #000000; /* Text jetzt Schwarz */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: var(--dark-bg);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Hintergrundvideo */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Video wird skaliert, um den Bildschirm zu füllen */
  z-index: -1; /* Hinter allen Inhalten */
}

/* Optional: leichte Abdunklung, falls Text schwer lesbar ist */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2); /* Transparenter Overlay */
  z-index: 0;
}

/* Globale Sektionen */
section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

/* Responsiveness */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem !important;
  }
  .hero-subtitle {
    font-size: 1rem !important;
  }
  .cta-button {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
  }
}
