/* ============================================================
   Psychologiepraktijk Michiel Eebes — gedeelde stijl
   Pas hier kleuren/lettertypes aan; geldt dan voor de hele site.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

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

:root {
  --navy: #2d3a6b;
  --navy-light: #3d4e8a;
  --mist: #eef0f6;
  --sand: #f5f3ee;
  --gold: #b8a98a;
  --text: #3a3a3a;
  --text-light: #7a7a7a;
  --white: #ffffff;
  --accent: #8b9dc3;
}

body {
  font-family: 'Jost', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ---------- NAV ---------- */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 72px;
  height: 96px;
  background: var(--white);
  border-bottom: 1px solid #e8e8ec;
  position: relative;
}

.logo-wrap { display: flex; align-items: center; gap: 16px; text-decoration: none; }

.logo-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-circle svg { width: 34px; height: 34px; }

.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 500;
  color: var(--navy); letter-spacing: 0.02em;
}
.logo-sub {
  font-size: 11px; font-weight: 300;
  color: var(--text-light); letter-spacing: 0.12em; text-transform: uppercase;
}

.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text); text-decoration: none; position: relative;
}
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--navy);
}
.nav-cta {
  background: var(--navy); color: var(--white) !important;
  padding: 10px 24px; border-radius: 2px;
  font-size: 12px !important; letter-spacing: 0.1em !important;
}

/* Hamburger (mobiel) */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--navy); }

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-block;
  background: var(--navy); color: var(--white);
  padding: 14px 36px;
  font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: none; cursor: pointer; border-radius: 2px; text-decoration: none;
}
.btn-text {
  font-size: 13px; font-weight: 300; color: var(--navy);
  letter-spacing: 0.05em; text-decoration: none;
  border-bottom: 1px solid var(--accent); padding-bottom: 2px;
}

/* ---------- HERO ---------- */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
.hero-left {
  background: var(--sand); padding: 100px 72px 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-left::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,157,195,0.18) 0%, transparent 70%);
}
.hero-tag {
  font-size: 11px; font-weight: 400; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 24px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px; font-weight: 300; line-height: 1.12;
  color: var(--navy); margin-bottom: 28px;
}
.hero-title em { font-style: italic; font-weight: 300; color: var(--navy-light); }
.hero-body {
  font-size: 15px; font-weight: 300; line-height: 1.75;
  color: var(--text-light); max-width: 400px; margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

.hero-right {
  background: var(--navy); position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 60px;
}
.hero-right::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); width: 380px; height: 380px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.07);
}
.hero-right::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); width: 260px; height: 260px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.1);
}
.hero-column-icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); opacity: 0.12;
}
.hero-card {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
  padding: 28px 32px; z-index: 2; width: 100%; max-width: 320px;
}
.hero-card-label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 12px;
}
.hero-card-title {
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300;
  color: var(--white); line-height: 1.4; margin-bottom: 20px;
}
.hero-card-divider { height: 1px; background: rgba(255,255,255,0.12); margin-bottom: 20px; }
.hero-card-item { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.hero-card-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero-card-item span { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.65); }

/* ---------- INTRO STRIP ---------- */
.intro-strip {
  background: var(--mist); display: flex; justify-content: center; gap: 0;
  border-top: 1px solid #e0e2ea; border-bottom: 1px solid #e0e2ea; flex-wrap: wrap;
}
.intro-item {
  padding: 36px 60px; display: flex; align-items: center; gap: 18px;
  border-right: 1px solid #e0e2ea; flex: 1; justify-content: center; min-width: 240px;
}
.intro-item:last-child { border-right: none; }
.intro-icon {
  width: 36px; height: 36px; background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.intro-text strong {
  display: block; font-size: 13px; font-weight: 500; color: var(--navy);
  letter-spacing: 0.03em; margin-bottom: 3px;
}
.intro-text span { font-size: 12px; font-weight: 300; color: var(--text-light); }

/* ---------- GENERIEKE PAGINA-KOP ---------- */
.page-head {
  background: var(--sand); padding: 80px 72px 64px 72px;
  position: relative; overflow: hidden;
}
.page-head::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,157,195,0.18) 0%, transparent 70%);
}
.page-head .hero-tag { margin-bottom: 16px; }
.page-head h1 {
  font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300;
  line-height: 1.15; color: var(--navy); max-width: 720px; position: relative;
}

