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

:root {
  --black:   #ffffff;
  --dark:    #f0f4f8;
  --card:    #ffffff;
  --border:  #e2e8f0;
  --gold:    #d4922a;
  --gold2:   #e8a838;
  --white:   #1a1a2e;
  --gray:    #4a5568;
  --dgray:   #718096;
  --shadow:  0 2px 12px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Calibri, Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

/* ── NAV ──────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 64px;
}
.nav-logo {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* ── HERO (full-width met foto + overlay) ─────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 8% 60px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/Stefan-Hero-1.jpg?v=2');
  background-size: cover;
  background-position: center top;
}
@media (max-width: 768px) {
  .hero-bg {
    background-position: 70% top;
  }
}
.hero-overlay { display: none; }
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
}
.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: Georgia, serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: bold;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.hero-title span { color: var(--gold2); }
.hero-divider {
  width: 70px; height: 3px;
  background: var(--gold2);
  margin: 1.5rem 0;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.2rem;
  max-width: 500px;
}
.hero-badges {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-bottom: 2.2rem;
}
@media (max-width: 480px) {
  .hero-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.90);
  backdrop-filter: blur(4px);
}
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover { background: var(--gold2); }
.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.45);
  margin-left: 1rem;
}
.btn-outline:hover { border-color: var(--gold2); color: var(--gold2); }

/* ── SECTIONS ─────────────────────────────────────────── */
section { padding: 80px 5%; }
section:nth-child(even) { background: var(--dark); }

.section-tag {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ── ROLLEN ───────────────────────────────────────────── */
.rollen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.rol-card {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 2rem;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.rol-card:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.rol-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
}
.rol-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.rol-title {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.rol-text { color: var(--gray); font-size: 0.95rem; }

/* Spreker-kaart met foto achtergrond */
.rol-card--speaker {
  position: relative;
  overflow: hidden;
  min-height: 260px;
}
.rol-card-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  transition: transform 0.4s;
}
.rol-card--speaker:hover .rol-card-bg { transform: scale(1.04); }
.rol-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(13,27,53,0.82) 0%, rgba(13,27,53,0.65) 100%);
}
.rol-card-inner {
  position: relative;
  z-index: 1;
}

