@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');


/* Base typography */
:root {
  --md-text-font: "Inter", system-ui, sans-serif;
  --md-code-font: "JetBrains Mono", "Fira Mono", monospace;
}

/* Body text: readable, calm */
.md-typeset {
  font-size: 1rem;
  line-height: 1.75;
  max-width: 68ch;
}

/* Constrain article width for readability */
.md-content__inner {
  max-width: 72ch;
  margin: 0 auto;
  padding: 2rem 1.25rem;
}

/* Headings: authority without weight */
.md-typeset h1 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.25em;
  border-bottom: none;
}

.md-typeset h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  border-bottom: none;
}

.md-typeset h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 1.5rem;
}

/* Mobile: smaller still */
@media screen and (max-width: 76.1875em) {
  .md-content__inner {
    padding: 1.25rem 1rem;
  }
}

/* Mobile nav */
@media screen and (max-width: 59.9375em) {
  /* Drawer menu background: pastel green */
  .md-nav--primary .md-nav__title {
    background-color: #b8ddb5 !important;
    color: #2c2825 !important;
  }

  /* Nederlands (first section): pastel orange */
  .md-nav--primary > .md-nav__list > .md-nav__item:first-child > .md-nav__link,
  .md-nav--primary > .md-nav__list > .md-nav__item:first-child > label {
    background-color: #f5c9a0 !important;
    color: #2c2825 !important;
  }

  /* English (second section): pastel blue */
  .md-nav--primary > .md-nav__list > .md-nav__item:nth-child(2) > .md-nav__link,
  .md-nav--primary > .md-nav__list > .md-nav__item:nth-child(2) > label {
    background-color: #a0c8f0 !important;
    color: #2c2825 !important;
  }
}

/* Paragraph spacing */
.md-typeset p {
  margin-top: 0;
  margin-bottom: 1.4em;
}

/* Horizontal rule: subtle section divider */
.md-typeset hr {
  border: none;
  border-top: 1px solid var(--md-default-fg-color--lightest);
  margin: 2.5rem 0;
}

/* Nav: sage green bar */
.md-header {
  background-color: #6B8C6E;
  box-shadow: none;
  border-bottom: none;
}

.md-header__title,
.md-header-nav__title {
  color: #ffffff;
  font-weight: 600;
}

.md-header__button {
  color: #ffffff;
}

.md-search__input {
  background-color: rgba(255,255,255,0.15);
  color: #ffffff;
}

.md-tabs {
  background-color: #6B8C6E;
}

.md-tabs__link {
  color: #ffffff !important;
  opacity: 0.65;
}

.md-tabs__link--active,
.md-tabs__link:hover {
  color: #ffffff !important;
  opacity: 1;
}

/* Sidebar nav: hover + active in sage green */
.md-nav__link:hover {
  color: #6B8C6E !important;
}

.md-nav__link--active,
.md-nav__link--active:hover {
  color: #6B8C6E !important;
  font-weight: 600;
}

.md-tabs__link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  opacity: 0.75;
}

.md-tabs__link--active,
.md-tabs__link:hover {
  opacity: 1;
}

/* Sidebar: quieter */
.md-nav__title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.5;
}

.md-nav__link {
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Bold: same weight family, no decoration */
.md-typeset strong {
  font-weight: 600;
}

/* Blockquote: Japanese minimalism — ink on paper */
.md-typeset blockquote {
  border-left: 2px solid #b0a090;
  padding: 0.75rem 0 0.75rem 1.5rem;
  margin: 2rem 0;
  color: #6b6560;
  font-style: italic;
  background: none;
}
