/* =============================================
   JongOpWeg — Gedeelde stijlen
   Kleuren: #1BB0D4 (blauw) → #1A9B6A (groen)
   ============================================= */

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

:root {
  --blauw: #1BB0D4;
  --groen: #1A9B6A;
  --donkerblauw: #1490b0;
  --donkergroen: #158055;
  --tekst: #1a2e2a;
  --licht-tekst: #4a6560;
  --achtergrond: #f7fafa;
  --wit: #ffffff;
  --lichtgrijs: #f0f5f4;
  --border: #d4e8e2;
  --schaduw: 0 4px 20px rgba(26, 176, 212, 0.10);
  --schaduw-sterk: 0 8px 32px rgba(26, 155, 106, 0.15);
  --gradient: linear-gradient(135deg, var(--blauw) 0%, var(--groen) 100%);
  --gradient-zacht: linear-gradient(135deg, rgba(27,176,212,0.08) 0%, rgba(26,155,106,0.08) 100%);
  --radius: 12px;
  --radius-groot: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--tekst);
  background: var(--achtergrond);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blauw);
  text-decoration: none;
}

a:hover {
  color: var(--groen);
}

/* ==================== NAVIGATIE ==================== */

nav {
  background: var(--wit);
  box-shadow: 0 2px 12px rgba(26,176,212,0.10);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

.nav-logo img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 50%;
}

.nav-logo-tekst {
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.nav-logo-tekst span {
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--licht-tekst);
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.actief {
  color: var(--blauw);
  background: var(--gradient-zacht);
}

.nav-cta {
  background: var(--gradient) !important;
  color: var(--wit) !important;
  padding: 8px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover {
  opacity: 0.88;
  background: var(--gradient) !important;
  color: var(--wit) !important;
}

/* Hamburger (mobiel) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--tekst);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ==================== HERO ==================== */

.hero {
  background: var(--gradient);
  color: var(--wit);
  padding: 96px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.92;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-knoppen {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== KNOPPEN ==================== */

.knop {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
}

.knop-primair {
  background: var(--wit);
  color: var(--groen);
  border-color: var(--wit);
}

.knop-primair:hover {
  background: transparent;
  color: var(--wit);
  border-color: var(--wit);
}

.knop-outline {
  background: transparent;
  color: var(--wit);
  border-color: rgba(255,255,255,0.6);
}

.knop-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--wit);
  color: var(--wit);
}

.knop-groen {
  background: var(--gradient);
  color: var(--wit);
  border-color: transparent;
}

.knop-groen:hover {
  opacity: 0.88;
  color: var(--wit);
  transform: translateY(-1px);
  box-shadow: var(--schaduw-sterk);
}

/* ==================== SECTIES ==================== */

section {
  padding: 80px 24px;
}

.sectie-smal {
  padding: 64px 24px;
}

.sectie-grijs {
  background: var(--lichtgrijs);
}

.sectie-gradient {
  background: var(--gradient-zacht);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.container-smal {
  max-width: 760px;
  margin: 0 auto;
}

.sectie-header {
  text-align: center;
  margin-bottom: 56px;
}

.sectie-header .label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blauw);
  margin-bottom: 12px;
}

.sectie-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--tekst);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.sectie-header p {
  font-size: 1.08rem;
  color: var(--licht-tekst);
  max-width: 600px;
  margin: 0 auto;
}

/* ==================== KAARTEN ==================== */

.kaarten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.kaart {
  background: var(--wit);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--schaduw);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.kaart:hover {
  transform: translateY(-4px);
  box-shadow: var(--schaduw-sterk);
}

.kaart-icoon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gradient-zacht);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  color: var(--blauw);
}

.kaart h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--tekst);
}

.kaart p {
  font-size: 0.95rem;
  color: var(--licht-tekst);
  line-height: 1.65;
}

.kaart a {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blauw);
}

.kaart a:hover {
  color: var(--groen);
}

/* ==================== TWEE KOLOMMEN ==================== */