/* ── WORKSHOPS ────────────────────────────────────────── */
.workshops-grid-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 900px) {
  .workshops-grid-top { grid-template-columns: 1fr; }
}
/* Workshop D — featured breed onderaan */
.workshop-card--featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 768px) {
  .workshop-card--featured { grid-template-columns: 1fr; }
}
.workshop-card--featured .workshop-header {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem;
  background: #1a1a2e;
}
.workshop-card--featured .workshop-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.featured-tag {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
}
.workshop-card--featured .workshop-name {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  line-height: 1.3;
}
.workshop-card--featured .workshop-nr {
  width: 48px; height: 48px;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* ── MODAL ─────────────────────────────────────────────── */
.modal-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 500;
  background: rgba(10,15,30,0.75);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: #fff;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal-header {
  background: #1a1a2e;
  padding: 2rem;
  display: flex; align-items: flex-start; gap: 1rem;
}
.modal-header .workshop-nr {
  width: 48px; height: 48px; font-size: 1.3rem; flex-shrink: 0;
}
.modal-header-text { flex: 1; }
.modal-header-text h2 {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.3rem;
}
.modal-header-text .modal-level {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold2);
}
.modal-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.6); font-size: 1.8rem;
  line-height: 1; padding: 0; flex-shrink: 0;
  transition: color 0.2s;
}
.modal-close:hover { color: #fff; }
.modal-body { padding: 2rem; }
.modal-section { margin-bottom: 1.5rem; }
.modal-section h3 {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.modal-section p { color: var(--gray); font-size: 0.95rem; line-height: 1.7; }
.modal-list {
  list-style: none;
  margin-top: 0.5rem;
}
.modal-list li {
  color: var(--gray);
  font-size: 0.9rem;
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  position: relative;
}
.modal-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--gold);
  font-weight: bold;
}
.modal-meta-bar {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  background: var(--dark);
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}
.modal-meta-item { font-size: 0.85rem; color: var(--gray); }
.modal-meta-item strong { color: var(--white); display: block; font-size: 0.95rem; }
.modal-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.modal-price { font-family: Georgia, serif; font-size: 1.5rem; color: var(--white); font-weight: bold; }
.modal-price span { font-size: 0.85rem; color: var(--dgray); font-weight: normal; }
.workshop-card {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.workshop-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}
.workshop-header {
  background: #1a1a2e;
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.workshop-name { color: #f0f0f0; }
.workshop-nr {
  width: 40px; height: 40px;
  background: var(--gold);
  color: var(--black);
  font-weight: bold;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.workshop-name {
  font-family: Georgia, serif;
  font-size: 1rem;
  line-height: 1.3;
}
.workshop-body { padding: 1.5rem; }
.workshop-level {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.workshop-desc {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.workshop-meta {
  display: flex; gap: 1rem; flex-wrap: wrap;
}
.meta-item {
  font-size: 0.8rem;
  color: var(--dgray);
  display: flex; align-items: center; gap: 0.3rem;
}
.workshop-price {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.price { font-family: Georgia, serif; font-size: 1.2rem; color: var(--white); }
.price span { font-size: 0.8rem; color: var(--dgray); }

/* ── OVER STEFAN ──────────────────────────────────────── */
#over {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) { #over { grid-template-columns: 1fr; } }
.over-img-wrap {
  position: relative;
}
.over-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.over-img-accent {
  position: absolute;
  bottom: -12px; right: -12px;
  width: 60%; height: 60%;
  border: 3px solid var(--gold);
  z-index: -1;
}
.over-content .section-tag { margin-top: 0; }
.over-text {
  color: var(--gray);
  margin-bottom: 1.25rem;
  font-size: 0.975rem;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.stat { text-align: center; }
.stat-nr {
  font-family: Georgia, serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: bold;
}
.stat-label { font-size: 0.8rem; color: var(--dgray); }

/* ── CONTACT ──────────────────────────────────────────── */
#contact-section { text-align: center; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}
.contact-card-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.contact-card-label { font-size: 0.75rem; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.3rem; }
.contact-card-value { font-size: 0.9rem; color: var(--gray); }
.contact-card-value a { color: var(--gray); text-decoration: none; }
.contact-card-value a:hover { color: var(--gold); }

form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1rem; }
label {
  display: block;
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 0.4rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
input, select, textarea {
  width: 100%;
  background: #f8fafc;
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,146,42,0.15);
}
textarea { resize: vertical; min-height: 120px; }
select option { background: #fff; }
.form-submit {
  text-align: center;
  margin-top: 1.5rem;
}

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  background: #1a1a2e;
  border-top: 1px solid var(--border);
  padding: 2rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: #f0f0f0;
}
.footer-logo span { color: var(--gold2); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: #9aa5b4; font-size: 0.85rem; text-decoration: none; }
.footer-links a:hover { color: var(--gold2); }
.footer-copy { color: #9aa5b4; font-size: 0.8rem; }

/* ── STATS BAR ────────────────────────────────────────── */
.stats-bar {
  background: #1a1a2e;
  padding: 2.5rem 5%;
}
.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
@media (max-width: 600px) {
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
.stats-bar .stat-nr {
  font-family: Georgia, serif;
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--gold2);
  line-height: 1;
}
.stats-bar .stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.4rem;
  letter-spacing: 0.5px;
}

/* ── LOGO WALL ─────────────────────────────────────────── */
.logo-wall {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin-top: 2.5rem;
}
.logo-pill {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dgray);
  letter-spacing: 0.5px;
  background: var(--card);
  transition: all 0.2s;
  white-space: nowrap;
}
.logo-pill:hover {
  color: var(--white);
  border-color: var(--gold);
}

/* ── TESTIMONIALS ──────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.35;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  line-height: 1;
}
.testimonial-text {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
  padding-top: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-weight: bold;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}
.testimonial-sub {
  font-size: 0.78rem;
  color: var(--dgray);
}
.testimonial-score {
  margin-left: auto;
  font-family: Georgia, serif;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--gold);
}
.reviews-cta {
  text-align: center;
  margin-top: 2rem;
}
.reviews-cta a {
  color: var(--gold);
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.reviews-cta a:hover { opacity: 0.75; }

/* ── UTILS ────────────────────────────────────────────── */
.gold { color: var(--gold); }
.max-w { max-width: 1200px; margin: 0 auto; }
