/* Doe Maar Dutch — public pages (home + pricing).
   Ported verbatim from the static site (www/WebsiteDutch/live/index.html and
   pricing.html). Styled after The Social Hub: white base, black text, bold
   grotesque headlines, pill buttons, playful pastel accent blocks
   (yellow / pink / green / blue).

   The two source pages carried near-identical CSS; the few genuinely
   conflicting rules (hero padding, pricing card colours) are scoped under the
   per-page body classes .page-home / .page-pricing so each page renders exactly
   as it did as a standalone file. */

/* ---- Self-hosted fonts ----
   Rubik and Space Grotesk, previously loaded from Google Fonts, are now served
   locally from ./fonts/ (no third-party request, no Google/GDPR dependency).
   Both are variable-weight woff2 files, so one file per subset covers every
   weight the pages use — Rubik 400/500/600, Space Grotesk 600/700 — exactly as
   Google served them. The url()s are relative to this stylesheet.
   Each face keeps Google's unicode-range split (latin + latin-ext) so the
   right subset loads for Dutch/European accents. No italic face is shipped:
   the pages never requested one from Google either, so the browser synthesises
   italics from the normal face just as before (pixel-faithful). */
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("fonts/rubik-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("fonts/rubik-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("fonts/space-grotesk-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("fonts/space-grotesk-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --grey: #67686a;
  --grey-light: #efeff0;
  --yellow: #ffeb66;
  --pink: #ffc2d0;
  --green: #00953c;
  --green-soft: #66bf8a;
  --blue: #0071ff;
  --burnt-orange: #cc5500;
  --creme: #ffddb8;
  --ginger: #893101;
  --amber: #ffbf00;
}

* {
  box-sizing: border-box;
}

body {
  font-family: Rubik, Arial, sans-serif;
  margin: 0;
  background: var(--white);
  color: var(--black);
  line-height: 1.65;
}

h1, h2, h3 {
  font-family: "Space Grotesk", Arial, Verdana, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* ---- Navigation bar ---- */
nav {
  background: #ffddb8;  /* beige orange */
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0.6rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nav-brand {
  color: var(--black);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  padding: 0.4rem 0;
}

.nav-links {
  display: flex;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: block;
  color: var(--black);
  text-decoration: none;
  padding: 0.45rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 9999rem;
}

.nav-links a:hover {
  background: #f3c592;
}

.nav-links a.active {
  background: #7393b3;  /* blue gray */
  color: var(--white);
}

.nav-links a.login {
  border: 1px solid var(--black);
  padding: 0.3rem 0.9rem;
  border-radius: 9999rem;
}

/* ---- Hero ---- */
header.hero {
  background: var(--burnt-orange);
  color: var(--black);
  text-align: center;
  padding: 2.5rem 1.25rem 2.75rem;
}

.flash-word {
  color: #ffddb8;  /* beige orange */
}

header.hero.hero-pink {
  background: var(--pink);
}

header.hero h1 {
  font-size: 3.4rem;
  margin: 0 auto 1rem;
  max-width: 15em;
}

header.hero p {
  font-size: 1.25rem;
  margin: 0 auto;
  max-width: 32em;
}

/* Pricing hero sits taller than the home hero. */
.page-pricing header.hero {
  padding: 5rem 1.25rem 5.5rem;
}

.page-pricing header.hero h1 {
  color: var(--black);
}

/* ---- Page content ---- */
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem 1.25rem 4rem;
}

section {
  margin-top: 2.5rem;
  background: rgba(255, 221, 184, 0.5);  /* beige orange, semi-transparent */
  border-radius: 12px;
  padding: 2rem 2.25rem;
}

section h2 {
  margin-top: 0;
}

#intro {
  background: none;
  padding: 2rem 0;
}

main > section:first-of-type {
  background: none;
  padding: 2rem 0;
}

section h2 {
  font-size: 2.2rem;
  margin: 0 0 1.25rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--grey);
}

/* ---- About section with photo (home) ---- */
#about-me {
  overflow: auto;
}

.about-img {
  float: right;
  width: 220px;
  max-width: 40%;
  margin: 0.3rem 0 1rem 1.75rem;
  border-radius: 12px;
  clip-path: inset(0 1mm 0 0 round 12px);  /* trim 1mm off the right edge */
}

/* ---- About photo & testimonial (pricing) ---- */
.about-photo {
  margin: 1.5rem 0;
  text-align: center;
}

.about-photo img {
  width: 30%;
  min-width: 180px;
  border-radius: 12px;
}

.about-photo figcaption {
  margin-top: 0.6rem;
  color: var(--grey);
  font-style: italic;
  font-size: 0.95rem;
}

.testimonial {
  background: var(--grey-light);
  border-radius: 12px;
  margin: 1.5rem auto;
  padding: 1rem 1.5rem;
  max-width: 420px;
}

.testimonial p {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-style: italic;
}

.testimonial cite {
  color: var(--grey);
  font-size: 0.9rem;
  font-style: normal;
}

/* ---- Cards (pricing, audience) ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.card {
  background: var(--grey-light);
  border-radius: 12px;
  padding: 2rem;
}

/* Home card accents (unused on the current home page, kept for fidelity). */
.page-home .card-grid .card:nth-child(odd) {
  background: var(--pink);
}

.page-home .card-grid .card:nth-child(even) {
  background: var(--yellow);
}

/* Pricing cards are blue-gray with white text. */
.page-pricing .card-grid .card:nth-child(odd) {
  background: #7393b3;  /* blue gray */
  color: var(--white);
}

.page-pricing .card-grid .card:nth-child(even) {
  background: #5a7a9d;  /* deeper blue gray */
  color: var(--white);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.card .price {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0.5rem 0;
}

.card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--grey);
}

/* On the pricing cards the price unit rides the white-on-blue treatment. */
.page-pricing .card .price span {
  color: inherit;
  opacity: 0.7;
}

.card ul {
  padding-left: 1.2rem;
  margin: 0.75rem 0 0;
}

.card li {
  margin-bottom: 0.4rem;
}

/* ---- Call-to-action button ---- */
.button {
  display: inline-block;
  background: #ffddb8;  /* beige orange */
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.9rem;
  border-radius: 9999rem;
  margin-top: 1.5rem;
  transition: background 0.15s ease;
}

.button:hover {
  background: #f3c592;
}

.button-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.button-row .button {
  margin-top: 0.5rem;
}

/* ---- Footer ---- */
footer {
  background: var(--burnt-orange);
  color: var(--black);
  text-align: center;
  padding: 1.75rem 1.25rem;
  font-size: 0.9rem;
}

footer a {
  color: #ffddb8;  /* beige orange */
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  header.hero {
    padding: 1.75rem 1.25rem 2rem;
  }

  .page-pricing header.hero {
    padding: 3.5rem 1.25rem 4rem;
  }

  header.hero h1 {
    font-size: 2.2rem;
  }

  section h2 {
    font-size: 1.7rem;
  }

  .nav-inner {
    justify-content: space-between;
    column-gap: 1.5rem;
    row-gap: 0.75rem;
  }

  .about-img {
    float: none;
    display: block;
    margin: 0 auto 1.25rem;
    max-width: 100%;
    width: 240px;
  }
}
