/* ======================================================
   Kenpo Karate Utrecht — Hoofdstylesheet
   Ontwerp: donker thema met rood (#c0392b) en goud (#f39c12)
   ====================================================== */

/* === Variabelen === */
:root {
  --primary:       #c0392b;
  --primary-hover: #e74c3c;
  --primary-dark:  #962d22;
  --bg:            #0f0f1a;
  --bg-card:       #1a1a2e;
  --bg-input:      #16213e;
  --bg-surface:    #1e1e3a;
  --text:          #ecf0f1;
  --text-muted:    #95a5a6;
  --gold:          #f39c12;
  --success:       #27ae60;
  --danger:        #e74c3c;
  --border:        #2c3e50;
  --radius:        8px;
  --shadow:        0 2px 8px rgba(0,0,0,0.3);
  --nav-height:    70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

img { max-width: 100%; height: auto; }

a {
  color: var(--primary-hover);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--primary); text-decoration: underline; }

h1, h2, h3, h4 { line-height: 1.2; }

/* === Hulpklassen === */
.container   { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }
.text-gold   { color: var(--gold); }

/* === Knoppen === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  min-height: 48px;
  line-height: 1.2;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary         { background: var(--primary);   color: #fff; border-color: var(--primary); }
.btn-primary:hover   { background: var(--primary-hover); border-color: var(--primary-hover); color: #fff; }
.btn-outline         { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline:hover   { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }
.btn-outline-primary         { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover   { background: var(--primary); color: #fff; }
.btn-signup          { background: var(--gold); color: #17130a; border-color: var(--gold); }
.btn-signup:hover    { background: #ffb52e; border-color: #ffb52e; color: #17130a; }
.btn-white           { background: #fff; color: var(--primary); border-color: #fff; }
.btn-white:hover     { background: rgba(255,255,255,0.9); color: var(--primary); }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-sm { padding: 8px 16px; font-size: 0.9rem; min-height: auto; }

/* === Navigatie === */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
  background: transparent;
}
.site-nav.scrolled {
  background: rgba(15,15,26,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo:hover { color: var(--gold); text-decoration: none; }
.nav-logo .logo-icon { font-size: 1.6rem; }
.nav-logo-img { height: 46px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
  text-decoration: none;
}

.nav-actions { display: flex; gap: 10px; flex-shrink: 0; }
.nav-actions .btn { padding: 10px 20px; font-size: 0.9rem; min-height: 40px; }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #fff;
  font-size: 1.5rem;
}

/* Mobiel menu */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu ul { list-style: none; }
.nav-mobile-menu ul li a {
  display: block;
  padding: 14px 0;
  color: var(--text);
  font-size: 1.1rem;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-menu .mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.nav-mobile-menu .mobile-actions .btn {
  width: 100%;
  justify-content: center;
}

/* === Hero === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(192,57,43,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(243,156,18,0.05) 0%, transparent 60%),
    var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c0392b' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-height) + 40px) 0 80px;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(192,57,43,0.2);
  border: 1px solid rgba(192,57,43,0.4);
  color: #e74c3c;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 .accent      { color: var(--primary); }
.hero h1 .accent-gold { color: var(--gold); }

.hero-subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat        { display: flex; flex-direction: column; }
.hero-stat strong { font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.hero-stat span   { font-size: 0.85rem; color: var(--text-muted); }

/* Decoratief element rechts in de hero */
.hero-deco {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: min(400px, 40vw);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-deco-ring {
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 2px solid rgba(192,57,43,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: spin-slow 30s linear infinite;
}
.hero-deco-ring::before {
  content: '';
  position: absolute; inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(243,156,18,0.12);
}
.hero-deco-center {
  font-size: 9rem;
  animation: spin-slow 30s linear infinite reverse;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* === Secties === */
.section         { padding: 80px 0; }
.section-dark    { background: var(--bg-card); }
.section-accent  {
  background: linear-gradient(135deg, rgba(192,57,43,0.1) 0%, rgba(192,57,43,0.03) 100%);
}

.section-header       { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-title    { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 14px; }
.section-subtitle { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* === Kaarten === */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  border-color: var(--primary);
}
.card h3 { color: var(--gold); margin-bottom: 12px; font-size: 1.15rem; }
.card p  { color: var(--text-muted); font-size: 0.95rem; }

/* === Grid === */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }

/* === Features === */
.feature         { text-align: center; padding: 32px 24px; }
.feature-icon    { font-size: 2.8rem; margin-bottom: 16px; display: block; }
.feature h3      { font-size: 1.1rem; margin-bottom: 10px; }
.feature p       { color: var(--text-muted); font-size: 0.95rem; }

/* === Hook sectie === */
.hook-section {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-surface) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hook-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hook-list          { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.hook-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--bg);
  border-radius: 10px;
  border-left: 3px solid var(--primary);
}
.hook-list li .check { color: var(--primary); font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.hook-list li span   { font-size: 1rem; }
.hook-cta { margin-top: 28px; }

/* === Trainingsrooster === */
.schedule-day {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.schedule-day:hover { border-color: var(--primary); }
.schedule-day-header {
  background: var(--primary);
  padding: 14px 20px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.schedule-lesson {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.schedule-lesson:last-child { border-bottom: none; }
.schedule-time  { font-weight: 700; color: var(--gold); font-size: 1.05rem; }
.schedule-group { color: var(--text-muted); font-size: 0.9rem; }

/* === Locatie === */
.location-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.location-info       { padding: 28px; }
.location-info h3    { color: var(--gold); margin-bottom: 16px; }
.location-detail     { display: flex; gap: 12px; margin-bottom: 12px; align-items: flex-start; }
.location-detail .icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.location-note {
  background: rgba(243,156,18,0.1);
  border: 1px solid rgba(243,156,18,0.3);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--gold);
}
.map-embed {
  width: 100%;
  height: 300px;
  border: none;
  border-top: 1px solid var(--border);
  display: block;
}

/* === Prijzen === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.2s;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.pricing-label  { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.pricing-price  { font-size: 2.8rem; font-weight: 900; color: var(--gold); line-height: 1; margin: 8px 0; }
.pricing-price sup { font-size: 1.2rem; vertical-align: super; }
.pricing-period { color: var(--text-muted); font-size: 0.9rem; }
.pricing-desc   { color: var(--text); margin-top: 8px; font-size: 0.95rem; }
.pricing-note   { color: var(--text-muted); font-size: 0.85rem; }

.pricing-extras {
  margin-top: 40px;
  padding: 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-extras h4 { color: var(--gold); margin-bottom: 16px; }
.pricing-extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
}
.pricing-extra-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--bg-card);
  border-radius: 8px;
  font-size: 0.9rem;
}

/* === School sectie === */
.school-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}
.school-text p        { color: var(--text-muted); margin-bottom: 14px; }
.affiliations         { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.affiliation-badge {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* === Instructeurs === */
.instructor-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.2s;
}
.instructor-card:hover { border-color: var(--primary); }
.instructor-avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.instructor-avatar img { width: 100%; height: 100%; object-fit: cover; }
.instructor-name { font-weight: 700; margin-bottom: 2px; }
.instructor-rank { color: var(--gold); font-size: 0.85rem; font-weight: 600; }
.instructor-role { color: var(--text-muted); font-size: 0.82rem; }

/* === Ervaringen === */
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 16px; left: 20px;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.35;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-body {
  padding-top: 20px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  flex: 1;
}
.testimonial-author  { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name   { font-weight: 700; }
.testimonial-belt   { color: var(--text-muted); font-size: 0.85rem; }

/* === Nieuwskoppen (bovenaan) === */
.news-headlines-section {
  padding: calc(var(--nav-height) + 28px) 0 28px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}
.news-headlines-eyebrow {
  display: block;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.news-headlines { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px; }
.news-headline {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  line-height: 1.4;
  transition: transform 0.2s, border-color 0.2s, color 0.2s;
}
.news-headline::before { content: "›"; color: var(--primary); font-weight: 800; flex-shrink: 0; }
.news-headline:hover { transform: translateY(-2px); border-color: var(--primary); color: var(--primary); }

/* === Video (onder de nieuwskoppen) === */
.site-video-section {
  padding: 28px 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}
.site-video {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}
.site-video video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #000;
}
.site-video-msg {
  max-width: 760px;
  margin: 12px auto 0;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-align: center;
  font-weight: 600;
}

/* === Nieuwspagina (nieuws.html) === */
.news-page { padding: calc(var(--nav-height) + 56px) 0 80px; }
.news-page-header { text-align: center; margin-bottom: 56px; }
.news-articles { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 64px; }
.news-article { scroll-margin-top: calc(var(--nav-height) + 24px); }
.news-article-head { margin-bottom: 22px; }
.news-article-title { font-size: 1.7rem; font-weight: 800; line-height: 1.25; margin-top: 8px; }
.news-article-title a { color: inherit; }
.article-image { width: 100%; border-radius: 14px; overflow: hidden; margin-bottom: 26px; background: var(--bg-surface); border: 1px solid var(--border); }
.article-image img { width: 100%; height: auto; display: block; }
.news-article-body p { margin-bottom: 18px; line-height: 1.8; color: var(--text-muted); }
.news-article-body p:last-child { margin-bottom: 0; }
.news-empty { text-align: center; color: var(--text-muted); }
.article-read-more, .article-back { display: inline-block; margin-top: 22px; font-weight: 700; }
.article-nav-back { padding-inline: 16px; white-space: nowrap; }
.article-nav-actions { display: flex; gap: 8px; margin-left: auto; }
.article-nav-actions .btn { padding-inline: 16px; white-space: nowrap; }
.article-page .article-detail { max-width: 760px; margin: 0 auto; }
.article-page .article-back { margin: 0 0 36px; }
.article-page .news-article-title { font-size: clamp(1.9rem, 4vw, 2.8rem); }

/* === Nieuwsdatum (nieuwspagina) === */
.news-date {
  display: block;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* === CTA-banner === */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
  position: relative;
}
.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.92;
  margin-bottom: 32px;
  position: relative;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* === FAQ === */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--bg-card);
  border: none;
  color: var(--text);
  padding: 20px 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s;
  font-family: inherit;
}
.faq-question:hover          { background: var(--bg-surface); }
.faq-question.open           { background: var(--bg-surface); color: var(--gold); }
.faq-icon                    { font-size: 1.2rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  background: var(--bg-card);
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.97rem;
}
.faq-answer.open { display: block; }
.faq-answer a    { color: var(--primary-hover); }

/* === Contact === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info h3    { color: var(--gold); margin-bottom: 16px; }
.contact-detail     { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.contact-detail .icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 3px; color: var(--primary); }

.form-group       { margin-bottom: 16px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
}
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
}
textarea { resize: vertical; min-height: 120px; }

/* === Meldingen === */
.alert            { padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; font-size: 0.9rem; }
.alert-success    { background: rgba(39,174,96,0.15); border: 1px solid #27ae60; color: #27ae60; }
.alert-danger     { background: rgba(231,76,60,0.15);  border: 1px solid #e74c3c; color: #e74c3c; }
.alert-info       { background: rgba(52,152,219,0.15); border: 1px solid #3498db; color: #3498db; }

/* === Badges === */
.band-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.95rem;
}

/* === Footer === */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-nav h4 {
  color: var(--text);
  margin-bottom: 16px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-nav ul                  { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-nav ul a                { color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-nav ul a:hover          { color: var(--text); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p               { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom-links           { display: flex; gap: 16px; }
.footer-bottom-links a         { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom-links a:hover   { color: var(--text); text-decoration: none; }

/* === Paginatop (subpagina's) === */
.page-top {
  padding: calc(var(--nav-height) + 48px) 0 48px;
  background: linear-gradient(135deg, rgba(192,57,43,0.12) 0%, transparent 50%), var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-top h1    { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 12px; }
.page-top p     { color: var(--text-muted); max-width: 600px; font-size: 1.1rem; }

/* Proefles / login pagina */
.login-page      { display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 32px 16px; }
.login-container { width: 100%; max-width: 460px; }
.login-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
}
.login-logo     { font-size: 3rem; text-align: center; margin-bottom: 8px; }
.login-box h1   { font-size: 1.6rem; text-align: center; margin-bottom: 6px; }
.login-box > p  { color: var(--text-muted); text-align: center; margin-bottom: 28px; font-size: 0.95rem; }
.login-back     { display: block; text-align: center; margin-top: 16px; font-size: 0.9rem; color: var(--text-muted); }
.login-back:hover { color: var(--text); }

/* === Responsive === */
@media (max-width: 900px) {
  .nav-links   { display: none; }
  .nav-actions { display: none; }
  .nav-hamburger { display: block; }
  .hero-deco   { display: none; }
  .hook-grid   { grid-template-columns: 1fr; gap: 32px; }
  .school-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .news-detail-nav .nav-logo { display: none; }
  .news-detail-nav .article-nav-actions { width: 100%; justify-content: space-between; }
  .news-detail-nav .article-nav-actions .btn { padding-inline: 14px; font-size: 0.9rem; }
  .section { padding: 56px 0; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 340px; margin-left: auto; margin-right: auto; }
  .cta-banner { padding: 48px 0; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .cta-banner-btns .btn { width: 100%; max-width: 320px; }
  .login-box { padding: 28px 20px; }
}

/* === Inschrijven === */
.enrollment-page {
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(192,57,43,0.10), transparent 34%),
    repeating-linear-gradient(135deg, transparent 0, transparent 28px, rgba(255,255,255,0.015) 29px, transparent 30px),
    var(--bg);
}
.enrollment-main { padding: calc(var(--nav-height) + 56px) 0 72px; }
.enrollment-container { max-width: 960px; }
.enrollment-header { max-width: 720px; margin-bottom: 32px; }
.enrollment-header h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 8px 0 12px; }
.enrollment-header p { color: var(--text-muted); font-size: 1.08rem; }
.enrollment-form {
  background: rgba(26,26,46,0.94);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}
.enrollment-section { padding: 36px 40px; border-bottom: 1px solid var(--border); }
.enrollment-section:last-of-type { border-bottom: 0; }
.enrollment-section-heading {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 28px;
}
.enrollment-section-heading h2 { font-size: 1.35rem; margin-bottom: 5px; }
.enrollment-section-heading p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.5; }
.enrollment-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 34px;
  border-left: 3px solid var(--gold);
  background: rgba(243,156,18,0.08);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.85rem;
}
.enrollment-grid { display: grid; gap: 0 18px; }
.enrollment-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.enrollment-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.enrollment-address-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.enrollment-span-2 { grid-column: span 2; }
.form-help { color: var(--text-muted); font-size: 0.82rem; line-height: 1.5; margin-top: 7px; }
.phone-fields { display: grid; grid-template-columns: minmax(120px, 0.8fr) minmax(0, 1.4fr); gap: 8px; }
.enrollment-fieldset { border: 0; padding: 0; }
.enrollment-fieldset legend {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.enrollment-choice-row { display: flex; gap: 8px; flex-wrap: wrap; }
.enrollment-choice-row label { position: relative; cursor: pointer; }
.enrollment-choice-row input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.enrollment-choice-row span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-muted);
  background: var(--bg-input);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.enrollment-choice-row input:checked + span {
  border-color: var(--primary);
  background: rgba(192,57,43,0.18);
  color: var(--text);
}
.enrollment-choice-row input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
.fixed-value {
  min-height: 49px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  background: var(--bg-input);
  color: var(--text);
}
.enrollment-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.enrollment-consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--primary); }
.enrollment-submit { padding: 28px 40px 36px; text-align: right; }
.enrollment-submit .alert { text-align: left; }
.enrollment-submit .btn { min-width: 240px; }
.form-honeypot { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.enrollment-success {
  max-width: 680px;
  margin: 56px auto 0;
  padding: 48px 36px;
  border: 1px solid var(--success);
  border-radius: var(--radius);
  background: var(--bg-card);
  text-align: center;
}
.enrollment-success-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border: 2px solid var(--success);
  border-radius: 50%;
  color: var(--success);
  font-size: 1.7rem;
  font-weight: 800;
}
.enrollment-success h2 { margin-bottom: 10px; }
.enrollment-success p { color: var(--text-muted); margin-bottom: 24px; }

@media (max-width: 900px) {
  .enrollment-nav-actions { display: flex; }
}

@media (max-width: 720px) {
  .enrollment-main { padding-top: calc(var(--nav-height) + 32px); }
  .enrollment-section { padding: 28px 20px; }
  .enrollment-submit { padding: 24px 20px 28px; }
  .enrollment-grid-2,
  .enrollment-grid-4,
  .enrollment-address-grid { grid-template-columns: 1fr; }
  .enrollment-span-2 { grid-column: span 1; }
  .phone-fields { grid-template-columns: 1fr; }
  .enrollment-choice-row { display: grid; grid-template-columns: 1fr; }
  .enrollment-choice-row span { width: 100%; }
  .enrollment-submit .btn { width: 100%; min-width: 0; }
}

@media (max-width: 560px) {
  .enrollment-nav-actions .btn-outline { display: none; }
  .enrollment-nav-actions .btn { padding: 9px 12px; font-size: 0.8rem; }
  .enrollment-section-heading { grid-template-columns: 40px 1fr; gap: 12px; }
  .enrollment-step { width: 40px; }
}
