:root {
  --pink: #ea5ea0;
  --yellow: #f7cf00;
  --blue: #2344a0;
  --green: #69c3a8;
  --purple: #9279c4;
  --cream: #f3efe4;
  --light-gray: #f2f2f2;
  --page-gray: #efefef;
  --text-gray: #8f8f8f;
  --black: #050505;
  --white: #ffffff;
  --shadow: 0 8px 18px rgba(0, 0, 0, 0.08);

  --title-font: "Barlow Condensed", sans-serif;
  --body-font: "Poppins", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--body-font);
}

img {
  display: block;
  max-width: 100%;
}

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



.site-header {
  height: 125px;
  padding: 28px 42px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}

.logo {
  width: clamp(120px, 14vw, 210px);
  height: auto;
}

.nav {
  display: flex;
  gap: 52px;
  align-items: center;
  padding-top: 10px;
}

.nav a {
  font-weight: 700;
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}


.intro-banner {
  background: var(--green);
  padding: 48px 34px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  min-height: 300px;
}

.intro-text h1 {
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(3.5rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 0.9;
}

.intro-text p {
  margin: 16px 0 0;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.4;
  font-weight: 400;
}

.pink-line {
  display: block;
  height: 6px;
  background: var(--pink);
  margin-top: 12px;
}

.pink-line.short {
  width: 380px;
  max-width: 100%;
}

.intro-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-icon img {
  width: clamp(90px, 13vw, 150px);
}



.form-section {
  background: var(--cream);
  padding: 40px 34px 36px;
}

.form-group h2,
.stories-section h2,
.cta-text h2 {
  margin: 0 0 38px;
  font-family: var(--title-font);
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1;
}

.form-group.full {
  margin-bottom: 28px;
}

.form-section textarea,
.form-section select {
  width: 100%;
  border-radius: 22px;
  background: var(--white);
  font-family: var(--body-font);
  font-size: 1rem;
  color: var(--black);
  outline: none;
}

.form-section textarea {
  resize: vertical;
  min-height: 150px;
  border: 4px solid var(--purple);
  padding: 16px 18px;
}

.small-textarea {
  min-height: 130px !important;
  border-color: #46bfa3 !important;
}

textarea::placeholder {
  color: #9c9090;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.select-group {
  padding-top: 4px;
}

.field-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-section select {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  box-shadow: var(--shadow);
  padding: 14px 42px 14px 14px;
  background-image:
    linear-gradient(45deg, transparent 50%, #666 50%),
    linear-gradient(135deg, #666 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.select-preview {
  margin-top: 6px;
  width: 100%;
  max-width: 200px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--light-gray);
}

.select-preview div {
  padding: 14px 14px;
  font-size: 0.95rem;
  color: #5b5b5b;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: fit-content;
  border: 0;
  border-radius: 999px;
  padding: 16px 30px;
  font-family: var(--body-font);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button span {
  font-size: 2rem;
  line-height: 0.8;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.button-yellow {
  background: var(--yellow);
  color: var(--black);
}

.form-group .button {
  margin-top: 20px;
}

.stories-section {
  background: var(--white);
  padding: 38px 34px 46px;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 28px;
}

.story-card {
  min-height: 210px;
  border-radius: 28px;
  padding: 20px 24px 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pink-card {
  background: #e868a7;
}

.purple-card {
  background: #9380c5;
}

.yellow-card {
  background: #f7cf00;
}

.quote-mark {
  font-family: var(--title-font);
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
}

.quote-open {
  position: absolute;
  top: 16px;
  left: 24px;
}

.quote-close {
  font-size: 2.4rem;
}

.story-content {
  padding-top: 20px;
  max-width: 75%;
}

.story-content p {
  margin: 0 0 22px;
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 500;
}

.story-role {
  display: inline-block;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.92rem;
  font-weight: 500;
}

.story-footer {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 12px;
}

.story-avatar {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
}


.cta-banner {
  background: var(--blue);
  color: var(--white);
  padding: 26px 34px 24px;
  display: grid;
  grid-template-columns: 1.2fr 120px auto;
  align-items: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
}

.cta-pink-circle {
  position: absolute;
  width: 88px;
  height: 88px;
  background: var(--blue);
  border-radius: 50%;
  left: -40px;
  top: -18px;
}

.cta-green-dot {
  position: absolute;
  width: 26px;
  height: 26px;
  background: var(--green);
  border-radius: 50%;
  right: 28px;
  top: 28px;
}

.cta-yellow-dot {
  position: absolute;
  width: 88px;
  height: 88px;
  background: var(--pink);
  border-radius: 50%;
  left: -40px;
  top: -18px;
}

.cta-text {
  position: relative;
  z-index: 2;
  padding-left: 100px;
}

.cta-text h2 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: clamp(3rem, 4.2vw, 4.8rem);
}

.cta-text .pink-line {
  width: 700px;
  max-width: 100%;
  height: 4px;
}

.cta-icon {
  display: flex;
  justify-content: center;
}

.cta-icon img {
  width: 82px;
}


.cta-button {
  justify-self: end;
  min-width: 280px;
}

.resources-page {
  --resources-green: #63c2a8;
  --resources-pink: #e85fa8;
  --resources-purple: #9b84cd;
  --resources-blue: #243f9f;
  --resources-yellow: #ffd400;
  --resources-cream: #f4efe6;
}

.resources-page .resources-hero {
  background: var(--resources-purple);
  align-items: center;
}

.resources-page .resources-small-text {
  margin-top: 18px;
  max-width: 860px;
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 300;
}

.resources-page .intro-icon img {
  width: 130px;
  height: auto;
}





.dilemmas {
  background: var(--cream);
  padding-top: 1vw;
}

.titels {
  margin: 0 0 38px;
  
  font-family: var(--title-font);
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1;
}

.dilemma-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-bottom: 42px;
}

.dilemma-grid img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  transition: transform 0.2s ease;
}

.dilemma-grid img:hover {
  transform: rotate(-1deg) scale(1.02);
}

.resources-page .dilemmas {
   background: var(--cream);
  padding: 38px 34px 46px;
}

.resources-page .dilemmas .titels {
  margin-left: 0 ;
  padding-left: 0 ;
}






.resources-explanation {
  padding-top: 8px;
  padding-bottom: 70px;
}

.resources-explanation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}

.resources-explanation-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
}

