@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');

:root {
  --oranje:      #f67e00;
  --paars:       #272159;
  --paars-mid:   #36307a;
  --paars-banner: #3d3590;
  --blauw:       #009fe3;
  --groen:       #3aaa03;
  --lichtblauw:  #8fd2e5;
  --midgrijs:    #b2b2b2;
  --lichtgrijs:  #f2f2f2;
  --donkergrijs: #4f4646;
  --zwart:       #000000;
  --wit:         #ffffff;

  --tekst:       #272159;
  --subtekst:    #4f4646;
  --rand:        #d8d8d8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  color: var(--donkergrijs);
  background: var(--wit);
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #8fd2e5;
  box-shadow: 0 2px 16px rgba(143,210,229,0.35);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--paars);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active { color: var(--oranje); }

.nav-cta {
  background: var(--oranje) !important;
  color: white !important;
  padding: 0.5rem 1.4rem;
  border-radius: 24px;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: #d96b00 !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--paars); border-radius: 2px; transition: all 0.3s; }

/* ─── HERO ─── */
.hero {
  min-height: 92vh;
  background: var(--paars-banner);
  background-image:
    radial-gradient(ellipse 70% 60% at 85% 50%, rgba(246,126,0,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 5% 80%, rgba(143,210,229,0.1) 0%, transparent 55%);
  display: flex;
  align-items: center;
  padding: 110px 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--oranje) 0%, var(--lichtblauw) 50%, var(--blauw) 100%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(246,126,0,0.15);
  border: 1px solid rgba(246,126,0,0.3);
  color: var(--oranje);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.2;
  color: white;
  max-width: 680px;
  margin-bottom: 1.5rem;
}

.hero h1 span { color: var(--oranje); }

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.68);
  max-width: 560px;
  margin-bottom: 2.5rem;
  font-weight: 500;
  line-height: 1.85;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  padding: 0.8rem 1.75rem;
  border-radius: 24px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
}

.btn-oranje  { background: var(--oranje); color: white; }
.btn-oranje:hover  { background: #d96b00; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(246,126,0,0.35); }

.btn-paars   { background: var(--paars); color: white; }
.btn-paars:hover   { background: var(--paars-mid); transform: translateY(-1px); }

.btn-outline-wit {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-wit:hover { border-color: white; background: rgba(255,255,255,0.08); }

.btn-outline-paars {
  background: transparent;
  color: var(--paars);
  border: 2px solid var(--paars);
}
.btn-outline-paars:hover { background: var(--paars); color: white; }

/* ─── SECTIONS ─── */
section { padding: 5rem 2rem; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oranje);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  color: var(--paars);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.02rem;
  color: var(--subtekst);
  max-width: 560px;
  line-height: 1.8;
}

/* ─── KLEURSTREEP ─── */
.kleurstreep {
  height: 5px;
  background: linear-gradient(90deg, var(--oranje), var(--lichtblauw), var(--blauw));
  border: none;
  margin: 0;
}

/* ─── VISIE BLOKKEN ─── */
.visie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.visie-item {
  background: var(--lichtgrijs);
  border-radius: 10px;
  padding: 2rem;
  border-top: 4px solid var(--oranje);
}

.visie-item h3 {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--paars);
  margin-bottom: 0.6rem;
}

.visie-item p { font-size: 0.93rem; color: var(--subtekst); line-height: 1.75; }

/* ─── SPREKERS ─── */
.sprekers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.spreker-card {
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(39,33,89,0.10);
  transition: transform 0.2s, box-shadow 0.2s;
}
.spreker-card:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(39,33,89,0.16); }

/* Randall: warm donker met oranje accent */
.spreker-card.randall {
  background: #1c1532;
  color: white;
  border-top: 5px solid var(--oranje);
}

/* Helma: licht met paars accent */
.spreker-card.helma {
  background: white;
  color: var(--donkergrijs);
  border-top: 5px solid var(--paars);
  border: 1.5px solid var(--rand);
  border-top: 5px solid var(--paars);
}

.spreker-img-wrap {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: var(--lichtgrijs);
}

.spreker-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.spreker-body { padding: 1.75rem 2rem; flex: 1; }

.spreker-naam {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}
.spreker-card.randall .spreker-naam { color: white; }
.spreker-card.helma  .spreker-naam { color: var(--paars); }

