/*
Theme Name: Het Porseleinen Boek
Theme URI: https://hetporseleinenboek.nl
Author: OnlineBouwers
Author URI: https://onlinebouwers.nl
Description: WordPress thema voor Het Porseleinen Boek — Atelier Dieneke Boektje, cursussen porseleinschilderen in Zuidlaren.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hetporseleinenboek
*/

/* ── RESET & ROOT ──────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --peach: #ffddbb;
  --peach-btn: #e8a84a;
  --peach-btn-hover: #cf9038;
  --dark: #1e1812;
  --dark-mid: #2e2418;
  --body-bg: #faf8f4;
  --text: #2e2418;
  --text-muted: #6e6055;
  --line: #e8e0d4;
  --topbar-bg: #2e2418;
  --footer-bg: #1e1812;
  --white: #ffffff;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  background: var(--body-bg);
  color: var(--text);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ── ROW ──────────────────────────────────── */
.row {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 3rem;
  width: 100%;
}

.section-pad    { padding: 5rem 0; }
.section-pad-sm { padding: 3.5rem 0; }


/* ══════════════════════════════════════════
   1. TOPBAR
══════════════════════════════════════════ */
.topbar {
  background: var(--topbar-bg);
  padding: 0;
}

.topbar .row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
}

.topbar-item svg { color: var(--peach); flex-shrink: 0; }
.topbar-item a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.topbar-item a:hover { color: var(--peach); }


/* ══════════════════════════════════════════
   2. HEADER
══════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(30,24,18,0.06);
}

.header .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--peach-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--peach-btn);
}

.logo-text-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.1;
}

.logo-text-sub {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav a {
  padding: 0.5rem 0.85rem;
  font-size: 0.79rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav a:hover, .nav a.active { color: var(--dark); }
.nav a.active { font-weight: 500; }

.nav-cta {
  margin-left: 0.6rem;
  padding: 0.6rem 1.4rem !important;
  background: var(--peach-btn);
  color: var(--white) !important;
  font-weight: 500 !important;
  font-size: 0.78rem !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--peach-btn-hover) !important; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--dark);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}


/* ══════════════════════════════════════════
   3. HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(20,14,8,0.9) 0%, rgba(20,14,8,0.65) 55%, rgba(20,14,8,0.28) 100%),
    radial-gradient(ellipse at 25% 50%, rgba(80,50,20,0.4) 0%, transparent 60%),
    linear-gradient(135deg, #2a1a0a 0%, #1a1008 50%, #241608 100%);
}

.hero-plate {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(220px, 28vw, 400px);
  opacity: 0.7;
  animation: fadeIn 1.2s ease 0.4s both;
}

.hero > .row {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-content {
  max-width: 620px;
  padding: 5rem 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 26px;
  height: 1px;
  background: var(--peach);
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 0.6rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.35s both;
}

.hero-h1 em { font-style: italic; color: var(--peach); }

.hero-script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  color: rgba(255,255,255,0.48);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s both;
}

.hero-p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.4rem;
  max-width: 500px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.65s both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s both;
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--peach-btn);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover { background: var(--peach-btn-hover); transform: translateY(-2px); color: var(--white); }

.btn-secondary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border: 1px solid rgba(255,255,255,0.32);
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  font-weight: 300;
  transition: all 0.2s;
}

.btn-secondary:hover { border-color: var(--peach); color: var(--peach); }


/* ══════════════════════════════════════════
   4. USP BALK
══════════════════════════════════════════ */
.usp-bar { background: var(--dark-mid); }

.usp-bar .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.77rem;
  white-space: nowrap;
}

.usp-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--peach-btn);
  flex-shrink: 0;
}


/* ══════════════════════════════════════════
   5. INTRO
══════════════════════════════════════════ */
.intro { background: var(--body-bg); }

.intro .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}

.intro-text {
  padding: 5rem 4rem 5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-visual {
  background: #f0e8dc;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0;
}

.intro-visual::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 70px; height: 70px;
  background: var(--peach);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.intro-visual svg { width: 70%; height: 70%; }

.intro-quote {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: var(--dark);
  color: #fff;
  padding: 1.2rem 1.6rem;
  max-width: 220px;
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.5;
}

.intro-quote cite {
  display: block;
  font-style: normal;
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--peach);
  margin-top: 0.6rem;
}

