/* FestiFlow website, monochrome huisstijl passend bij de app. */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #0b0b0c;
  --ink-soft: #4a4a4f;
  --ink-faint: #8a8a90;
  --line: #e7e7ea;
  --bg: #ffffff;
  --bg-soft: #f6f6f7;
  --radius: 18px;
  --maxw: 1080px;
  --shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 30px rgba(0,0,0,.06);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -.02em; text-decoration: none; }
.brand img { width: 30px; height: 30px; }
.nav { display: flex; gap: 26px; align-items: center; }
.nav a { text-decoration: none; color: var(--ink-soft); font-size: 15px; font-weight: 500; }
.nav a:hover { color: var(--ink); }

/* Hero */
.hero { text-align: center; padding: 96px 0 72px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -20% 0 auto 0; height: 520px; z-index: -1;
  background: radial-gradient(60% 60% at 50% 0%, #f0f0f2 0%, rgba(246,246,247,0) 70%);
}
.hero img.mark { display: block; width: 128px; height: 128px; margin: 0 auto 28px; }
.hero h1 { font-size: clamp(38px, 6vw, 64px); font-weight: 800; letter-spacing: -.04em; line-height: 1.02; }
.hero p.sub { margin: 20px auto 0; max-width: 560px; font-size: clamp(17px, 2.4vw, 20px); color: var(--ink-soft); }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 26px; padding: 7px 15px; border-radius: 999px;
  background: var(--ink); color: #fff; font-size: 13px; font-weight: 600;
  letter-spacing: .01em;
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; opacity: .9; }

.cta-row { display: flex; gap: 12px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 22px; border-radius: 12px; font-weight: 600; font-size: 15px;
  text-decoration: none; border: 1px solid var(--ink); transition: transform .12s ease, background .12s ease;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }

/* Sections */
section { padding: 72px 0; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; letter-spacing: -.03em; }
.section-title p { margin-top: 12px; color: var(--ink-soft); font-size: 17px; }

.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (min-width: 760px) { .grid { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow);
}
.card .ic {
  width: 44px; height: 44px; border-radius: 12px; background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.card .ic svg { width: 22px; height: 22px; stroke: var(--ink); }
.card h3 { font-size: 17px; font-weight: 700; letter-spacing: -.01em; }
.card p { margin-top: 6px; font-size: 14.5px; color: var(--ink-soft); }

/* About */
.about { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about .wrap { max-width: 720px; text-align: center; }
.about h2 { font-size: clamp(24px, 4vw, 34px); font-weight: 800; letter-spacing: -.03em; }
.about p { margin-top: 18px; font-size: 18px; color: var(--ink-soft); }

/* Footer */
.site-footer { padding: 48px 0; border-top: 1px solid var(--line); }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; }
.site-footer .brand { font-size: 15px; }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-links a { text-decoration: none; color: var(--ink-soft); font-size: 14.5px; }
.foot-links a:hover { color: var(--ink); text-decoration: underline; }
.copyright { width: 100%; margin-top: 8px; color: var(--ink-faint); font-size: 13px; }

/* Legal pages */
.legal { padding: 60px 0 90px; }
.legal .wrap { max-width: 760px; }
.legal .back { display: inline-block; margin-bottom: 28px; color: var(--ink-soft); text-decoration: none; font-size: 14.5px; }
.legal .back:hover { color: var(--ink); }
.legal h1 { font-size: clamp(30px, 5vw, 44px); font-weight: 800; letter-spacing: -.03em; }
.legal .updated { margin-top: 10px; color: var(--ink-faint); font-size: 14px; }
.legal h2 { margin-top: 40px; font-size: 21px; font-weight: 700; letter-spacing: -.02em; }
.legal p, .legal li { margin-top: 12px; color: var(--ink-soft); font-size: 16px; }
.legal ul { margin-top: 12px; padding-left: 22px; }
.legal li { margin-top: 8px; }
.legal a { color: var(--ink); }
.legal strong { color: var(--ink); font-weight: 600; }
