/* ===================== */
/* Basisinstellingen     */
/* ===================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #222;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.section {
  padding: 40px 0;
}

h1, h2, h3, h4 {
  margin-bottom: 10px;
  color: #222;
}

.lead {
  color: #555;
  margin-bottom: 20px;
}

/* ===================== */
/* Curio kleuren         */
/* ===================== */
:root {
  --yellow: #FFD600;
  --pink: #F48FB1;
  --purple: #9C27B0;
  --blue: #2196F3;
  --green: #4CAF50;
  --red: #F44336;
}

/* ===================== */
/* Navigatie             */
/* ===================== */
.site-header {
  position: sticky;
  top: 0;
  background: var(--blue);
}

.nav {
  display: flex;
  justify-content: center;
  padding: 14px 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  color: var(--yellow);
}

/* ===================== */
/* Hero sectie           */
/* ===================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 60px 0;
  align-items: center;
}

.hero h1 {
  font-size: 36px;
}

.hero h1 span {
  color: var(--purple);
}

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.badge {
  background: var(--yellow);
  color: #000;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.cta {
  display: inline-block;
  padding: 12px 18px;
  background: var(--pink);
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
}

.cta:hover {
  background: var(--purple);
  color: #fff;
}

/* ===================== */
/* Cards (Vakken, extra) */
/* ===================== */
.grid {
  display: grid;
  gap: 16px;
}

.grid.cards {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: var(--green);
  color: #fff;
  padding: 18px;
  border-radius: 8px;
}

.cards.compact .card {
  background: var(--pink);
  color: #000;
}

/* ===================== */
/* Tabellen (Rooster)    */
/* ===================== */
.table-wrap {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.table th,
.table td {
  padding: 12px;
  border: 1px solid #ddd;
}

.table th {
  background: var(--blue);
  color: #fff;
}

/* ===================== */
/* Timeline (Blokken)    */
/* ===================== */
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.tl-item {
  background: var(--purple);
  color: #fff;
  padding: 16px;
  border-radius: 8px;
}

/* ===================== */
/* Callout (Versnellen)  */
/* ===================== */
.callout {
  background: var(--yellow);
  padding: 20px;
  border-radius: 8px;
  color: #000;
}

/* ===================== */
/* Extra info            */
/* ===================== */
.grid.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.bullets,
.checklist {
  margin: 12px 0 0 20px;
}

.checklist {
  list-style: "✓ ";
}

/* ===================== */
/* Footer                */
/* ===================== */
.site-footer {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 3px solid var(--blue);
  text-align: center;
  background: #f5f5f5;
  color: #333;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.site-footer nav a {
  color: var(--purple);
  text-decoration: none;
  margin-left: 12px;
}

.site-footer nav a:hover {
  color: var(--pink);
}

/* ===================== */
/* Responsief            */
/* ===================== */
@media (max-width: 720px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .grid.two {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
