/* Aago masterclasses */

:root {
  --cream: #F7F3EE;
  --sand: #D8C3A5;
  --brown: #5A463B;
  --brown-deep: #3D2E24;
  --ink: #2F2F2F;
  --terra: #C06A4A;
  --terra-glow: #E08560;
  --moss: #849053;
  --moss-soft: #A5B272;
  --fuchsia: #E30B50;
  --fuchsia-glow: #FF2C6E;

  --body: 'Ubuntu', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--brown-deep);
  color: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--fuchsia); color: var(--cream); }

body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse at 85% 20%, rgba(227, 11, 80, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 80%, rgba(132, 144, 83, 0.10) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' /%3E%3CfeColorMatrix values='0 0 0 0 0.96 0 0 0 0 0.9 0 0 0 0 0.8 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 1;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 2;
}
section, nav, footer { position: relative; z-index: 3; }

/* ===== TOP BAR + NAV ===== */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.6);
  border-bottom: 1px solid rgba(247, 243, 238, 0.08);
  background: var(--ink);
}
.topbar a { color: rgba(247, 243, 238, 0.7); text-decoration: none; }
.topbar a:hover { color: var(--terra-glow); }
.topbar .contact-line { display: flex; gap: 1.5rem; align-items: center; }
.topbar .contact-line .sep { opacity: 0.4; }

nav {
  position: sticky; top: 0;
  padding: 0.9rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--ink);
  z-index: 100;
  border-bottom: 1px solid rgba(247, 243, 238, 0.08);
}
nav .logo { display: flex; align-items: center; text-decoration: none; }
nav .logo img { height: 44px; width: auto; display: block; }
nav .nav-links { display: flex; gap: 2rem; align-items: center; }
nav .nav-links a {
  color: rgba(247, 243, 238, 0.82);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}
nav .nav-links a:hover,
nav .nav-links a.active { color: var(--terra-glow); }
nav .cta {
  background: var(--cream);
  color: var(--brown-deep) !important;
  padding: 0.6rem 1.3rem;
  border-radius: 100px;
  font-weight: 500;
  border: 1.5px solid var(--cream);
  transition: all 0.3s ease;
}
nav .cta:hover { background: transparent; color: var(--cream) !important; }

.breadcrumb {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  font-size: 0.82rem;
  color: rgba(247, 243, 238, 0.55);
}
.breadcrumb a { color: rgba(247, 243, 238, 0.7); text-decoration: none; }
.breadcrumb a:hover { color: var(--terra-glow); }
.breadcrumb .sep { margin: 0 0.5rem; opacity: 0.4; }

.page-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}
.page-hero-text .type-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  background: rgba(227, 11, 80, 0.15);
  color: var(--fuchsia-glow);
}
.page-hero-text .type-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--fuchsia);
}
.page-hero-text h1 {
  font-family: var(--body);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.page-hero-text h1 em {
  font-style: italic;
  color: var(--fuchsia-glow);
  font-weight: 400;
}
.page-hero-text .tagline {
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(247, 243, 238, 0.82);
  margin-bottom: 2rem;
  font-weight: 300;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--terra);
  color: var(--cream);
  padding: 1.05rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(192, 106, 74, 0.35);
}
.btn-primary:hover {
  background: var(--terra-glow);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(224, 133, 96, 0.5);
}
.btn-back {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 1.05rem 1.5rem;
  border: 1px solid rgba(247, 243, 238, 0.22);
  border-radius: 100px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-back:hover {
  border-color: var(--cream);
  background: rgba(247, 243, 238, 0.05);
}
.page-hero-photo {
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}
.page-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.92);
}
.page-hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(61, 46, 36, 0.5) 100%);
}

.page-statement {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--brown-deep) 0%, var(--brown) 100%);
  margin-top: 2rem;
}
.page-statement p {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  line-height: 1.4;
  font-weight: 300;
  color: var(--cream);
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
}
.page-statement p em {
  font-style: italic;
  color: var(--fuchsia-glow);
  font-weight: 400;
}

.page-content {
  padding: 5rem 2rem;
  background: var(--cream);
  color: var(--brown);
}
.page-content-inner {
  max-width: 920px;
  margin: 0 auto;
}
.content-section { margin-bottom: 4rem; }
.content-section:last-child { margin-bottom: 0; }
.content-section .overline {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fuchsia);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.content-section .overline::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--fuchsia);
}
.content-section h2 {
  font-family: var(--body);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  color: var(--brown);
  margin-bottom: 1.5rem;
  letter-spacing: -0.015em;
}
.content-section h2 em { font-style: italic; color: var(--fuchsia); font-weight: 400; }
.content-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--brown);
  margin-bottom: 1.2rem;
  max-width: 700px;
}
.content-section strong { font-weight: 500; color: var(--brown-deep); }

/* Masterclass themas grid */
.themas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.thema {
  background: rgba(247, 243, 238, 0.6);
  border: 1px solid rgba(227, 11, 80, 0.15);
  border-radius: 14px;
  padding: 1.8rem;
  transition: all 0.3s ease;
}
.thema:hover {
  background: var(--cream);
  border-color: var(--fuchsia);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(227, 11, 80, 0.12);
}
.thema .roman {
  font-style: italic;
  color: var(--fuchsia);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.thema h3 {
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--brown);
  margin-bottom: 0.7rem;
  letter-spacing: -0.005em;
}
.thema h3 em { font-style: italic; color: var(--fuchsia); font-weight: 400; }
.thema p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--brown);
  opacity: 0.82;
  margin: 0 0 0.8rem 0;
}
.thema .frequency {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 500;
}

