:root {
  --black: #000;

  --green-primary: #2ead72;

  --pink-soft: rgb(250, 223, 216);
  --salmon: #cf6458;

  --blue-soft: #6974d3;
  --blue-bright: #477bec;
  --blue-sky: #66a6f7;

  --cyan-soft: #96d1d8;
  --cyan-bright: #4de3fc;
  --cyan-neon: #24eede;

  --purple-light: #d7c5de;
  --purple-mid: #9180c2;
  --purple-bright: #b06ff4;
  --purple-deep: #12038e;

  --pink-hot: #d9028b;
  --pink-alt: #aa0786;
  --pink-electric: #e73cee;
  --red-hot: #f62536;
  --red-pink: #f6225f;

  --brown-muted: #7b5f56;

  --shadow-postit: 4px 6px 10px rgba(0, 0, 0, 0.25),
                   1px 1px 0 rgba(255, 255, 255, 0.4) inset;

  --plant-scale: 1.5;
  --plant-w: calc(205px / var(--plant-scale));
  --plant-h: calc(369px / var(--plant-scale));
}

@font-face {
  font-family: "Brittany";
  src: url("/landing/assets/fonts/Brittany.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Reset */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { height: 100%; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden; /* rotatie post-it kan anders 1px scroll geven */

  display: flex;
  flex-direction: column;
  align-items: center;

  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 12.8pt;
  line-height: 1.5;
  color: #000;

  background: url("/landing/assets/images/achtergrond.jpg") center / cover no-repeat fixed;
}

a { color: inherit; text-decoration: none; }

/* Header */
header {
  margin: 25px 15px 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 0 10px;
}

header img { max-height: 10rem; aspect-ratio: 1 1 }

h1 {
  margin: 0;
  font-family: "Brittany", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 4rem;
  line-height: 1;
}

.page-header {
  position: relative;
  margin-bottom: 25px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  padding: 0 clamp(16px, 3vw, 36px);
}

.page-header .brand {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.5vw, 28px);
  font-size: 1rem;
  font-weight: 500;
  justify-self: center;
  text-align: center;
}

.desktop-nav a {
  color: inherit;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  border-color: #000;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  justify-self: end;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #000;
  border-radius: 999px;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  min-width: 260px;
  width: min(320px, 80vw);
  background: #fff;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
  padding: 32px 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav-drawer.is-open {
  transform: translateX(0);
}

.nav-close {
  align-self: flex-end;
  font-size: 1.5rem;
  border: none;
  background: none;
  padding: 0;
  color: #1f2933;
  cursor: pointer;
}

.nav-drawer nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.nav-drawer nav a {
  color: #0f172a;
  text-decoration: none;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 15;
}

.nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 960px) {
  header {
    padding: 0;
  }

  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

/* Main layout */
main.landing-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px clamp(20px, 3vw, 48px);
  gap: clamp(32px, 4vw, 60px);
}

main {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: clamp(36px, 4vw, 60px);
}

/* ✅ werkt voor div of section */
main > * {
  width: clamp(280px, 38vw, 420px);
}

/* Left card (post-it) */
main .left {
  position: relative;
  width: clamp(300px, 40vw, 440px);
}

main .left h2 {
  font-family: "Brittany", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
  text-align: center;
}

.poem-postit {
  position: relative;
  border: 1px solid var(--pink-soft);
  border-radius: 30px;
  /*padding: clamp(14px, 2vw, 28px);*/
  background: linear-gradient(160deg, rgba(250, 223, 216, 0.75), rgba(255, 255, 255, 0.6));
  box-shadow: var(--shadow-postit);
  transform: rotate(-4deg);
}

.poem-postit::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 110px;
  height: 22px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(1px);
}

/* Right column */
main .right {
  font-size: 1.15rem;
}

.content {
  max-width: 560px;
  margin-inline: auto;
  text-align: justify;
  text-justify: inter-word;
  font-size: 1rem;
  line-height: 1.65;
  color: #0c0c0c;
}