.twee-kolommen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.twee-kolommen.omgekeerd .tekst-kolom {
  order: 2;
}

.twee-kolommen.omgekeerd .beeld-kolom {
  order: 1;
}

.tekst-kolom .label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blauw);
  margin-bottom: 12px;
}

.tekst-kolom h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.tekst-kolom p {
  color: var(--licht-tekst);
  margin-bottom: 14px;
  font-size: 1.02rem;
}

.tekst-kolom ul {
  list-style: none;
  margin: 18px 0 24px;
}

.tekst-kolom ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--licht-tekst);
  font-size: 0.98rem;
  border-bottom: 1px solid var(--border);
}

.tekst-kolom ul li:last-child {
  border-bottom: none;
}

.tekst-kolom ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--groen);
  font-weight: 700;
}

/* ==================== FOTO-PLACEHOLDER ==================== */

.foto-placeholder {
  border-radius: var(--radius-groot);
  overflow: hidden;
  background: var(--gradient-zacht);
  border: 2px dashed var(--border);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--licht-tekst);
  font-size: 0.9rem;
  text-align: center;
  padding: 24px;
}

.foto-placeholder .icoon {
  font-size: 2.5rem;
  opacity: 0.5;
}

.foto-placeholder p {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Als je eigen foto toevoegt: vervang .foto-placeholder door een <img> */
.foto-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-groot);
}

/* Echte foto's in beeld-kolom */
.beeld-kolom > img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-groot);
  display: block;
}

/* Landscape foto's (boksen, werkgebied) */
.beeld-kolom > img.foto-landscape {
  aspect-ratio: 4/3;
}

/* ==================== DOELGROEPEN ==================== */

.doelgroep-kaart {
  background: var(--wit);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.doelgroep-kaart:hover {
  border-color: var(--blauw);
  box-shadow: var(--schaduw);
}

.doelgroep-kaart .icoon {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--blauw);
}

.doelgroep-kaart h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.doelgroep-kaart p {
  font-size: 0.9rem;
  color: var(--licht-tekst);
}

/* ==================== QUOTE / BANNER ==================== */

.quote-banner {
  background: var(--gradient);
  color: var(--wit);
  padding: 64px 24px;
  text-align: center;
}

.quote-banner blockquote {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 600;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
  font-style: italic;
}

/* ==================== FAQ ==================== */

.faq-lijst {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--wit);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-vraag {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--tekst);
  gap: 16px;
}

.faq-vraag:hover {
  color: var(--blauw);
}

.faq-vraag .pijl {
  font-size: 1.1rem;
  transition: transform 0.2s;
  flex-shrink: 0;
  color: var(--blauw);
}

.faq-item.open .faq-vraag .pijl {
  transform: rotate(180deg);
}

.faq-antwoord {
  display: none;
  padding: 0 24px 20px;
  color: var(--licht-tekst);
  font-size: 0.97rem;
  line-height: 1.7;
}

.faq-item.open .faq-antwoord {
  display: block;
}

/* ==================== CONTACT FORMULIER ==================== */

.formulier {
  background: var(--wit);
  border-radius: var(--radius-groot);
  padding: 48px;
  box-shadow: var(--schaduw-sterk);
  border: 1px solid var(--border);
  max-width: 640px;
  margin: 0 auto;
}

.formulier-groep {
  margin-bottom: 20px;
}

.formulier-groep label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--tekst);
  margin-bottom: 6px;
}

.formulier-groep input,
.formulier-groep select,
.formulier-groep textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.97rem;
  color: var(--tekst);
  background: var(--wit);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.formulier-groep input:focus,
.formulier-groep select:focus,
.formulier-groep textarea:focus {
  outline: none;
  border-color: var(--blauw);
  box-shadow: 0 0 0 3px rgba(27,176,212,0.12);
}

.formulier-groep textarea {
  resize: vertical;
  min-height: 130px;
}

.formulier-rij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.formulier button[type="submit"] {
  width: 100%;
  padding: 15px;
  background: var(--gradient);
  color: var(--wit);
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 8px;
  font-family: inherit;
}

