/* ===========================================================
   True Crime Escape – Teaser / Preview (Ab August 2026)
   Eigenständige Datei – unabhängig von der Hauptseite.
   =========================================================== */
:root {
  --yellow: #fdc643;
  --bg-dark: #0f0f0f;
  --font-head: "Archivo", "Gadugi", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }

/* ===== Teaser-Hero ===== */
.teaser {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.teaser__bg {
  position: absolute; inset: 0;
  background: url("assets/hero-street.png") center / cover no-repeat;
  z-index: -2;
  animation: kenburns 34s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  from { transform: scale(1.05) translate(0, 0); }
  to   { transform: scale(1.14) translate(-1.6%, -1.1%); }
}
.teaser__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.32) 35%, rgba(15,15,15,.92) 100%);
  z-index: -1;
}

.teaser__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(90px, 12vh, 150px) clamp(20px, 5vw, 40px) 60px;
}

.teaser__brand {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: .9rem;
  opacity: .85;
  margin: 0;
}
.teaser__badge {
  display: inline-block;
  background: var(--yellow);
  color: #0a0a0a;
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: 1px;
  padding: 11px 24px;
  border-radius: 999px;
  font-size: 1.02rem;
  box-shadow: 0 12px 34px rgba(0,0,0,.45);
}
.teaser__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 5rem);
  line-height: 1.02;
  letter-spacing: 1px;
  margin: 6px 0 0;
  text-shadow: 0 4px 30px rgba(0,0,0,.6);
}
.teaser__subtitle {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--yellow);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  margin: 0;
}
.teaser__text {
  max-width: 560px;
  color: #e9e9e9;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.6;
  margin: 8px 0 0;
}

.teaser__product {
  margin: 30px 0 0;
  width: min(520px, 92%);
}
.teaser__product img {
  border-radius: 18px;
  box-shadow: 0 28px 60px rgba(0,0,0,.55);
}

.teaser__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 26px 0 0;
  padding: 0;
}
.teaser__pills span {
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: .9rem;
  font-weight: 600;
}

/* ===== Footer ===== */
.teaser__footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 22px 20px 30px;
  font-size: .85rem;
  color: #bdbdbd;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.28);
}
.teaser__footer a { color: #dadada; text-decoration: none; }
.teaser__footer a:hover { color: var(--yellow); }

@media (prefers-reduced-motion: reduce) {
  .teaser__bg { animation: none; }
}

/* ===== Rechtstexte (Impressum / Datenschutz) ===== */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(70px, 9vh, 120px) clamp(20px, 5vw, 40px) 80px;
}
.legal h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 1px;
  margin: 0 0 26px;
}
.legal h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 32px 0 8px;
}
.legal p { line-height: 1.7; color: #dcdcdc; margin: 0 0 12px; }
.legal a { color: var(--yellow); }
.legal__back {
  display: inline-block;
  margin-top: 38px;
  color: #dadada;
  text-decoration: none;
  font-weight: 600;
}
.legal__back:hover { color: var(--yellow); }
