:root {
  --goud: #c9a227;
  --donkerrood: #7a1f1f;
  --inkt: #2b2620;
  --papier: #faf6ef;
  --papier-donker: #f1e9db;
}

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

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--inkt);
  background: var(--papier);
  line-height: 1.7;
}

/* Hero met oude achtergrond */
.hero {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  background: url('images/background-thailand.jpg') center / cover no-repeat, #e8c48a;
}

.hero-inner {
  max-width: 640px;
  background: rgba(250, 246, 239, 0.88);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 32px rgba(60, 40, 10, 0.25);
}

.hero h1 { line-height: 0; }

.logo {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.tagline {
  margin-top: 1.4rem;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--inkt);
  line-height: 1.5;
}

/* Secties */
main { max-width: 760px; margin: 0 auto; padding: 0 1.5rem; }

section { padding: 3rem 0; border-bottom: 1px solid var(--papier-donker); }
section:last-child { border-bottom: none; }

h2 {
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
  color: var(--donkerrood);
}

section p + p { margin-top: 1rem; }

blockquote {
  margin-top: 1.2rem;
  padding: 0.2rem 0 0.2rem 1.4rem;
  border-left: 3px solid var(--goud);
  font-style: italic;
  color: #4a4238;
}

blockquote p + p { margin-top: 1rem; }

main a { color: var(--donkerrood); }

/* Uit het boek */
blockquote.missie {
  margin: 1.5rem 0;
  padding: 1.3rem 1.6rem;
  background: var(--papier-donker);
  border-left: 4px solid var(--donkerrood);
  border-radius: 0 8px 8px 0;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--inkt);
}

.lessen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.les {
  background: #fff;
  border: 1px solid var(--papier-donker);
  border-radius: 8px;
  padding: 1.3rem;
}

.les h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--donkerrood);
}

.les p { font-size: 0.95rem; }

/* Begrippenboek */
.letter-groep { margin-top: 1.8rem; }

.letter-groep h3 {
  font-size: 1.15rem;
  color: var(--goud);
  border-bottom: 2px solid var(--papier-donker);
  padding-bottom: 0.3rem;
  margin-bottom: 0.8rem;
}

.begrippenboek .bron {
  margin-top: 2rem;
  font-size: 0.85rem;
  font-style: italic;
  opacity: 0.7;
}

dl.begrippen {
  border: 1px solid var(--papier-donker);
  border-radius: 8px;
  background: #fff;
  padding: 1.3rem 1.5rem;
}

dl.begrippen dt {
  font-weight: bold;
  margin-top: 0.9rem;
}

dl.begrippen dt:first-child { margin-top: 0; }

dl.begrippen dd {
  margin-left: 0;
  font-style: italic;
  color: #4a4238;
}

.afscheid {
  font-size: 1.05rem;
}

/* Feiten-grid */
.feiten {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.feit {
  background: #fff;
  border: 1px solid var(--papier-donker);
  border-radius: 8px;
  padding: 1.3rem;
}

.feit h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.feit p { font-size: 0.95rem; }

/* Footer */
footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--inkt);
  color: var(--papier);
  font-size: 0.95rem;
}

footer .klein {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  opacity: 0.7;
}

footer a { color: var(--goud); }

footer .pumbo {
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 246, 239, 0.15);
}

.pumbo-logo {
  height: 42px;
  width: auto;
  /* zwart SVG-logo wit maken op de donkere footer */
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
