/* ============================================================
   Breakfast 4 Business — Main Stylesheet
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@300;400;500;600;700;800&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --green:         #5FAF4D;
  --green-hover:   #52A03F;
  --dark-green:    #16331F;
  --footer-green:  #0E2316;
  --accent-light:  #7FD06A;
  --on-dark-mid:   #A8C6A0;
  --on-dark-soft:  #C7E7BE;
  --badge-text:    #2F8F1E;
  --badge-bg:      #EAF6E6;
  --ink:           #16331F;
  --body:          #525F56;
  --muted:         #7C887F;
  --nav:           #33433A;
  --surface:       #F4F8F1;
  --border-1:      #EAEFE6;
  --border-2:      #E8EEE3;
  --border-3:      #D7DFD2;
  --white:         #FFFFFF;

  --radius-btn:    7px;
  --radius-card:   13px;
  --radius-img:    14px;
  --radius-pill:   100px;

  --shadow-card:   0 24px 70px -24px rgba(20,50,25,.45);
  --shadow-pop:    0 18px 44px -18px rgba(95,175,77,.5);
  --shadow-hover:  0 8px 24px -10px rgba(20,50,25,.18);

  --max-w:         1280px;
  --px:            48px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Container ────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-btn);
  padding: 12px 22px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover { background: var(--green-hover); border-color: var(--green-hover); }

.btn-outline {
  background: var(--white);
  color: var(--ink);
  border-color: var(--border-3);
}
.btn-outline:hover { background: var(--surface); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,.08); }

.btn-lg { padding: 16px 28px; font-size: 15px; }

/* ── ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border-1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.header-logo img { height: 56px; width: auto; }
.header-logo-name {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -.02em;
  color: var(--ink);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-nav a {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--nav);
  transition: color .15s;
}
.header-nav a:hover { color: var(--green); }

.header-cta { margin-left: 24px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform .2s, opacity .2s;
}

/* ── ================================================================
   HERO
   ================================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 84px var(--px);
  gap: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--badge-bg);
  color: var(--badge-text);
  font-weight: 700;
  font-size: 12.5px;
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  width: fit-content;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.hero-title {
  font-weight: 800;
  font-size: 60px;
  line-height: 1.02;
  letter-spacing: -.035em;
  color: var(--ink);
}
.hero-title .accent { color: var(--green); }

.hero-intro {
  font-size: 19px;
  line-height: 1.6;
  color: var(--body);
  max-width: 440px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border-1);
  margin-top: 4px;
}
.hero-stat-num {
  font-weight: 800;
  font-size: 26px;
  color: var(--ink);
  line-height: 1.1;
}
.hero-stat-label {
  font-weight: 500;
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── ================================================================
   CREDIBILITY STRIP
   ================================================================ */
.credibility {
  background: var(--dark-green);
  padding: 22px var(--px);
}
.credibility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.credibility-text {
  font-weight: 600;
  font-size: 14px;
  color: var(--on-dark-soft);
}
.btn-credibility {
  background: var(--green);
  color: var(--dark-green);
  border-color: var(--green);
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s;
}
.btn-credibility:hover { background: var(--green-hover); }

/* ── ================================================================
   NETWERK INTRO
   ================================================================ */
