/* ============================================================
   Imaginara – Coming Soon  |  style.css
   ============================================================ */

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

:root {
  --gold:   #F5C842;
  --gold2:  #C9A84C;
  --dark:   #08060F;
  --text:   #EDE8D8;
  --muted:  #9A8FA0;
  --radius: 10px;
  --font:   'Georgia', 'Times New Roman', serif;
  --sans:   system-ui, -apple-system, sans-serif;
}

html, body {
  min-height: 100%;
  background: var(--dark);
  color: var(--text);
  font-family: var(--sans);
  scroll-behavior: smooth;
}

/* ── Navigation ─────────────────────────────────────────── */
.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: linear-gradient(to bottom, rgba(8,6,15,.92) 0%, transparent 100%);
  backdrop-filter: blur(4px);
}

.nav-brand {
  font-family: var(--font);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: .04em;
  text-shadow: 0 0 18px rgba(245,200,66,.5);
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.hero-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: contain;
  object-position: center center;
  z-index: 0;
}

/* Phone: Hochformat-Bild füllt den Bildschirm vollständig */
@media (max-width: 600px) {
  .hero-img {
    max-height: 100svh;
    object-fit: cover;
    object-position: center top;
  }

  .hero-content {
    padding-bottom: 32px;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(8,6,15,.08) 0%,
    rgba(8,6,15,.0)  30%,
    rgba(8,6,15,.45) 80%,
    rgba(8,6,15,.88) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  padding: 0 20px 48px;
  max-width: 680px;
  width: 100%;
}

.coming-soon-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(245,200,66,.4);
  border-radius: 20px;
  padding: 5px 18px;
  margin-bottom: 18px;
  background: rgba(245,200,66,.08);
}

.hero-tagline {
  font-family: var(--font);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  text-shadow: 0 2px 12px rgba(0,0,0,.8);
}

/* ── Fixed legal bar ─────────────────────────────────────── */
.legal-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 20px;
  background: linear-gradient(to top, rgba(8,6,15,.85) 0%, transparent 100%);
  font-size: .78rem;
  color: var(--muted);
}

.legal-bar a {
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.legal-bar a:hover { color: var(--gold); }

/* ── Legal pages ─────────────────────────────────────────── */
.legal-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 110px 28px 80px;
}

.legal-wrap h1 {
  font-family: var(--font);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--gold);
  margin-bottom: 32px;
  font-style: italic;
}

.legal-wrap h2 {
  font-size: 1.05rem;
  color: var(--gold2);
  margin: 32px 0 10px;
  font-family: var(--sans);
  font-weight: 600;
}

.legal-wrap p, .legal-wrap li {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--text);
  opacity: .88;
}

.legal-wrap ul { padding-left: 1.4em; margin-top: 8px; }
.legal-wrap li { margin-bottom: 6px; }
.legal-wrap a { color: var(--gold2); }
.legal-wrap a:hover { color: var(--gold); }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 36px;
  font-size: .85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.back-link:hover { color: var(--gold); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 480px) {
  .topnav { padding: 12px 16px; }
  .hero-content { padding-bottom: 48px; }
  .legal-wrap { padding: 90px 18px 60px; }
}
