/* boldsprint.ai – Coming Soon theme styles */
:root {
  --bg: #101114;
  --text: #EAEAF1;
  --muted: #B8BBC7;
  --brand: #E8C4FF; /* soft lavender for wordmark */
  --pill-bg: #1A1B20;
  --accent1: #8A5BFF; /* violet */
  --accent2: #FF5EA1; /* pink */
  --accent3: #5B7BFF; /* blue */
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

main.coming-soon {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-items: center;
  justify-items: center;
  padding: clamp(16px, 4vw, 40px);
  overflow: hidden;
}

.brand { text-align: center; z-index: 1; position: relative; }
.logo-wrap { display: flex; justify-content: center; }
.logo { width: clamp(80px, 12vw, 140px); height: auto; filter: drop-shadow(0 6px 24px rgba(0,0,0,.35)); margin-bottom: 16px; }

/* Deer layering around the wordmark */
.deer-stage {
  position: relative;
  width: clamp(220px, 44vw, 620px);
  margin: clamp(6px, 1.2vw, 12px) auto 6px;
  height: auto;
}
.deer {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 48px rgba(0,0,0,.45));
}
.deer-back {
  position: relative;
  z-index: 0; /* sits behind the wordmark */
  transform: translateY(-6px);
}
.deer-front {
  position: absolute;
  inset: 0;
  z-index: 3; /* sits above the wordmark */
  /* Show only the upper part so it looks like it crosses the heading */
  clip-path: inset(0 0 58% 0);
  pointer-events: none;
}

.wordmark {
  font-size: clamp(42px, 9vw, 120px);
  line-height: 0.95;
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand);
  text-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 18px 40px rgba(0,0,0,.35);
  position: relative;
  z-index: 2; /* between deer-back and deer-front */
}

.tagline {
  margin: 0 auto;
  max-width: 900px;
  font-size: clamp(14px, 2.4vw, 22px);
  color: var(--muted);
}

.status { text-align: center; margin-top: 28px; z-index: 1; }
.pill {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(138,91,255,.15), rgba(255,94,161,.15));
  border: 1px solid rgba(255,255,255,0.14);
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: clamp(14px, 3vw, 20px);
  box-shadow: 0 6px 24px rgba(138,91,255,.18), inset 0 0 24px rgba(255,94,161,.10);
}
.note { color: var(--muted); margin: 12px 0 0; }
.contact { color: var(--muted); margin: 6px 0 0; }
.contact a { color: #ffffff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.25); }
.contact a:hover { border-color: rgba(255,255,255,.6); }

.footer { z-index: 1; opacity: .9; margin-top: 28px; text-align: center; }
.footer p { font-size: 13px; color: var(--muted); margin: 10px 0 0; }

/* Legal links and language switcher */
.footer .legal { margin-bottom: 6px; }
.footer .legal a { color: var(--muted); text-decoration: none; border-bottom: 1px dashed rgba(255,255,255,.2); font-size: 13px; }
.footer .legal a:hover { color: #fff; border-bottom-style: solid; }
.footer .legal .sep { margin: 0 10px; color: rgba(255,255,255,.3); }

.footer .lang-switch { margin-top: 6px; }
.footer .lang-switch .lang { color: var(--muted); font-size: 12px; text-decoration: none; margin: 0 6px; opacity: .8; }
.footer .lang-switch .lang:hover { color: #fff; opacity: 1; }
.footer .lang-switch .lang.is-active { color: #fff; opacity: 1; font-weight: 600; }

/* Content pages (Impressum / Datenschutz) */
main.page { position: relative; min-height: 100vh; padding: clamp(16px, 4vw, 40px); }
.page-article { max-width: 860px; margin: 0 auto; z-index: 1; position: relative; }
.page-title { font-size: clamp(28px, 5vw, 48px); margin: 10px 0 16px; color: #fff; }
.page-content { color: var(--text); line-height: 1.6; }
.page-content h2, .page-content h3 { color: #fff; margin-top: 1.6em; }
.page-content a { color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,.35); }
.page-content a:hover { text-decoration-color: rgba(255,255,255,.7); }

/* Gradient Orbs */
.gradient {
  position: absolute;
  width: min(60vw, 560px);
  height: min(60vw, 560px);
  filter: blur(30px);
  will-change: transform;
}
.gradient--tl {
  top: -20vw; left: -20vw;
  background: radial-gradient(50% 50% at 50% 50%, rgba(173,101,255,0.45) 0%, rgba(173,101,255,0.18) 45%, rgba(173,101,255,0) 70%);
}
.gradient--br {
  right: -20vw; bottom: -25vw;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255,94,161,0.55) 0%, rgba(91,123,255,0.35) 45%, rgba(0,0,0,0) 70%);
}

@media (prefers-color-scheme: light) {
  body { background: #0f1013; color: var(--text); }
}
