/* Burnoutcoach.net — Shared Stylesheet */
/* Font: DM Sans via Google Fonts (loaded in each page) */

:root {
  --green:        #1a7a4a;
  --green-dark:   #155e39;
  --green-light:  #eaf5ef;
  --green-mid:    #c8e6d4;
  --text:         #1a1a1a;
  --text-muted:   #555;
  --text-light:   #888;
  --border:       #dde8e2;
  --bg:           #ffffff;
  --bg-alt:       #f7faf8;
  --max-width:    760px;
  --max-wide:     1100px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */

h1, h2, h3, h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.35rem, 3vw, 1.85rem); margin-top: 2.5rem; margin-bottom: 0.85rem; }
h3 { font-size: 1.2rem; margin-top: 1.75rem; margin-bottom: 0.6rem; }
h4 { font-size: 1rem; margin-top: 1.25rem; margin-bottom: 0.4rem; }

p { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--green-dark); }

ul, ol { padding-left: 1.4rem; margin-bottom: 1.1rem; }
li { margin-bottom: 0.35rem; }

strong { font-weight: 600; }

/* ── LAYOUT ── */

.container {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container--narrow {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── HEADER ── */

.site-header {
  border-bottom: 2px solid var(--green);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.site-logo:hover { color: var(--green-dark); }

.site-nav {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
}

.site-nav a:hover,
.site-nav a.active { color: var(--green); background: var(--green-light); }

/* ── FOOTER ── */

.site-footer {
  margin-top: 5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 2.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.site-footer__inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer a { color: var(--text-muted); }
.site-footer a:hover { color: var(--green); }

/* ── HERO ── */

.hero {
  background: var(--green-light);
  border-bottom: 1px solid var(--green-mid);
  padding: 4rem 1.25rem 3.5rem;
  text-align: center;
}

.hero h1 { max-width: 680px; margin: 0 auto 1rem; }

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ── BLOG CARDS ── */

.blog-section {
  padding: 4rem 1.25rem;
}

.blog-section__title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-wide);
  margin: 0 auto;
}

.card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.card:hover {
  border-color: var(--green);
  box-shadow: 0 2px 12px rgba(26,122,74,0.08);
  text-decoration: none;
  color: inherit;
}

.card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.card h3 {
  font-size: 1.05rem;
  margin: 0;
  color: var(--text);
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

.card__arrow {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
}

/* ── INTRO BLOCK (homepage) ── */

.intro-block {
  max-width: 700px;
  margin: 3.5rem auto;
  padding: 0 1.25rem;
  text-align: center;
}

.intro-block p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ── ARTICLE LAYOUT ── */

.article-header {
  background: var(--green-light);
  border-bottom: 1px solid var(--green-mid);
  padding: 3rem 1.25rem 2.5rem;
}

.article-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.article-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.article-meta__tag {
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
}

.article-header h1 { margin-top: 0.5rem; }

.article-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
  max-width: 620px;
}

.article-body {
  max-width: var(--max-width);
  margin: 3rem auto;
  padding: 0 1.25rem;
}

/* ── FAQ SECTION ── */

.faq-section {
  border-top: 2px solid var(--green-mid);
  margin-top: 3rem;
  padding-top: 2rem;
}

.faq-section h2 { margin-top: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}

.faq-item:last-child { border-bottom: none; }

.faq-item__q {
  font-weight: 600;
  font-size: 0.975rem;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.faq-item__a {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── SOURCES SECTION ── */

.sources-section {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  margin-top: 2.5rem;
  font-size: 0.85rem;
}

.sources-section h3 { margin-top: 0; font-size: 0.9rem; color: var(--text-muted); }

.sources-section ol { margin-bottom: 0; }
.sources-section li { margin-bottom: 0.5rem; color: var(--text-muted); }
.sources-section a { word-break: break-word; font-size: 0.82rem; }

/* ── LEES OOK BLOCK ── */

.related-posts {
  background: var(--green-light);
  border: 1px solid var(--green-mid);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  margin-top: 2.5rem;
}

.related-posts h3 { margin-top: 0; font-size: 1rem; color: var(--green-dark); }
.related-posts ul { margin-bottom: 0; padding-left: 1.2rem; }
.related-posts li { margin-bottom: 0.5rem; }
.related-posts a { font-size: 0.9rem; }

/* ── KEUZEHULP TABLE ── */

.choice-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 1.25rem 0;
}

.choice-table th {
  background: var(--green);
  color: #fff;
  padding: 0.6rem 0.85rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
}

.choice-table td {
  padding: 0.6rem 0.85rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.choice-table tr:last-child td { border-bottom: none; }
.choice-table tr:nth-child(even) td { background: var(--bg-alt); }

/* ── CONTACT ── */

.contact-section {
  max-width: 540px;
  margin: 3.5rem auto;
  padding: 0 1.25rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid var(--green);
  outline-offset: 0;
  border-color: var(--green);
}

.form-group textarea { height: 130px; resize: vertical; }

.btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  background: var(--green-dark);
  color: #fff;
  text-decoration: none;
}

/* ── NOTICE BOX ── */

.notice {
  background: var(--green-light);
  border-left: 3px solid var(--green);
  padding: 0.9rem 1.1rem;
  border-radius: 0 5px 5px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 1.5rem 0;
}

/* ── BREADCRUMB ── */

.breadcrumb {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  align-items: center;
}

.breadcrumb a { color: var(--text-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb__sep { color: var(--border); }

/* ── OVER ONS ── */

.prose-page {
  max-width: var(--max-width);
  margin: 3.5rem auto;
  padding: 0 1.25rem;
}

.prose-page h1 { margin-bottom: 1.25rem; }

/* ── RESPONSIVE ── */

@media (max-width: 600px) {
  .site-header__inner { height: 54px; }
  .site-logo { font-size: 1.05rem; }
  .site-nav a { padding: 0.3rem 0.5rem; font-size: 0.82rem; }
  .hero { padding: 2.75rem 1.25rem 2.25rem; }
  .article-header { padding: 2rem 1.25rem 1.75rem; }
  .article-body { margin-top: 2rem; }
  .choice-table { font-size: 0.82rem; }
  .choice-table th, .choice-table td { padding: 0.5rem 0.6rem; }
}