/* ---------- CONTENT ---------- */
.content { padding: 72px; max-width: 860px; }
.content p { font-size: 16px; font-weight: 300; line-height: 1.85; color: var(--text); margin-bottom: 22px; }
.content h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 400;
  color: var(--navy); margin: 40px 0 18px 0;
}
.content ul { list-style: none; margin: 0 0 28px 0; }
.content ul li {
  position: relative; padding-left: 24px; margin-bottom: 14px;
  font-size: 16px; font-weight: 300; line-height: 1.7; color: var(--text);
}
.content ul li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.content ul li strong { font-weight: 500; color: var(--navy); }
.content a { color: var(--navy); }
.content a.btn-primary { color: var(--white); }

/* Invul-markering (verwijder zodra je eigen tekst erin staat) */
.todo {
  display: block; background: #fff8e6; border-left: 3px solid var(--gold);
  padding: 14px 18px; margin: 22px 0; font-size: 14px; color: #8a7330; border-radius: 2px;
}

/* Contactgegevens-blok */
.contact-block {
  background: var(--sand); border: 1px solid #e8e6e0; border-radius: 4px;
  padding: 32px 36px; margin-bottom: 32px;
}
.contact-block .name {
  font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--navy); margin-bottom: 8px;
}
.contact-block p { margin-bottom: 6px; font-size: 16px; }

/* ---------- CARDS ---------- */
.cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 8px 0 32px; }
.card { background: var(--sand); border-radius: 4px; padding: 32px 28px; border: 1px solid #e8e6e0; }
.card-num {
  font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300;
  color: rgba(45,58,107,0.12); line-height: 1; margin-bottom: 12px;
}
.card-title { font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 8px; letter-spacing: 0.02em; }
.card-body { font-size: 13px; font-weight: 300; color: var(--text-light); line-height: 1.7; }

/* ---------- FORMULIER ---------- */
.contact-form { max-width: 520px; }
.contact-form label { display: block; font-size: 13px; color: var(--navy); margin: 18px 0 6px; letter-spacing: 0.03em; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #d8d8de; border-radius: 2px;
  font-family: 'Jost', sans-serif; font-size: 15px; color: var(--text); background: var(--white);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .btn-primary { margin-top: 24px; border: none; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy); padding: 56px 72px;
  display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap;
}
.footer-left .logo-name { color: var(--white); }
.footer-left .logo-sub { color: rgba(255,255,255,0.4); }
.footer-mid {
  font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em; line-height: 1.8; text-align: center;
}
.footer-mid a { color: rgba(255,255,255,0.6); }
.footer-right .btn-primary {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); font-size: 11px;
}

/* ============================================================
   RESPONSIVE — mobiel/tablet
   ============================================================ */
@media (max-width: 900px) {
  nav { padding: 0 24px; height: 76px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--white);
    border-bottom: 1px solid #e8e8ec; padding: 8px 0; z-index: 50;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 24px; }
  .nav-links a.active::after { display: none; }
  .nav-cta { margin: 8px 24px; text-align: center; }

  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 56px 24px; }
  .hero-title { font-size: 42px; }
  .hero-right { min-height: 360px; padding: 32px; }

  .intro-item { border-right: none; border-bottom: 1px solid #e0e2ea; padding: 24px; }
  .intro-item:last-child { border-bottom: none; }

  .page-head { padding: 56px 24px 40px; }
  .page-head h1 { font-size: 36px; }
  .content { padding: 48px 24px; }
  .cards-grid { grid-template-columns: 1fr; }

  footer { padding: 40px 24px; flex-direction: column; text-align: center; }
}
