@charset "utf-8";

/* Eigene Schrift einbinden (nur einmal) */
@font-face {
  font-family: 'RX100';
  src: url('assets/fonts/RX100-Regular.woff2') format('woff2'),
       url('assets/fonts/RX100-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Basis-Reset + Schrift */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'RX100', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html, body {
  height: 100%;
  overflow-x: hidden;
  background: #000;
  color: #fff;
}

/* -------------------
   HERO
   -------------------*/
.hero {
  position: relative;
  width: 100%;
  height: 80vh; /* auf Desktop großzügiger */
  min-height: 480px;
  overflow: hidden;
display: flex;
  justify-content: center;   /* horizontal zentrieren */
  align-items: center;        /* vertikal zentrieren */
  padding: 36px;
}

/* Container für Logo + Titel (flex) */
.hero-content {
  display: flex;
  flex-direction: row;        /* Desktop: nebeneinander */
  align-items: center;
  justify-content: center;    /* gesamten Block mittig */
  gap: 20px;
  z-index: 3;
  text-align: center;         /* Text mittig */
}

/* Logo */
.hero-logo {
  height: 160px;
  width: auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.6));
}

/* Titel */
.hero-text {
  text-align: center;
}

.hero-subline {
  margin-top: 0.2rem;
	width:auto;/* Abstand zur Überschrift */
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: white;
  text-shadow: 0 4px 20px rgba(0,0,0,0.7);
}

/* Hintergrundvideo */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

/* Falls du statt Video mobil ein Bild zeigen willst, du kannst hier ein background-image setzen. */

/* -------------------
   SECTIONS (Allgemein)
   -------------------*/
main {
  background: #fff;
  color: #111;
}

section {
  padding: 80px 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
section h2 {
	text-align: center;
}

.contact {text-align: center}
/* -------------------
   BIO-SECTION
   -------------------*/
.bio-section .bio-row {
  display: flex;
  gap: 32px;
  align-items: center;
  margin: 48px 0;
}

.bio-row.reverse {
  flex-direction: row-reverse;
}

.bio-img {
  width: 40%;
  max-width: 360px;
  border-radius: 16px;
  object-fit: cover;
}

.bio-text {
  width: 60%;
  text-align: left;
}

/* -------------------
   RESPONSIVE
   -------------------*/
@media (max-width: 900px) {
  .hero {
    height: 65vh;
    padding: 28px;
  }

  .hero-logo {
    height: 64px;
  }
}

@media (max-width: 600px) {
  .hero {
    height: 50vh;
    padding: 18px;
    align-items: center;
  }

  /* Logo über Titel (untereinander) */
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .hero-logo {
    width: auto;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subline {
    font-size: 1.2rem;
  }

  /* Bio: Bilder unter Text in Mobil */
  .bio-section .bio-row {
    flex-direction: column;
  }

  .bio-img, .bio-text {
    width: 100%;
  }

  .bio-text {
    text-align: center;
  }
}
.legal-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
    color: white;
}

.legal-page h1, .legal-page h2 {
    margin-bottom: 15px;
}

.legal-page p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.site-footer {
    width: 100%;
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
    color: white;
    font-size: 0.9rem;
}

.site-footer a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.site-footer a:hover {
    opacity: 1;
}