.section-label {
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--peach-btn);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--peach-btn);
}

.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 2.6vw, 2.7rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.section-h2 em { font-style: italic; color: var(--peach-btn-hover); }

.body-p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.intro-rule {
  width: 36px;
  height: 2px;
  background: var(--peach);
  margin: 1.5rem 0;
}

.intro-stats {
  display: flex;
  gap: 2.5rem;
}

.stat-block .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
}

.stat-block .lbl {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}


/* ══════════════════════════════════════════
   6. CURSUSSEN
══════════════════════════════════════════ */
.courses {
  padding: 5rem 0;
  background: var(--white);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.view-all-link {
  font-size: 0.78rem;
  color: var(--peach-btn);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  transition: color 0.2s;
}

.view-all-link:hover { color: var(--peach-btn-hover); }

.courses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.2rem;
}

.course-card {
  background: var(--body-bg);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.course-card:hover {
  box-shadow: 0 8px 28px rgba(30,24,18,0.1);
  transform: translateY(-3px);
}

.course-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.card-visual {
  background: #1e1208;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-visual svg { width: 60%; height: 60%; }

.card-visual::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--peach-btn);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.course-card:hover .card-visual::after { transform: scaleX(1); }

.card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
}

.card-tag {
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--peach-btn);
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 0.8rem;
  flex-grow: 1;
}

.course-card--featured .card-title { font-size: 1.45rem; }

.card-desc {
  font-size: 0.84rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  gap: 1rem;
  flex-wrap: wrap;
}

.card-meta { font-size: 0.72rem; color: var(--text-muted); }

.btn-card {
  display: inline-block;
  padding: 0.55rem 1.4rem;
  background: var(--peach-btn);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-card:hover { background: var(--peach-btn-hover); color: var(--white); }
.course-card--small .card-visual { min-height: 160px; }


/* ══════════════════════════════════════════
   EVENEMENT HIGHLIGHT
══════════════════════════════════════════ */
.event-wrap {
  background: var(--white);
  padding: 0 0 3rem;
}

.event-highlight {
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}

.event-highlight::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--peach-btn);
}

.event-highlight::after {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 48px; height: 48px;
  background: var(--peach);
  opacity: 0.4;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.event-label {
  font-size: 0.63rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.event-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.event-sub { font-size: 0.84rem; color: var(--text-muted); }


/* ══════════════════════════════════════════
   7. WAAROM
══════════════════════════════════════════ */
.why { background: var(--dark); padding: 4.5rem 0; }

.why .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.why-icon { color: var(--peach); margin-bottom: 1rem; }

.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.why-body {
  font-size: 0.82rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.4);
}


/* ══════════════════════════════════════════
   8. WORKSHOPS
══════════════════════════════════════════ */
.workshops { background: var(--white); }

.workshops .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.workshops-visual {
  background: #1a1008;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0;
}

.workshops-visual svg { width: 65%; height: 65%; }

.workshops-visual::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 56px; height: 56px;
  background: var(--peach);
  opacity: 0.32;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.ws-badge {
  position: absolute;
  top: 2rem; right: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-right: none;
  padding: 1rem 1.4rem;
}

.ws-badge-lbl {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.ws-badge-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 400;
}

.ws-badge-date {
  font-size: 0.72rem;
  color: var(--peach-btn);
  margin-top: 0.2rem;
  font-weight: 500;
}

.workshops-text {
  padding: 4.5rem 0 4.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ws-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.ws-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.ws-list li::before {
  content: '\2726';
  color: var(--peach-btn);
  font-size: 0.52rem;
  margin-top: 5px;
  flex-shrink: 0;
}


/* ══════════════════════════════════════════
   9. AGENDA
══════════════════════════════════════════ */
.agenda { padding: 5rem 0; background: var(--body-bg); }

.agenda-table { margin-top: 2rem; border-top: 1px solid var(--line); }

.agenda-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}

.agenda-row:hover { background: rgba(255,221,187,0.07); }

.agenda-date-block { text-align: center; }

.agenda-day {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
}

.agenda-month {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peach-btn);
  font-weight: 600;
}

.agenda-title-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.agenda-sub { font-size: 0.78rem; color: var(--text-muted); }

.agenda-tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}


