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

:root {
  --oranje:      #f67e00;
  --groen:       #3aaa03;
  --groen-mid:   #2f8e02;
  --paars:       #272159;
  --paars-mid:   #36307a;
  --paars-banner: #272159;
  --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: white;
  box-shadow: 0 2px 12px rgba(39,33,89,0.1);
  border-bottom: 3px solid var(--groen);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

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

.nav-logo-text {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--paars);
  letter-spacing: -0.01em;
}

.nav-logo-text span { color: var(--groen); }

.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(--groen); }

.nav-cta {
  background: var(--groen) !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: var(--groen-mid) !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(58,170,3,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 5% 80%, rgba(246,126,0,0.1) 0%, transparent 55%);
  display: flex;
  align-items: center;
  padding: 110px 2rem 5rem;
  position: relative;
  overflow: hidden;
}

/* Tech grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(58,170,3,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,170,3,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

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

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(58,170,3,0.12);
  border: 1px solid rgba(58,170,3,0.3);
  color: var(--groen);
  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: 720px;
  margin-bottom: 1.5rem;
}

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

.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; }

/* Tech badges */
.hero-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: 14px;
  letter-spacing: 0.03em;
}

/* ─── 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-groen   { background: var(--groen); color: white; }
.btn-groen:hover   { background: var(--groen-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(58,170,3,0.3); }

.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); }

/* ─── 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(--groen);
  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(--groen), var(--oranje), var(--groen));
  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(--groen);
  position: relative;
  overflow: hidden;
}

.visie-item::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(58,170,3,0.06) 0%, transparent 70%);
}

.visie-icoon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  display: block;
}

.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); }

.spreker-card.randall {
  background: #1c1532;
  color: white;
  border-top: 5px solid var(--groen);
}

.spreker-card.helma {
  background: white;
  color: var(--donkergrijs);
  border: 1.5px solid var(--rand);
  border-top: 5px solid var(--groen);
}

.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(--groen); }
.spreker-card.helma  .spreker-rol { color: var(--oranje); }

.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(58,170,3,0.15); color: var(--groen); border: 1px solid rgba(58,170,3,0.25); }
.spreker-card.helma  .tag { background: rgba(246,126,0,0.08); color: var(--oranje); border: 1px solid rgba(246,126,0,0.2); }

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

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 130px 2rem 4rem;
  background: var(--paars);
  background-image: radial-gradient(ellipse 60% 60% at 80% 40%, rgba(58,170,3,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(--groen), var(--oranje), var(--groen));
}

.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 SPREKERS ─── */
.sprekers-direct {
  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.15); }

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

.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(--groen); }
.scc.helma   .scc-rol { color: var(--oranje); }

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

/* ─── FOOTER ─── */
footer {
  background: white;
  padding: 3.5rem 2rem 0;
  border-top: 3px solid var(--groen);
}

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

.footer-brand {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-brand-logo img { height: 36px; }
.footer-brand-logo span {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--paars);
}
.footer-brand-logo span em { color: var(--groen); font-style: normal; }

.footer-brand p { color: var(--subtekst); 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: var(--midgrijs);
  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(--groen); }

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

.footer-bottom p { color: var(--midgrijs); font-size: 0.82rem; }

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

.footer-juridisch a {
  color: var(--midgrijs);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-juridisch a:hover { color: var(--groen); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .sprekers-grid, .sprekers-direct, .visie-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    background: white;
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 3px solid var(--groen);
    box-shadow: 0 8px 20px rgba(39,33,89,0.1);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .sprekers-direct { grid-template-columns: 1fr; }
}
