/* LevTov — minimale, warme placeholder
   Geen externe afhankelijkheden: systeemfonts, alles self-contained. */

:root {
  /* warme, lichte basis; accenten uit het brand-beeldmerk */
  --bg:        #f6f1e7;
  --bg-glow:   #fcf9f2;
  --ink:       #2a2018;
  --ink-soft:  #6b5c4e;
  --accent:     #4a72a8;   /* brand-blauw uit het beeldmerk */
  --accent-soft:#5b86c0;
  --accent-ink: #ffffff;
  --line:      rgba(42, 32, 24, 0.14);

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:        #1b1916;
    --bg-glow:   #241f18;
    --ink:       #efe8da;
    --ink-soft:  #b1a895;
    --accent:     #7ba4d4;
    --accent-soft:#5b86c0;
    --accent-ink: #14233a;
    --line:      rgba(239, 232, 218, 0.16);
  }
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background-color: var(--bg);
  /* zachte, warme gloed van bovenaf */
  background-image: radial-gradient(120% 90% at 50% -10%, var(--bg-glow), transparent 60%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.stage {
  min-height: 100svh;
  min-height: 100vh; /* fallback */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 2rem 1.5rem max(2rem, env(safe-area-inset-bottom));
  text-align: center;
}

/* beeldmerk (badge van levtov.nl) */
.mark {
  width: clamp(112px, 24vw, 148px);
  height: auto;
  margin-bottom: 1.6rem;
  border-radius: 22px;
  filter: drop-shadow(0 8px 26px rgba(40, 60, 90, 0.22));
}

/* woordmerk: rustig, sans-serif, ingetogen */
.wordmark {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(1.65rem, 5.5vw, 2.3rem);
  letter-spacing: 0.015em;
  line-height: 1;
  margin: 0;
}

/* tagline */
.tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 3.4vw, 1.35rem);
  color: var(--ink-soft);
  margin: 0.85rem 0 0;
}

/* contact */
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin: 2.6rem 0 0;
}

.email {
  display: inline-block;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease;
}

.email:hover,
.email:focus-visible {
  color: var(--accent-ink);
  background-color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.email:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* kopieer-knopje: rustig en secundair */
.copy {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: none;
  border: 0;
  padding: 0.25rem 0.4rem;
  cursor: pointer;
  border-radius: 6px;
  transition: color .2s ease;
}

.copy:hover { color: var(--ink); }
.copy:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.copy.is-copied { color: var(--accent); }

/* ---- binnenkomst-animatie ---- */
.mark, .wordmark, .tagline, .contact {
  opacity: 0;
  transform: translateY(10px);
}

body.is-ready .mark,
body.is-ready .wordmark,
body.is-ready .tagline,
body.is-ready .contact {
  opacity: 1;
  transform: none;
  transition: opacity .8s ease, transform .8s ease;
}

body.is-ready .wordmark  { transition-delay: .12s; }
body.is-ready .tagline   { transition-delay: .24s; }
body.is-ready .contact   { transition-delay: .38s; }

/* bewegingsarm: alles rustig */
@media (prefers-reduced-motion: reduce) {
  .mark, .wordmark, .tagline, .contact {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .email:hover, .email:focus-visible { transform: none; }
}