/* ══════════════════════════════════════════
   10. OPDRACHTEN / MATERIALEN
══════════════════════════════════════════ */
.extra { background: var(--body-bg); }

.extra .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.extra-block {
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}

.extra-block:first-child { background: var(--dark-mid); }
.extra-block:last-child  { background: var(--white); border: 1px solid var(--line); border-left: none; }

.extra-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1.2rem;
  color: var(--peach);
  opacity: 0.25;
}

.extra-block:first-child .extra-num { opacity: 0.4; }

.extra-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--dark);
}

.extra-block:first-child .extra-title { color: #fff; }

.extra-body {
  font-size: 0.86rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 380px;
}

.extra-block:first-child .extra-body { color: rgba(255,255,255,0.43); }

.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.77rem;
  font-weight: 500;
  color: var(--peach-btn);
  transition: gap 0.2s;
}

.btn-text-link:hover { gap: 0.9rem; }


/* ══════════════════════════════════════════
   11. FOOTER
══════════════════════════════════════════ */
.footer { background: var(--footer-bg); padding: 4rem 0 0; }

.footer .row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 3.5rem;
}

.footer-brand-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.6rem;
}

.footer-peach-rule {
  width: 28px;
  height: 2px;
  background: var(--peach-btn);
  margin-bottom: 1.2rem;
}

.footer-desc {
  font-size: 0.81rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.33);
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.81rem;
  color: rgba(255,255,255,0.42);
  margin-bottom: 0.65rem;
  line-height: 1.4;
}

.footer-contact-item svg { color: var(--peach-btn); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.42); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--peach); }

.footer-heading {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--peach-btn);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-size: 0.81rem;
  color: rgba(255,255,255,0.38);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a::before { content: '\2192'; font-size: 0.62rem; color: var(--peach-btn); opacity: 0.6; }
.footer-links a:hover { color: rgba(255,255,255,0.82); }

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.79rem;
  color: rgba(255,255,255,0.36);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-hour-row:last-child { border-bottom: none; }
.footer-hour-time { color: rgba(255,255,255,0.52); }

.footer-bar {
  background: #100c08;
  margin-top: 3.5rem;
}

.footer-bar .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.footer-bar-text { font-size: 0.7rem; color: rgba(255,255,255,0.22); }
.footer-bar-text a { color: var(--peach-btn); }


/* ══════════════════════════════════════════
   ANIMATIES
══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 0.7; }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }


/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .row { padding: 0 2rem; }

  .intro .row,
  .workshops .row,
  .extra .row,
  .footer .row {
    grid-template-columns: 1fr;
  }

  .why .row {
    grid-template-columns: 1fr 1fr;
  }

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

  .course-card--featured {
    grid-template-columns: 1fr;
  }

  .intro-text { padding: 3rem 0; }
  .workshops-text { padding: 3rem 0; }

  .workshops-visual { margin: 0; }
  .intro-visual { margin: 0; min-height: 300px; }
}

@media (max-width: 768px) {
  .row { padding: 0 1.5rem; }

  .topbar .row { justify-content: center; flex-wrap: wrap; gap: 1rem; }

  .menu-toggle { display: block; }

  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .nav.open { display: flex; }

  .nav a { padding: 0.75rem 1rem; width: 100%; }
  .nav-cta { margin-left: 0; margin-top: 0.5rem; text-align: center; }

  .hero { min-height: 420px; }
  .hero-content { padding: 3rem 0; }
  .hero-plate { display: none; }

  .usp-bar .row { justify-content: center; }

  .why .row,
  .courses-grid,
  .extra .row {
    grid-template-columns: 1fr;
  }

  .agenda-row {
    grid-template-columns: 70px 1fr;
    gap: 1rem;
  }

  .agenda-tag { grid-column: 2; }

  .event-highlight { flex-direction: column; text-align: center; }

  .footer .row { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bar .row { justify-content: center; text-align: center; }

  .intro-stats { gap: 1.5rem; }
}


/* ══════════════════════════════════════════
   WORDPRESS SPECIFIEK
══════════════════════════════════════════ */
.wp-block-image img { height: auto; }
.alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.aligncenter { display: block; margin: 0 auto; }

.page-content,
.entry-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
}

.entry-content p { margin-bottom: 1.5rem; }
.entry-content h1,
.entry-content h2,
.entry-content h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 1rem;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