.formulier button[type="submit"]:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ==================== CONTACT INFO KAARTEN ==================== */

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}

.contact-info-kaart {
  background: var(--wit);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border);
}

.contact-info-kaart .icoon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--blauw);
}

.contact-info-kaart h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--licht-tekst);
  margin-bottom: 8px;
}

.contact-info-kaart p,
.contact-info-kaart a {
  font-size: 0.97rem;
  color: var(--tekst);
  font-weight: 500;
}

/* ==================== STAPPEN ==================== */

.stappen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  counter-reset: stap;
}

.stap {
  text-align: center;
  padding: 24px 16px;
}

.stap-nummer {
  width: 52px;
  height: 52px;
  background: var(--gradient);
  color: var(--wit);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 16px;
}

.stap h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.stap p {
  font-size: 0.9rem;
  color: var(--licht-tekst);
}

/* ==================== PAGINA HERO (subpagina's) ==================== */

.pagina-hero {
  background: var(--gradient);
  color: var(--wit);
  padding: 72px 24px 64px;
  text-align: center;
}

.pagina-hero .label {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.pagina-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.pagina-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 580px;
  margin: 0 auto;
}

/* ==================== CTA BANNER ==================== */

.cta-banner {
  background: var(--gradient);
  color: var(--wit);
  padding: 72px 24px;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.cta-banner p {
  font-size: 1.08rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ==================== VOORDELEN LIJST ==================== */

.voordelen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.voordeel {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.voordeel .icoon {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: white;
}

.voordeel h4 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.voordeel p {
  font-size: 0.88rem;
  color: var(--licht-tekst);
}

/* ==================== TRAININGSVORMEN TABS ==================== */

.trainingsvormen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.trainingsvorm-kaart {
  background: var(--wit);
  border: 2px solid var(--border);
  border-radius: var(--radius-groot);
  padding: 36px 32px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.trainingsvorm-kaart:hover {
  border-color: var(--blauw);
  box-shadow: var(--schaduw);
}

.trainingsvorm-kaart .badge {
  display: inline-block;
  background: var(--gradient-zacht);
  color: var(--groen);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.trainingsvorm-kaart h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.trainingsvorm-kaart p {
  font-size: 0.95rem;
  color: var(--licht-tekst);
  margin-bottom: 18px;
}

.trainingsvorm-kaart ul {
  list-style: none;
}

.trainingsvorm-kaart ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.92rem;
  color: var(--licht-tekst);
}

.trainingsvorm-kaart ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--groen);
  font-weight: 700;
}

/* ==================== FOOTER ==================== */

footer {
  background: var(--tekst);
  color: rgba(255,255,255,0.7);
  padding: 56px 24px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.footer-kolom p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-kolom h4 {
  color: var(--wit);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-kolom ul {
  list-style: none;
}

.footer-kolom ul li {
  margin-bottom: 8px;
}

.footer-kolom ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-kolom ul li a:hover {
  color: var(--blauw);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-juridisch {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-juridisch a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-juridisch a:hover {
  color: #fff;
}

/* ==================== ICOON PNG AFBEELDINGEN ==================== */

.kaart-icoon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.doelgroep-kaart .icoon,
.contact-info-kaart .icoon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
}

.doelgroep-kaart .icoon img,
.contact-info-kaart .icoon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.voordeel .icoon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--wit);
    flex-direction: column;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-top: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 16px;
  }

  .nav-toggle {
    display: flex;
  }

  .twee-kolommen {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .twee-kolommen.omgekeerd .tekst-kolom,
  .twee-kolommen.omgekeerd .beeld-kolom {
    order: unset;
  }

  .trainingsvormen {
    grid-template-columns: 1fr;
  }

  .formulier-rij {
    grid-template-columns: 1fr;
  }

  .formulier {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    text-align: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }

  .footer-juridisch {
    justify-content: center;
  }

  section {
    padding: 56px 20px;
  }

  .hero-logo-groot {
    width: 200px !important;
    height: 200px !important;
  }
}
