/* =============================================
   Seijts ID — Website stylesheet
   Versie: 1.1 | 2026-07-06
   Kleuren: navy #004878 | light-blue #48B8E8
   Font: Sora (self-hosted, geen Google Fonts)
   ============================================= */

/* --- Sora font (self-hosted) --- */
@font-face {
  font-family: 'Sora';
  src: url('fonts/sora-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sora';
  src: url('fonts/sora-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sora';
  src: url('fonts/sora-latin-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- Variabelen --- */
:root {
  --bg:           #0F0F14;
  --bg-card:      rgba(255, 255, 255, 0.025);
  --bg-trust:     rgba(0, 72, 120, 0.18);
  --navy:         #004878;
  --navy-hover:   #005c96;
  --blue:         #48B8E8;
  --text:         #D8D8E8;
  --text-muted:   #8888AA;
  --text-dim:     #606080;
  --border:       rgba(72, 184, 232, 0.15);
  --border-card:  rgba(72, 184, 232, 0.18);
  --radius-card:  12px;
  --radius-btn:   8px;
  --max-width:    960px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Sora', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

img { display: block; max-width: 100%; }

a { color: inherit; }

/* --- Hulpklassen --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =============================================
   NAVIGATIE
   ============================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(15, 15, 20, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.nav__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--blue);
}


/* =============================================
   HERO
   ============================================= */
.hero {
  text-align: center;
  padding: 5.5rem 1.5rem 4.5rem;
}

.hero__wordmark-img {
  height: clamp(90px, 14vw, 140px);
  width: auto;
  margin: 0 auto 1.75rem;
  display: block;
}

.hero__tagline {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 400px;
  margin: 0 auto 0.375rem;
  line-height: 1.7;
}

.hero__sub {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2.75rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--navy);
  color: #D8E8F8;
  text-decoration: none;
  padding: 0.9375rem 2.25rem;
  border-radius: var(--radius-btn);
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: 'Sora', sans-serif;
  border: 1px solid rgba(72, 184, 232, 0.35);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cta-btn:hover {
  background: var(--navy-hover);
  border-color: var(--blue);
}

.cta-btn svg {
  flex-shrink: 0;
  stroke: currentColor;
}

.hero__launch {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.875rem;
  letter-spacing: 0.03em;
}

/* =============================================
   TRUST-BALK
   ============================================= */
.trust-bar {
  background: var(--bg-trust);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.375rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.trust-bar__item svg {
  color: var(--blue);
  flex-shrink: 0;
}

.trust-bar__divider {
  color: rgba(72, 184, 232, 0.2);
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

/* =============================================
   FEATURE CARDS
   ============================================= */
.features {
  padding: 4rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 1.625rem;
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 72, 120, 0.45);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
  color: var(--blue);
  flex-shrink: 0;
}

.feature-card__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #C8C8E0;
  margin-bottom: 0.5rem;
}

.feature-card__text {
  font-size: 0.8125rem;
  color: var(--text-dim);
  line-height: 1.75;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  border-top: 1px solid var(--border);
  padding: 1.375rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__copy {
  white-space: nowrap;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
}

.footer__links a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--text-muted);
}

.footer__email {
  color: var(--blue);
}

.footer__email:hover {
  text-decoration: underline;
}

/* =============================================
   GEDEELDE PAGINASTIJLEN (over, voorwaarden)
   ============================================= */
.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}

.page-content h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.page-content .page-intro {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.page-content h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #C8C8E0;
  margin: 2.5rem 0 0.75rem;
}

.page-content p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.page-content a {
  color: var(--blue);
  text-decoration: underline;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1rem;
}

.policy-list li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding-left: 1.25rem;
  position: relative;
}

.policy-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--blue);
}

.contact-block {
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.contact-block a {
  color: var(--blue);
  text-decoration: none;
}

.contact-block a:hover {
  text-decoration: underline;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 640px) {
  .nav {
    padding: 0.875rem 1.25rem;
  }

  .hero {
    padding: 3.5rem 1.25rem 3rem;
  }

  .trust-bar {
    gap: 1.25rem;
    padding: 1.125rem 1.25rem;
  }

  .trust-bar__divider {
    display: none;
  }

  .features {
    padding: 2.75rem 1.25rem;
  }

  .footer {
    padding: 1.25rem;
    flex-direction: column;
    text-align: center;
    gap: 0.625rem;
  }

  .footer__links {
    justify-content: center;
  }
}
