:root {
  --purple: #6b3fa0;
  --purple-dark: #5a3486;
  --orange: #f2a93b;
  --orange-dark: #e09422;
  --yellow: #f7d046;
  --dark: #1f2024;
  --text: #2b2b2e;
  --text-light: #6b6b70;
  --bg-soft: #faf9f7;
  --radius: 14px;
  --max-width: 1100px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.55;
}

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

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid #eee;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img { height: 36px; width: auto; }

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-purple { background: var(--purple); color: #fff; }
.btn-purple:hover { background: var(--purple-dark); }

.btn-orange { background: var(--orange); color: #1f1f1f; }
.btn-orange:hover { background: var(--orange-dark); }

.btn-block { display: block; width: 100%; text-align: center; }

/* Hero */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 110px 0 90px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero .wrap { position: relative; z-index: 1; }

.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin: 0 0 14px;
  max-width: 700px;
}

.hero p.lead {
  font-size: 1.25rem;
  margin: 0;
  max-width: 600px;
}

/* Opt-in card, used in hero or standalone */
.optin-card {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 380px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.optin-card .check { color: #2da44e; font-weight: 700; }

.optin-card .small-print {
  font-weight: 800;
  text-align: center;
  margin: 6px 0 16px;
}

.optin-card input[type="text"],
.optin-card input[type="email"] {
  width: 100%;
  padding: 13px 14px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.9rem; }
}

/* Sections */
section { padding: 70px 0; }

.section-soft { background: var(--bg-soft); }

h2.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 50px;
}

/* Feature grid (3 cols) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 800px) {
  .feature-grid { grid-template-columns: 1fr; }
}

.feature-card {
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ece1f7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
}

img.feature-icon {
  background: none;
  border-radius: 0;
  width: 80px;
  height: 80px;
}

.feature-card h3 { margin: 0 0 10px; }
.feature-card p { color: var(--text-light); margin: 0; }

/* Product cards (homepage) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 800px) {
  .product-grid { grid-template-columns: 1fr; }
}

.product-card {
  border-radius: var(--radius);
  padding: 34px;
  background: #fff;
  border: 1px solid #eee;
  text-align: center;
}

.product-card h3 { font-size: 1.4rem; margin: 0 0 12px; }
.product-card p { color: var(--text-light); margin: 0 0 22px; }

/* Stats counter */
.stats-banner {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 40px 0;
}

.stats-banner h2 { font-size: 1.6rem; margin: 0 0 6px; }
.stats-banner p { color: #999; margin: 0; font-size: 0.9rem; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.stats-row .num { font-size: 1.8rem; font-weight: 800; color: var(--purple); }
.stats-row .label { color: var(--text-light); }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 800px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

.testimonial {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.testimonial .quote { margin: 0 0 14px; }
.testimonial .author { font-weight: 700; color: var(--text-light); font-size: 0.9rem; }

/* Founder story */
.founder {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 800px) {
  .founder { grid-template-columns: 1fr; }
}

.founder img { border-radius: var(--radius); }
.founder ul { padding-left: 20px; }

/* FAQ */
.faq-item { border-bottom: 1px solid #eee; padding: 24px 0; }
.faq-item h3 { margin: 0 0 10px; }
.faq-item p, .faq-item li { color: var(--text-light); }

/* CTA banner */
.cta-banner {
  text-align: center;
  background: var(--purple);
  color: #fff;
  border-radius: var(--radius);
  padding: 50px 30px;
}

.cta-banner h2 { margin: 0 0 24px; }

/* Footer */
footer.site-footer {
  background: var(--dark);
  color: #ccc;
  padding: 50px 0;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

footer.site-footer a { color: #ccc; display: block; margin-bottom: 10px; }
footer.site-footer a:hover { color: #fff; }

/* Plain list page (overzicht) */
.opdrachten-list {
  max-width: 700px;
  margin: 0 auto;
  padding-left: 20px;
}

.opdrachten-list li { margin-bottom: 10px; }

.center { text-align: center; }

/* --- Fun Music network switcher (hamburger in the header) --- */
.net-nav { position: relative; }

.net-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 0;
  background: none; border: 1px solid #e4e4e4; border-radius: 10px;
  cursor: pointer;
}
.net-toggle:hover { background: var(--bg-soft); }
.net-toggle span { display: block; width: 20px; height: 2px; background: var(--text); position: relative; }
.net-toggle span::before,
.net-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px;
  background: var(--text); transition: transform .15s ease;
}
.net-toggle span::before { top: -6px; }
.net-toggle span::after  { top: 6px; }
.net-toggle[aria-expanded="true"] span { background: transparent; }
.net-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.net-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

.net-menu {
  position: absolute; right: 0; top: calc(100% + 10px); z-index: 60;
  min-width: 240px; padding: 8px;
  background: #fff; border: 1px solid #ececec; border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}
.net-menu[hidden] { display: none; }
.net-menu a {
  display: block; padding: 11px 14px; border-radius: 10px;
  font-weight: 600; font-size: .95rem; text-decoration: none; color: var(--text);
}
.net-menu a:hover { background: var(--bg-soft); }
.net-menu a.is-current { color: var(--text-light); background: var(--bg-soft); }

/* --- Footer --- */
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding-bottom: 28px; margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand { margin: 0; font-weight: 800; font-size: 1.15rem; color: #fff; }
.footer-tagline { margin: 4px 0 0; font-size: .9rem; color: #9a9aa0; }

.footer-col h4 {
  margin: 0 0 14px; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: #8a8a90;
}
footer.site-footer .footer-col a { font-size: .93rem; margin-bottom: 9px; }

.footer-bottom {
  margin-top: 32px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .82rem; color: #8a8a90;
}
.footer-bottom p { margin: 0 0 5px; }

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}

/* Footer CTA: the generic footer link colour outranks .btn-orange, restore button contrast */
footer.site-footer .btn-orange { color: #1f1f1f; display: inline-block; margin-bottom: 0; }
footer.site-footer .btn-orange:hover { color: #1f1f1f; }

/* Bottom-bar link has to sit inline inside the sentence */
footer.site-footer .footer-bottom a {
  display: inline; margin-bottom: 0; color: #b5b5ba; text-decoration: underline;
}
footer.site-footer .footer-bottom a:hover { color: #fff; }

/* --- Contact form --- */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}
.contact-form textarea { resize: vertical; min-height: 150px; }
.contact-form .cf-turnstile { margin-bottom: 12px; }