/* Hoe een avond eruit ziet */
.avond-flow {
  border-left: 2px solid var(--sand);
  padding-left: 2rem;
  margin-top: 1.5rem;
  max-width: 700px;
}
.flow-item {
  position: relative;
  padding-bottom: 2rem;
}
.flow-item:last-child { padding-bottom: 0; }
.flow-item::before {
  content: '';
  position: absolute;
  left: -2.4rem;
  top: 0.4rem;
  width: 14px; height: 14px;
  background: var(--fuchsia);
  border-radius: 50%;
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--sand);
}
.flow-item .time {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fuchsia);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.flow-item h3 {
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--brown);
  margin-bottom: 0.4rem;
}
.flow-item p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--brown);
  opacity: 0.82;
  margin: 0;
}

/* CTA naar agenda */
.agenda-cta {
  margin-top: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(227, 11, 80, 0.08), rgba(192, 106, 74, 0.08));
  border: 1px solid rgba(227, 11, 80, 0.2);
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.agenda-cta-text {
  flex: 1;
  min-width: 240px;
}
.agenda-cta-text h3 {
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 0.4rem;
}
.agenda-cta-text p {
  font-size: 0.92rem;
  color: var(--brown);
  opacity: 0.82;
  margin: 0;
  line-height: 1.5;
}
.agenda-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--fuchsia);
  color: var(--cream);
  padding: 0.85rem 1.6rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.agenda-cta-btn:hover {
  background: var(--fuchsia-glow);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(227, 11, 80, 0.35);
}

/* FAQ */
.faq { margin-top: 1rem; max-width: 760px; }
.faq-item { border-top: 1px solid rgba(90, 70, 59, 0.15); }
.faq-item:last-child { border-bottom: 1px solid rgba(90, 70, 59, 0.15); }
.faq-q {
  padding: 1.3rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--brown);
  transition: color 0.3s ease;
  user-select: none;
}
.faq-q:hover { color: var(--fuchsia); }
.faq-q .toggle {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(227, 11, 80, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--fuchsia);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--brown);
  opacity: 0.85;
}
.faq-item.open .faq-a {
  max-height: 320px;
  padding-bottom: 1.3rem;
}

.signup-cta {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--brown) 0%, var(--brown-deep) 100%);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.signup-cta::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse at bottom, rgba(227, 11, 80, 0.25) 0%, transparent 60%);
}
.signup-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.signup-cta .overline {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fuchsia-glow);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}
.signup-cta .overline::before,
.signup-cta .overline::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--fuchsia-glow);
}
.signup-cta h2 {
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1.3rem;
}
.signup-cta h2 em { font-style: italic; color: var(--fuchsia-glow); font-weight: 400; }
.signup-cta p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(247, 243, 238, 0.8);
  max-width: 540px;
  margin: 0 auto 2rem;
  font-weight: 300;
}
.btn-signup-large {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--terra);
  color: var(--cream);
  padding: 1.2rem 2.4rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 15px 40px rgba(192, 106, 74, 0.4);
}
.btn-signup-large:hover {
  background: var(--terra-glow);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(224, 133, 96, 0.55);
}

footer {
  background: var(--ink);
  color: rgba(247, 243, 238, 0.7);
  padding: 3rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-inner .logo img { height: 32px; }
.footer-inner .copy {
  font-size: 0.78rem;
  color: rgba(247, 243, 238, 0.5);
}

@media (max-width: 800px) {
  .topbar { flex-direction: column; align-items: stretch; gap: 0.3rem; padding: 0.5rem 1.1rem; font-size: 0.64rem; letter-spacing: 0.05em; }
  .topbar .contact-line { align-self: flex-start; justify-content: flex-start; gap: 0.5rem; flex-wrap: nowrap; white-space: nowrap; }
  .topbar .contact-line .sep { display: inline; opacity: 0.4; }
  .topbar > div:last-child:not(.contact-line) { align-self: flex-end; justify-content: flex-end; text-align: right; }
  .topbar .loc-extra { display: none; }
  nav { padding: 0.8rem 1.2rem; }
  nav .logo img { height: 32px; }
  nav .nav-links a:not(.cta) { display: none; }
  nav .cta { font-size: 0.82rem; padding: 0.5rem 1rem; }

  .breadcrumb { padding: 1rem 1.2rem 0; font-size: 0.78rem; }
  .page-hero { padding: 2rem 1.2rem 1rem; grid-template-columns: 1fr; gap: 2rem; }
  .page-hero-photo { max-width: 380px; margin: 0 auto; }
  .page-hero-text h1 { font-size: 2rem; }

  .page-statement { padding: 3rem 1.2rem; }
  .page-content { padding: 3.5rem 1.2rem; }
  .content-section { margin-bottom: 3rem; }
  .content-section h2 { font-size: 1.6rem; }
  .themas { grid-template-columns: 1fr; }

  .avond-flow { padding-left: 1.5rem; }
  .flow-item::before { left: -1.9rem; }

  .agenda-cta { flex-direction: column; align-items: flex-start; }

  .signup-cta { padding: 4rem 1.2rem; }
  .signup-cta h2 { font-size: 1.8rem; }

  footer { padding: 2rem 1.2rem 1.5rem; }
  .footer-inner { flex-direction: column; text-align: center; }
}


/* WP: gradient-fallback voor hero-foto zonder uitgelichte afbeelding */
.page-hero-photo { position: relative; overflow: hidden; }
.page-hero-photo .img-fallback {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 25%, rgba(224,133,96,0.55) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 80%, rgba(132,144,83,0.4) 0%, transparent 60%),
    linear-gradient(135deg, var(--brown) 0%, var(--brown-deep) 60%, var(--ink) 100%);
}
.page-hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
