/* branding.css
   Nordic Foliage stijl, ingeperkt onder .nordic zodat hij de FQG-navbar en
   -footer op dezelfde pagina niet kan overschrijven. Automatisch afgeleid van
   de originele nordicfoliage.dk stylesheet. Pas hier aan, niet daar. */

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

.nordic * {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  /* background-color: #fff; */
  color: #1d2e2b;
  scroll-behavior: smooth;
  scroll-margin-top: 100px;
}
@media (max-width: 768px) {
  .nordic * {
    scroll-margin-top: 80px;
  }
}
/* HEADINGS */
.nordic h1, .nordic h2, .nordic h3, .nordic h4 {
  font-family: 'Playfair Display', serif;
  color: #294140;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.nordic h1 {
  font-size: 3rem;    /* ~48px */
  font-weight: 600;
}
.nordic h2 {
  font-size: 2.4rem;  /* ~38px */
  font-weight: 600;
}
.nordic h3 {
  font-size: 1.8rem;  /* ~29px */
  font-weight: 500;
}
.nordic h4 {
  font-size: 1.4rem;  /* ~22px */
  font-weight: 500;
}
/* PARAGRAPHS */
.nordic p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #1d2e2b;
  margin-bottom: 1rem;
}
/* OPTIONAL: links, strong, etc. */
.nordic strong {
  font-weight: 600;
}
.nordic .section-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.nordic .section-divider svg {
  display: block;
  width: 100%;
  height: 100px;
}