.resources-explanation-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 500;
}

.resources-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-top: 4px;
}

.resources-dot.green {
  background: var(--resources-green);
}

.resources-dot.pink {
  background: var(--resources-pink);
}

.resources-dot.blue {
  background: var(--resources-blue);
}



.resources-page .resources-pink-cta {
  background: var(--resources-pink);
  border-top: 0;
}

.resources-page .resources-pink-cta .pink-line {
  background: var(--resources-purple);
}

.resources-page .resources-pink-cta .cta-icon img {
  width: 84px;
}



.resources-block {
  padding-top: 34px;
  padding-bottom: 20px;
}

.resources-heading {
  display: grid;
  grid-template-columns: 54px 360px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 22px;
}

.resources-heading>span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.resources-heading h2 {
  margin: 0;
}

.resources-heading p {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.1;
  font-weight: 800;
}

.resources-heading.student>span {
  background: var(--resources-green);
}

.resources-heading.teacher>span {
  background: var(--resources-pink);
}

.resources-heading.school>span {
  background: var(--resources-blue);
}

.resources-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  padding-left: 76px;
}

.resources-card {
  min-height: 230px;
  border: 4px solid;
  border-radius: 22px;
  background: var(--white);
  padding: 26px 30px 22px;
}

.resources-card h3 {
  margin: 0 0 10px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.1;
  font-weight: 600;
}

.resources-card p {
  margin: 0 0 18px;
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 300;
}

.resources-card a {
  font-weight: 900;
  text-decoration: none;
}

.resources-card a:hover {
  text-decoration: underline;
}

.resources-card-grid.student .resources-card {
  border-color: var(--resources-green);
}

.resources-card-grid.student .resources-card a {
  color: var(--resources-green);
}

.resources-card-grid.teacher .resources-card {
  border-color: var(--resources-pink);
}

.resources-card-grid.teacher .resources-card a {
  color: var(--resources-pink);
}

.resources-card-grid.school .resources-card {
  border-color: var(--resources-blue);
}

.resources-card-grid.school .resources-card a {
  color: var(--resources-blue);
}

.resources-page {
  --resources-green: #63c2a8;
  --resources-pink: #e85fa8;
  --resources-purple: #9b84cd;
  --resources-blue: #243f9f;
  --resources-yellow: #ffd400;
  --resources-cream: #f4efe6;
}

.resources-page .resources-hero {
  background: var(--resources-purple);
  align-items: center;
}

.resources-page .resources-small-text {
  margin-top: 18px;
  max-width: 860px;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 300;
}

.resources-page .intro-icon img {
  width: 130px;
  height: auto;
}

/* Dilemma cards */

.resources-dilemmas {
  padding-bottom: 20px;
}

.resources-dilemma-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7vw;
}




.resources-explanation {
  padding-top: 8px;
  padding-bottom: 70px;
}

.resources-explanation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}

.resources-explanation-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 18px;
  align-items: start;
}

.resources-explanation-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 300;
}

.resources-dot {
  display: block;
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  margin-top: 4px;
}

.resources-dot.green {
  background: var(--resources-green);
}

