:root {
  --gelb: #FFCB04;
  --weiss: #1f1f1f;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  /* color: var(--gelb); */
  text-align: center;
  background-color: #1f1f1f;
}

/* --- Logo --- */
.logo {
  position: fixed;
  top: 60px; /* etwas weiter nach unten */
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 136px;
  display: block;
  z-index: 5;
}

/* --- Button Wrapper: immer exakt in der Mitte des Bildschirms --- */
.button-wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 267px;
  height: 42px;
  border-radius: 16px;
  border: 2px solid var(--gelb);
  background: var(--gelb);
  color: var(--weiss);
  font-size: 20px;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  background: transparent;
  color: var(--gelb);
  transform: translateY(-1px);
  outline: none;
}
									  
.cta{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px; /* Abstand zwischen den Buttons */
}

@media (min-width: 480px) {
  .btn {
    width: 280px;
  }
.logo {
  position: fixed;
  top: 130px; /* etwas weiter nach unten */
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 136px;
  display: block;
  z-index: 5;
}
										
}

/* --- Social Icons unterhalb der Buttons --- */
.socials {
  position: fixed;
  top: calc(50% + 100px); /* bleibt direkt unter Buttons */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  z-index: 5;
}

.social {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  background: var(--gelb);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.social:hover {
  transform: translateY(-3px);
}

.social img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

/* --- Sprachauswahl --- */
.lang {
  position: fixed;
  top: calc(50% + 180px); /* näher an die Social Icons herangerückt */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  justify-content: center;
}

.lang__link {
  position: relative;
  color: var(--gelb);
  font-size: 20px;
  text-decoration: none;
}

.lang__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -0.5px;             /* Linie direkt unterm Text */
  height: 2px;
  width: 100%;
  background: var(--gelb);
  transform: scaleX(0);              /* Start: unsichtbar (zusammengedrückt) */
  transform-origin: left center;     /* von links nach rechts “wipen” */
  transition: transform 220ms ease;
}

/* Hover + Tastatur-Focus: Linie fährt von links nach rechts aus */
.lang__link:hover::after,
.lang__link:focus-visible::after {
  transform: scaleX(1);
}
/* Optional: wenn Nutzer reduzierte Animation wünscht, zeige Linie direkt */
@media (prefers-reduced-motion: reduce) {
  .lang__link::after { transition: none; }
}
/* --- Footer (am unteren Rand, zentriert) --- */
.footer {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 5;
  white-space: nowrap; /
}

.copyright {
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--gelb);
}

.legal {
  font-size: 12px;
  line-height: 1.4;
  color: var(--gelb);
}

.legal__link {
  color: var(--gelb);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Hintergrundvideo */
.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;                 /* bleibt hinter allem anderen */
  opacity: 0.80;               /* leicht transparent für dezente Wirkung */
  filter: brightness(0.5);     /* dunkelt es leicht ab */
  pointer-events: none;        /* verhindert Klicks auf das Video */
}

/* Optional: sanfter Overlay-Verlauf für Lesbarkeit */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.5));
}

/* --- Responsives Verhalten --- */
@media (max-height: 600px) {
  .logo {
    top: 50px;
  }

  .button-wrapper {
    top: 47%;
  }

  .socials {
    top: calc(50% + 80px);
  }

  .lang {
    top: calc(50% + 140px);
  }
}