/* Alovai Demo — sitewide styling. Bewust licht en neutraal: dit is de
   template-basis die nieuwe sites overschrijven met hun eigen identiteit. */
:root {
  --bg: #fbfaf8;
  --surface: #ffffff;
  --ink: #23201c;
  --ink-dim: #6f675e;
  --accent: #b4552d;
  --accent-soft: #f6e8e1;
  --line: #e7e2da;
  --radius: 12px;
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.6;
  font-size: 17px;
}

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.01em; }
a { color: var(--accent); }

/* ── nav ── */
.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-logo-link { text-decoration: none; color: var(--ink); }
.nav-wordmark { font-size: 20px; font-weight: 700; }
.nav-wordmark em { color: var(--accent); font-style: italic; }

/* ── hero ── */
.hero {
  max-width: 820px;
  margin: 0 auto;
  padding: 96px 28px 72px;
  text-align: center;
}
.eyebrow {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 22px;
}
.hero h1 { font-size: clamp(34px, 6vw, 58px); margin-bottom: 24px; }
.hero-sub { max-width: 620px; margin: 0 auto 34px; color: var(--ink-dim); font-size: 19px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 13px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
}
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost {
  display: inline-block;
  padding: 13px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ── features ── */
.features { max-width: 1000px; margin: 0 auto; padding: 48px 28px 72px; }
.features h2 { text-align: center; font-size: clamp(24px, 3.6vw, 34px); margin-bottom: 40px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.feature h3 { font-size: 18px; margin-bottom: 10px; }
.feature p { color: var(--ink-dim); font-size: 15.5px; }

/* ── widget-secties ── */
.waitlist-section, .faq-section { max-width: 760px; margin: 0 auto; padding: 40px 28px; }
.waitlist-section {
  background: var(--accent-soft);
  border-radius: var(--radius);
  margin-bottom: 32px;
}

/* ── prose-pagina's (about e.d.) ── */
.page { max-width: 720px; margin: 0 auto; padding: 72px 28px; }
.prose h1 { font-size: clamp(30px, 5vw, 44px); margin-bottom: 24px; }
.prose h2 { font-size: 24px; margin: 36px 0 12px; }
.prose p { margin-bottom: 16px; color: var(--ink-dim); }
.prose .btn-primary { margin-top: 24px; }

/* ── footer ── */
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 64px;
  padding: 40px 28px;
  text-align: center;
  color: var(--ink-dim);
  font-size: 15px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.footer-tagline { max-width: 560px; }

@media (max-width: 600px) {
  .hero { padding-top: 64px; }
}