.netwerk {
  padding: 88px var(--px);
}
.netwerk-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.netwerk-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-img);
}
.eyebrow {
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.section-title {
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-title.sm { font-size: 36px; letter-spacing: -.025em; }
.section-body {
  font-size: 18px;
  color: var(--body);
  line-height: 1.65;
  margin-bottom: 28px;
}
.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 500;
  font-size: 15px;
  color: var(--nav);
}
.checklist-check {
  color: var(--green);
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ── ================================================================
   OCHTENDPROGRAMMA
   ================================================================ */
.ochtend {
  background: var(--surface);
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  padding: 84px var(--px);
}
.ochtend-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.ochtend-location {
  font-weight: 500;
  font-size: 15px;
  color: var(--muted);
  text-align: right;
  flex-shrink: 0;
  margin-top: 4px;
}
.ochtend-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.ochtend-card {
  background: var(--white);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  padding: 22px 18px;
}
.ochtend-card.dark {
  background: var(--dark-green);
  border-color: var(--dark-green);
}
.ochtend-time {
  font-weight: 800;
  font-size: 20px;
  color: var(--green);
  margin-bottom: 8px;
}
.ochtend-card.dark .ochtend-time { color: var(--accent-light); }
.ochtend-card-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 6px;
}
.ochtend-card.dark .ochtend-card-title { color: var(--white); }
.ochtend-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.ochtend-card.dark .ochtend-card-desc { color: var(--on-dark-mid); }

/* ── ================================================================
   LEDEN FOTO
   ================================================================ */
.leden-foto {
  height: 360px;
  overflow: hidden;
}
.leden-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

/* ── ================================================================
   LIDMAATSCHAP
   ================================================================ */
.lidmaatschap {
  padding: 88px var(--px);
}
.lidmaatschap-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 56px;
}
.lidmaatschap-intro {
  font-size: 17px;
  color: var(--body);
  margin-top: 16px;
}
.lid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.lid-card {
  border: 1.5px solid var(--border-1);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.lid-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.lid-card.popular {
  border-color: var(--green);
  border-width: 2px;
  box-shadow: var(--shadow-pop);
}
.lid-popular-badge {
  display: inline-block;
  background: var(--badge-bg);
  color: var(--badge-text);
  font-weight: 700;
  font-size: 12px;
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  margin-bottom: 16px;
  width: fit-content;
}
.lid-name {
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 8px;
}
.lid-price {
  font-weight: 800;
  font-size: 40px;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1;
}
.lid-period {
  font-weight: 600;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 20px;
}
.lid-desc {
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 28px;
}
.lid-card .btn { width: 100%; justify-content: center; }

/* ── ================================================================
   NIEUWS / PODCAST
   ================================================================ */
.nieuws {
  background: var(--surface);
  border-top: 1px solid var(--border-1);
  padding: 84px var(--px);
}
.nieuws-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.nieuws-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.nieuws-card {
  background: var(--white);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.nieuws-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.nieuws-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.nieuws-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.nieuws-card:hover .nieuws-thumb img { transform: scale(1.03); }
.nieuws-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.nieuws-cat {
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.nieuws-title {
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 10px;
}
.nieuws-desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

/* ── ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
  background: var(--dark-green);
  padding: 72px var(--px);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.cta-title {
  font-weight: 800;
  font-size: 38px;
  color: var(--white);
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-body {
  font-size: 17px;
  color: var(--on-dark-mid);
  line-height: 1.65;
  max-width: 540px;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  flex-shrink: 0;
}

/* ── ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--footer-green);
  padding: 40px var(--px);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo-icon {
  display: flex;
  align-items: center;
}
.footer-logo-icon img { height: 60px; width: auto; }
.footer-logo-name {
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
}
.footer-info {
  font-size: 13.5px;
  color: rgba(255,255,255,.66);
  text-align: right;
  line-height: 1.7;
}
.footer-info a { color: rgba(255,255,255,.66); transition: color .15s; }
.footer-info a:hover { color: var(--white); }

/* ── ================================================================
   CONTACT FORM (homepage)
   ================================================================ */
.contact-section {
  padding: 84px var(--px);
  background: var(--white);
  border-top: 1px solid var(--border-1);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form .wpcf7, .contact-form .wpforms-container { margin-top: 0; }

/* Contact Form 7 field styling */
.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--border-3);
  border-radius: 7px;
  padding: 12px 16px;
  transition: border-color .15s;
  outline: none;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus { border-color: var(--green); }

.wpcf7-form label {
  font-weight: 600;
  font-size: 14px;
  color: var(--nav);
  margin-bottom: 6px;
  display: block;
}
.wpcf7-form input[type="submit"] {
  background: var(--green) !important;
  color: var(--white) !important;
  border: none !important;
  font-family: 'Hanken Grotesk', sans-serif !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  padding: 14px 32px !important;
  border-radius: var(--radius-btn) !important;
  cursor: pointer !important;
  transition: background .15s !important;
}
.wpcf7-form input[type="submit"]:hover { background: var(--green-hover) !important; }
.wpcf7-response-output { border-radius: 7px !important; margin-top: 16px !important; }

/* ── ================================================================
   NIEUWS ARCHIEF
   ================================================================ */
.archive-header {
  padding: 64px var(--px) 40px;
  border-bottom: 1px solid var(--border-1);
}
.archive-grid-wrap {
  padding: 56px var(--px) 84px;
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pagination {
  margin-top: 56px;
}
.pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination li { list-style: none; }
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 14px;
  border: 1.5px solid var(--border-3);
  color: var(--nav);
  transition: background .15s, color .15s, border-color .15s;
}
.pagination a:hover, .pagination .current {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

/* ── ================================================================
   SINGLE NIEUWS
   ================================================================ */
.single-header {
  padding: 64px var(--px) 0;
  max-width: 860px;
  margin-inline: auto;
}
.single-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
  transition: color .15s;
}
.single-back:hover { color: var(--green); }
.single-thumb {
  margin-top: 36px;
  border-radius: var(--radius-img);
  overflow: hidden;
}
.single-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.single-content {
  max-width: 860px;
  margin-inline: auto;
  padding: 48px var(--px) 96px;
}
.single-content p { margin-bottom: 20px; font-size: 18px; line-height: 1.7; }
.single-content h2 { font-size: 28px; font-weight: 800; color: var(--ink); margin: 40px 0 16px; }
.single-content h3 { font-size: 22px; font-weight: 700; color: var(--ink); margin: 32px 0 12px; }

/* ── ================================================================
   GASTEN PAGINA
   ================================================================ */
.gasten-wrap {
  min-height: 80vh;
  display: flex;
  align-items: flex-start;
  padding: 84px var(--px);
}
.gasten-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  line-height: 1.3;
}

/* ── ================================================================
   404
   ================================================================ */
.not-found-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 84px var(--px);
  text-align: center;
}
.not-found-wrap .section-title { margin-bottom: 16px; }

/* ── ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  :root { --px: 32px; }
  .ochtend-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-title { font-size: 48px; }
}

@media (max-width: 900px) {
  :root { --px: 24px; }

  /* Header */
  .header-nav { display: none; }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-1);
    padding: 20px 24px;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header { position: relative; }

  /* Hero */
  .hero { grid-template-columns: 1fr; }
  .hero-image { height: 260px; }
  .hero-text { padding: 56px var(--px); }
  .hero-title { font-size: 40px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }

  /* Netwerk */
  .netwerk-inner { grid-template-columns: 1fr; gap: 36px; }

  /* Ochtend */
  .ochtend-grid { grid-template-columns: repeat(2, 1fr); }
  .ochtend-header { flex-direction: column; }
  .ochtend-location { text-align: left; }

  /* Lid */
  .lid-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }

  /* Nieuws */
  .nieuws-grid { grid-template-columns: 1fr; }
  .nieuws-header { flex-direction: column; align-items: flex-start; }

  /* CTA */
  .cta-inner { grid-template-columns: 1fr; gap: 32px; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }

  /* Archief */
  .archive-grid { grid-template-columns: 1fr 1fr; }

  /* Gasten */
  .gasten-inner { grid-template-columns: 1fr; gap: 40px; }

  /* Section title */
  .section-title { font-size: 32px; }
  .section-title.sm { font-size: 28px; }

  /* Credibility */
  .credibility-inner { flex-direction: column; align-items: flex-start; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-info { text-align: left; }
}

@media (max-width: 600px) {
  .ochtend-grid { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-title { font-size: 34px; }
  .cta-title { font-size: 28px; }
  .lid-grid { max-width: 100%; }
}