.spreker-rol {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.spreker-card.randall .spreker-rol { color: var(--oranje); }
.spreker-card.helma  .spreker-rol { color: var(--blauw); }

.spreker-body p { font-size: 0.95rem; line-height: 1.75; margin-bottom: 1rem; }
.spreker-card.randall .spreker-body p { color: rgba(255,255,255,0.68); }
.spreker-card.helma  .spreker-body p { color: var(--subtekst); }

.spreker-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.5rem; }

.tag {
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.28rem 0.75rem;
  border-radius: 12px;
  letter-spacing: 0.03em;
}
.spreker-card.randall .tag { background: rgba(246,126,0,0.15); color: var(--oranje); border: 1px solid rgba(246,126,0,0.25); }
.spreker-card.helma  .tag { background: rgba(39,33,89,0.07); color: var(--paars); border: 1px solid rgba(39,33,89,0.2); }

.spreker-footer { padding: 0 2rem 2rem; }

/* ─── EBOOK ─── */
.ebook-section {
  background: var(--paars-banner);
  background-image: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(246,126,0,0.12) 0%, transparent 55%);
}

.ebook-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.ebook-cover {
  width: 170px;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  transform: rotate(2deg);
}

/* ─── LES CARDS (home preview) ─── */
.les-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.les-card-home {
  background: var(--lichtgrijs);
  border-radius: 10px;
  padding: 1.5rem;
  text-decoration: none;
  color: var(--donkergrijs);
  transition: all 0.2s;
  border-left: 4px solid var(--oranje);
}
.les-card-home:hover { background: white; box-shadow: 0 6px 20px rgba(39,33,89,0.12); transform: translateY(-2px); }

.les-nr { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--oranje); margin-bottom: 0.3rem; }

.les-card-home h3 { font-weight: 700; font-size: 0.95rem; color: var(--paars); margin-bottom: 0.4rem; line-height: 1.35; }
.les-card-home p  { font-size: 0.86rem; color: var(--subtekst); line-height: 1.65; }

/* ─── KENNISSPEL BANNER ─── */
.kennisspel-banner {
  background: linear-gradient(135deg, #3d3590 0%, #4e47a8 100%);
  border-radius: 14px;
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
  border-left: 6px solid var(--oranje);
}

.kennisspel-banner h3 { font-weight: 700; font-size: 1.4rem; color: white; margin-bottom: 0.4rem; }
.kennisspel-banner p  { color: rgba(255,255,255,0.65); font-size: 0.95rem; max-width: 500px; }

/* ─── LES FULL CARDS (lesmateriaal page) ─── */
.les-full-card {
  background: white;
  border: 1.5px solid var(--rand);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
  transition: box-shadow 0.2s;
}
.les-full-card:hover { box-shadow: 0 4px 16px rgba(39,33,89,0.1); }

.les-full-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.75rem;
  cursor: pointer;
  gap: 1rem;
  border-left: 4px solid var(--oranje);
}
.les-full-header:hover { background: var(--lichtgrijs); }

.les-title-wrap { flex: 1; }
.les-full-header h3 { font-weight: 700; font-size: 1rem; color: var(--paars); line-height: 1.35; }

.les-chevron {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--lichtgrijs);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.les-chevron svg { transition: transform 0.3s; }

.les-full-body { display: none; padding: 0 1.75rem 1.75rem; border-top: 1.5px solid var(--rand); }
.les-full-body.open { display: block; padding-top: 1.5rem; }
.les-full-body p { font-size: 0.95rem; color: var(--subtekst); margin-bottom: 1.5rem; line-height: 1.75; }

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 130px 2rem 4rem;
  background: var(--paars-banner);
  background-image: radial-gradient(ellipse 60% 60% at 80% 40%, rgba(246,126,0,0.12) 0%, transparent 60%);
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--oranje), var(--lichtblauw), var(--blauw));
}

.page-hero-inner { max-width: 1200px; margin: 0 auto; }

.page-hero h1 {
  font-weight: 700;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 520px; }

/* ─── CONTACT PAGE ─── */
.contact-opties {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.contact-block {
  border-radius: 12px;
  overflow: hidden;
}

.contact-block.snel {
  background: var(--paars);
  padding: 2.5rem;
}

.contact-block.snel .block-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oranje);
  margin-bottom: 0.75rem;
}

.contact-block.snel h3 { font-weight: 700; font-size: 1.25rem; color: white; margin-bottom: 0.75rem; }
.contact-block.snel p  { color: rgba(255,255,255,0.58); font-size: 0.93rem; line-height: 1.75; margin-bottom: 1.75rem; }

.mail-preview {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.7;
  font-style: italic;
}
.mail-preview strong { color: rgba(255,255,255,0.72); font-style: normal; }

