/* ════════════════════════════════════════════════════════
   EUC TO MONACO — GEDEELD DESIGN SYSTEEM
   Fonts: Syne (headings) · DM Sans (body) · DM Mono (mono)
   ════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  --bg:          #fafaf8;
  --surface:     #ffffff;
  --surface2:    #f2f2ef;
  --border:      rgba(0, 0, 0, 0.08);
  --text:        #111110;
  --text-muted:  #6f6e69;
  --text-dim:    #a8a29e;
  --accent:      #e8341a;
  --accent2:     #f59e0b;
  --accent-soft: rgba(232, 52, 26, 0.08);
  --blue:        #2563eb;
  --green:       #16a34a;
  --nav-h:       60px;
}

[data-theme="dark"] {
  --bg:          #111110;
  --surface:     #1c1c1a;
  --surface2:    #242422;
  --border:      rgba(255, 255, 255, 0.08);
  --text:        #f5f4f0;
  --text-muted:  #a8a29e;
  --text-dim:    #6f6e69;
  --accent:      #ff4d2e;
  --accent-soft: rgba(255, 77, 46, 0.1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
}

/* ── NAVIGATIE ──────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex-shrink: 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo {
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img { height: 34px; width: 34px; display: block; object-fit: cover; border-radius: 8px; }

.nav-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.nav-link:hover { background: var(--surface2); color: var(--text); }
.nav-link.active { color: var(--accent); background: var(--accent-soft); }

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 7px 14px !important;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: opacity 0.15s !important;
}
.nav-cta:hover { opacity: 0.88; background: var(--accent) !important; }

.theme-btn {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s;
  flex-shrink: 0;
  margin-left: 6px;
}

.theme-btn:hover { background: var(--surface2); color: var(--text); }

.nav-right {
  display: flex;
  align-items: center;
}

.hamburger {
  display: none;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-left: 8px;
}

/* ── MOBILE MENU ────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px 16px;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { font-size: 0.95rem; padding: 10px 12px; }

.mobile-menu .lang-switch {
  margin: 8px 0 4px;
  width: 100%;
  background: var(--surface2);
  border-radius: 10px;
  padding: 3px;
  gap: 3px;
}

.mobile-menu .lang-btn {
  flex: 1;
  font-size: 0.85rem;
  padding: 10px 0;
  border-radius: 8px;
  text-align: center;
}

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--accent); }

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-family: 'DM Mono', monospace;
}

/* ── GEDEELDE TYPOGRAFIE ────────────────────────────────── */
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}

.page-header {
  padding: 48px 24px 32px;
  max-width: 900px;
  margin: 0 auto;
}

.page-header h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.page-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 560px;
}

/* ── GEDEELDE KNOPPEN ───────────────────────────────────── */
.btn-primary {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.15s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s, transform 0.15s;
}
.btn-secondary:hover { background: var(--surface2); transform: translateY(-2px); }

/* ── TAALWISSELAAR ──────────────────────────────────────── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 1px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2px;
  margin-left: 6px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 3px 7px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.lang-btn:hover { color: var(--text); background: var(--surface); }
.lang-btn.active { background: var(--surface); color: var(--text); }

/* ── RESPONSIEF — MOBIEL ────────────────────────────────── */
@media (max-width: 640px) {
  .nav-links   { display: none; }
  .hamburger   { display: flex; }
}

/* ── RESPONSIEF — DESKTOP ───────────────────────────────── */
@media (min-width: 900px) {
  nav {
    padding: 0 48px;
  }

  .nav-link {
    font-size: 0.88rem;
    padding: 7px 14px;
  }

  .page-header {
    padding: 64px 48px 40px;
    max-width: 1240px;
  }

  .page-header h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
  }

  .btn-primary,
  .btn-secondary {
    font-size: 0.95rem;
    padding: 14px 28px;
  }
}