.content strong {
  font-weight: 600;
}

.page-template-poems {
  margin-top: 2rem;
}

.page-template-poems .poems-intro h2 {
  font-family: "Brittany", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  margin-bottom: 0.25rem;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.poems-filters {
  display: flex;
  justify-content: flex-start;
  margin: 1rem 0 1.5rem;
}

.poems-filters label {
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.poem-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.25rem;
  justify-items: center;
}

.poem-card {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 360px;
  width: clamp(360px, 100%, 520px);
}

.poem-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.7));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.poem-card header,
.poem-card .poem-snippet,
.poem-card .poem-link {
  position: relative;
  z-index: 1;
  color: #fff;
}

.poem-card .poem-link {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.poem-grid .poem-card {
  align-self: stretch;
}

@media (max-width: 1400px) {
  .poem-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .poem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .poem-grid {
    grid-template-columns: 1fr;
  }
}

.poem-card header h3 {
  margin: 0;
  font-size: 1.25rem;
}

.poem-card header .poem-meta {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.55);
}

.poem-card p {
  margin: 0;
  flex: 1;
}

.landing-main-poems {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.landing-main-poems .poems-intro {
  max-width: 720px;
}

.poems-section {
  width: 100%;
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.poems-section .poem-grid {
  width: min(1320px, 100%);
}

/* Icons block */
main .right .icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;

  margin-top: 18px;
  padding: 10px 0;

  font-size: 5rem;
  color: #000;
}

/* Icon hover */
.icons a {
  transition: transform 0.2s ease, color 0.25s ease;
}

.icons a:hover {
  transform: translateY(-4px) scale(1.05);
}

.icons a[href*="facebook"]:hover { color: var(--blue-bright); }
.icons a[href*="instagram"]:hover { color: var(--pink-hot); }

/* Decorative plants */
.plant {
  position: fixed;
  width: var(--plant-w);
  height: var(--plant-h);
  background: url("/landing/assets/images/flower.png") center / cover no-repeat;
  pointer-events: none;
  z-index: -1;
}

.plant.right { top: 0; right: 0; }
.plant.left { bottom: 0; left: 0; transform: rotate(180deg); }

/* Heart inline */
.heart-bg {
  font-size: 22px;
  color: var(--red-pink);
  transform: rotate(14deg);
  pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
  body { font-size: 10pt; }

  header {
    margin: 15px 10px 5px;
    gap: 10px;
  }

  header img { max-height: 5rem; max-width: 5rem }

  h1 {
    font-size: 2.5rem;
    text-align: center;
  }

/*  main {
    flex-direction: column-reverse;
    gap: 30px;
    padding: 15px;
  } */

  main > * {
    width: min(520px, 100%);
  }

  main .right {
    text-align: center;
    font-size: 1.05rem;
  }

  main .right .icons {
    font-size: 3.5rem;
  }

  main .left {
    transform: rotate(2.5deg);
  }

  .plant { opacity: 0.35; }
}


@media (max-width: 768px) {
  /* Maak ruimte zodat je content niet achter de sticky bar verdwijnt */
  main {
    padding-bottom: 120px!important;
  }

  .icons.icons--sticky {
    position: fixed;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);

    width: min(360px, calc(100% - 24px));
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 18px;

    padding: 0 14px;
    border-radius: 999px;

    background: rgba(250, 223, 216, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.08);

    backdrop-filter: blur(8px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);

    font-size: 2.6rem; /* kleiner dan je normale icons */
    z-index: 999;
  }

  /* Hover is meh op touch; we houden het rustig */
  .icons.icons--sticky a:hover {
    transform: none;
  }

  /* Extra: iets grotere tap targets */
.icons.icons--sticky a {
    padding: 0px 10px;
    border-radius: 12px;
    display: inline-flex;
  }
}


.poem-card-wrapper {
  width: 100%;
}


footer a {
	text-decoration: underline;
}
