:root {
  /* Pas hier eenvoudig de achtergrondkleur van iedere sectie aan */
  --color-header: #ffc600;
  --color-social: #74aa50;
  --color-intro: #ffffff;
  --color-story-video: #ffffff;
  --color-short-message: #ffffff;
  --color-products: #ffffff;
  --color-image-left: #ffffff;
  --color-image-right: #ffffff;
  --color-benefits: #ffc600;
  --color-contact: #ffffff;
  --color-footer: var(--color-header);

  --color-text: #000000;
  --color-muted: #63706e;
  --color-light: #ffffff;
  --color-accent: #74aa50;
  --color-border: #000000;
  --font-heading: "Helvetica";
  --font-body: "Helvetica";
  --container: 1120px;
  --radius: 18px;
  --shadow: 0 12px 35px rgba(32, 60, 58, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-light);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
}

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

a {
  color: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(64px, 8vw, 105px) 0;
}

.narrow {
  max-width: 740px;
  text-align: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.15;
}

h1 {
  max-width: 900px;
  margin: 0 auto 10px;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: #000000;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.4rem;
}

p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  margin-bottom: 8px;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header {
  display: grid;
  min-height: clamp(200px, 40vw, 180px);
  padding: 40px 0;
  place-items: center;
  color: var(--color-light);
  text-align: center;
  background: var(--color-header);
}

.subtitle {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #000000;
  opacity: 0.82;
}

.social-bar {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: var(--color-social);
}

.social-bar a {
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  place-items: center;
  transition: transform 180ms ease, background 180ms ease;
}

.social-bar a:hover,
.social-bar a:focus-visible {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.social-bar svg {
  width: 19px;
  fill: var(--color-light);
}

.intro {
  background: var(--color-intro);
}

.intro-content {
  display: flex;
  max-width: 820px;
  align-items: center;
  gap: clamp(28px, 5vw, 60px);
}

.profile-photo {
  width: clamp(130px, 20vw, 190px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  border: 7px solid var(--color-light);
  border-radius: 50%;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.story-video {
  background: var(--color-story-video);
}

.two-columns {
  display: grid;
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.video-wrapper {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.short-message {
  background: var(--color-short-message);
}

.products {
  text-align: center;
  background: var(--color-products);
}

.product-grid {
  display: grid;
  margin-top: 42px;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-light);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  box-shadow: 0 18px 42px rgba(32, 60, 58, 0.18);
  transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.product-card span {
  display: block;
  padding: 19px 15px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
}

.image-left {
  background: var(--color-image-left);
}

.image-right {
  background: var(--color-image-right);
}

.feature-photo {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.benefits {
  background: var(--color-benefits);
}

.section-heading {
  margin-inline: auto;
}

.benefit-grid {
  display: grid;
  margin-top: 44px;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefit-grid article {
  padding: clamp(25px, 4vw, 40px);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.benefit-grid ul {
  margin: 0;
  padding-left: 21px;
}

.benefit-grid li::marker {
  color: var(--color-accent);
}

.contact {
  background: var(--color-contact);
}

.contact-layout {
  display: grid;
  align-items: start;
  gap: clamp(40px, 8vw, 100px);
  grid-template-columns: 0.8fr 1.2fr;
}

form {
  display: grid;
  padding: clamp(25px, 5vw, 48px);
  border-radius: var(--radius);
  background: var(--color-light);
  box-shadow: var(--shadow);
}

form label {
  margin-bottom: 7px;
  font-size: 0.9rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  margin-bottom: 20px;
  padding: 13px 15px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--color-accent);
  outline: 3px solid rgba(168, 95, 65, 0.14);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
  flex: 0 0 auto;
  accent-color: var(--color-accent);
}

button {
  margin-top: 22px;
  padding: 14px 25px;
  border: 0;
  border-radius: 999px;
  color: var(--color-light);
  background: var(--color-accent);
  font: 700 1rem var(--font-body);
  cursor: pointer;
  transition: filter 180ms ease, transform 180ms ease;
}

button:hover,
button:focus-visible {
  filter: brightness(0.9);
  transform: translateY(-2px);
}

.site-footer {
  padding: 35px 0;
  color: #000000;
  text-align: center;
  background: var(--color-footer);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .two-columns,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .image-right .two-columns img {
    grid-row: 1;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .product-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
.button {
    display: inline-block;
    padding: 14px 28px;
    background-color: #74aa50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    transition: background-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
    background-color: #ffc600
}
.button-center {
    text-align: center;
    margin-top: 30px;
}