.resources-dot.pink {
  background: var(--resources-pink);
}

.resources-dot.blue {
  background: var(--resources-blue);
}



.resources-page .resources-pink-cta {
  background: var(--resources-pink);
  border-top: 0;
}

.resources-page .resources-pink-cta .pink-line {
  background: var(--green);
}

.resources-page .resources-pink-cta .cta-icon img {
  width: 84px;
}



.resources-block {
  padding-top: 34px;
  padding-bottom: 20px;
}

.resources-heading {
  display: grid;
  grid-template-columns: 54px 360px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 22px;
}

.resources-heading>span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.resources-heading h2 {
  margin: 0;
}

.resources-heading p {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.1;
  font-weight: 600;
}

.resources-heading.student>span {
  background: var(--resources-green);
}

.resources-heading.teacher>span {
  background: var(--resources-pink);
}

.resources-heading.school>span {
  background: var(--resources-blue);
}

.resources-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-left: 76px;
}

.resources-card {
  min-height: 165px;
  border: 4px solid;
  border-radius: 22px;
  background: var(--white);
  padding: 26px 30px 22px;
}

.resources-card h3 {
  margin: 0 0 10px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.1;
  font-weight: 600;
}

.resources-card p {
  margin: 0 0 18px;
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 300;
}

.resources-card a {
  font-weight: 600;
  text-decoration: none;
}

.resources-card a:hover {
  text-decoration: underline;
}

.resources-card-grid.student .resources-card {
  border-color: var(--resources-green);
}

.resources-card-grid.student .resources-card a {
  color: var(--resources-green);
}

.resources-card-grid.teacher .resources-card {
  border-color: var(--resources-pink);
}

.resources-card-grid.teacher .resources-card a {
  color: var(--resources-pink);
}

.resources-card-grid.school .resources-card {
  border-color: var(--resources-blue);
}

.resources-card-grid.school .resources-card a {
  color: var(--resources-blue);
}


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

  .form-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .cta-button {
    justify-self: start;
  }


  .resources-page .dilemma-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .resources-explanation-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .resources-heading {
    grid-template-columns: 54px 1fr;
  }

  .resources-heading p {
    grid-column: 2;
  }

  .resources-card-grid {
    grid-template-columns: 1fr;
    padding-left: 0;
    gap: 22px;
  }
}

@media (max-width: 800px) {
  .site-header {
    align-items: center;
    min-height: auto;
    height: auto;
    padding: 22px 24px;
  }


  .logo {
    width: 120px;
  }

  .menu-toggle {
    width: 42px;
    height: 32px;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    height: 4px;
    border-radius: 999px;
    background: var(--black);
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 24px;
    background: var(--white);
    border-top: 2px solid var(--black);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: 0.2s ease;
    z-index: 20;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .intro-icon {
    display: none;
  }
  
  .titels {
    padding-top: 20px ;
  }

  .cta-text .pink-line {
    width: 280px;
    max-width: 100%;
    height: 4px;
    
  }
  .cta-text {
    padding-left: 0px;
  }

  .pink-line.short {
    width: 280px;
    max-width: 100%;
  }

  

 
  .resources-page .dilemmas {
    padding-left: 34px;
    padding-right: 34px;
  }

  .resources-page .dilemma-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .resources-page .resources-pink-cta {
    grid-template-columns: 1fr;
  }

  .resources-page .resources-pink-cta .button {
    width: 100%;
  
  }

  .indeweg{
  position: absolute;
  width: 26px;
  height: 26px;
  background: var(--pink );
  border-radius: 50%;
  right: 28px;
  top: 28px;
  padding-right: 40px;
  }
}

@media (max-width: 600px) {

  .site-header,
  .intro-banner,
  .form-section,
  .stories-section,
  .cta-banner {
    padding-left: 22px;
    padding-right: 22px;
  }

  .form-group h2,
  .stories-section h2,
  .cta-text h2 {
    font-size: clamp(2.6rem, 11vw, 3.8rem);
  }

  .intro-text h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .story-content {
    max-width: 100%;
    padding-top: 28px;
  }

  .story-footer {
    justify-content: space-between;
  }

  .story-avatar {
    width: 64px;
    height: 64px;
  }

  .cta-button {
    min-width: unset;
    width: 100%;
  }

  .button {
    width: 100%;
  }


  .resources-page .resources-small-text {
    font-size: 0.95rem;
  }

  .resources-page .dilemmas {
    padding: 28px 22px 36px;
  }

  .resources-page .titels {
    font-size: clamp(2.6rem, 11vw, 3.8rem);
  }

  .resources-heading {
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }

  .resources-heading>span {
    width: 38px;
    height: 38px;
  }

  .resources-card {
    min-height: auto;
    padding: 22px;
  }
}