.contact-block.formulier {
  background: var(--lichtgrijs);
  padding: 2.5rem;
  border: 1.5px solid var(--rand);
}

.contact-block.formulier .block-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paars);
  margin-bottom: 0.75rem;
}

.contact-block.formulier h3 { font-weight: 700; font-size: 1.25rem; color: var(--paars); margin-bottom: 0.75rem; }
.contact-block.formulier p  { font-size: 0.93rem; color: var(--subtekst); line-height: 1.75; margin-bottom: 1.75rem; }

.sprekers-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.scc {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-radius: 10px;
  padding: 1.5rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.scc:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(39,33,89,0.14); }

.scc.randall { background: #1c1532; border-top: 4px solid var(--oranje); }
.scc.helma   { background: white; border: 1.5px solid var(--rand); border-top: 4px solid var(--paars); }

.scc-foto { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; object-position: top; flex-shrink: 0; }

.scc-naam { font-weight: 700; font-size: 0.97rem; }
.scc.randall .scc-naam { color: white; }
.scc.helma   .scc-naam { color: var(--paars); }

.scc-rol { font-size: 0.8rem; font-weight: 700; }
.scc.randall .scc-rol { color: var(--oranje); }
.scc.helma   .scc-rol { color: var(--blauw); }

.scc-link { font-size: 0.8rem; margin-top: 0.15rem; }
.scc.randall .scc-link { color: rgba(255,255,255,0.4); }
.scc.helma   .scc-link { color: var(--midgrijs); }

/* ─── JURIDISCHE PAGINA'S ─── */
.juridisch-content {
  max-width: 760px;
}

.juridisch-content h2 {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--paars);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.juridisch-content h3 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--paars);
  margin-top: 1.25rem;
  margin-bottom: 0.35rem;
}

.juridisch-content p {
  font-size: 0.97rem;
  color: var(--subtekst);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.juridisch-content ul {
  margin: 0.5rem 0 1rem 1.5rem;
  color: var(--subtekst);
  font-size: 0.97rem;
  line-height: 1.8;
}

/* ─── FOOTER ─── */
footer {
  background: #8fd2e5;
  padding: 3.5rem 2rem 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
}

.footer-brand img { height: 44px; margin-bottom: 1rem; }
.footer-brand p { color: rgba(39,33,89,0.65); font-size: 0.88rem; max-width: 280px; line-height: 1.75; }

.footer-col h4 {
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(39,33,89,0.5);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: var(--paars);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--oranje); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(39,33,89,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p { color: rgba(39,33,89,0.5); font-size: 0.82rem; }

.footer-juridisch {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-juridisch a {
  color: rgba(39,33,89,0.5);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-juridisch a:hover { color: var(--oranje); }

/* ─── 404 ─── */
.not-found-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
  background: var(--lichtgrijs);
}

.not-found-inner {}
.not-found-inner .groot { font-size: 7rem; font-weight: 700; color: var(--oranje); line-height: 1; margin-bottom: 0.5rem; }
.not-found-inner h1 { font-weight: 700; font-size: 2rem; color: var(--paars); margin-bottom: 0.75rem; }
.not-found-inner p  { font-size: 1.05rem; color: var(--subtekst); max-width: 440px; margin: 0 auto 2rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .sprekers-grid, .ebook-inner, .contact-opties, .sprekers-contact { grid-template-columns: 1fr; }
  .les-grid-home { grid-template-columns: 1fr 1fr; }
  .visie-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .kennisspel-banner { grid-template-columns: 1fr; }
  .ebook-cover { display: none; }
}

@media (max-width: 600px) {
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; background: #8fd2e5; padding: 1.5rem 2rem; gap: 1rem; border-bottom: 3px solid var(--oranje); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .les-grid-home { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
}

/* ─── SCHUIFKNOP / TOGGLE SWITCH ─── */
.toggle-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 30px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(39,33,89,0.2);
  border-radius: 30px;
  transition: background 0.3s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.toggle-switch input:checked + .toggle-slider {
  background-color: var(--oranje);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(26px);
}

.toggle-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--paars);
  line-height: 1.4;
}

.toggle-form-panel {
  display: none;
  margin-top: 1.25rem;
}

.toggle-form-panel.zichtbaar {
  display: block;
}

/* iframe contactformulier */
.perfectview-iframe {
  width: 100%;
  min-height: 520px;
  border: none;
  border-radius: 10px;
  margin-top: 0.5rem;
}
