body {
  background-color: #FDE8DF;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

h1, h2, h3, p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #113325;
  margin: 0 0 12px 0;
}

h1 {
  font-weight: 700;
  font-size: clamp(24px, 2.5vw, 32px);
}

h2 {
  font-weight: 700;
  font-size: clamp(16px, 1.8vw, 20px);
}

p {
  font-weight: 500;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
}

.hoofd {
  padding: 3vh 6vw;
  height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  gap: 2vh;
  max-width: 1440px;
  margin: 0 auto;
}

.logo {
  text-align: center;
}

.logo img {
  height: clamp(70px, 9vh, 120px);
}

.inhoud {
  display: flex;
  flex: 1;
  min-height: 0;
  gap: 4vw;
}

.links {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 716px;
}

.links h1 {
  margin: 0 0 clamp(8px, 1vh, 14px) 0;
}

.links h2:first-of-type {
  margin: 0 0 clamp(12px, 1.5vh, 20px) 0;
}

.links p:first-of-type {
  margin: 0 0 clamp(24px, 4vh, 52px) 0;
}

.links h2:last-of-type {
  margin: 0 0 clamp(24px, 4vh, 52px) 0;
}

.rechts {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.rechts img {
  max-height: 100%;
  width: 100%;
  max-width: 400px;
  object-fit: contain;
}

.socials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.socials p {
  margin: 0 0 4px 0;
}

.socials-iconen {
  display: flex;
  gap: 16px;
}

footer {
  background-color: #113325;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer p {
  color: #E2991A;
  margin: 0;
  max-width: 66%;
}

.footer-inhoud {
  max-width: 1440px;
  width: 100%;
  padding: 0 6vw;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .hoofd {
    height: auto;
    padding: 4vh 6vw;
  }

  .inhoud {
    flex-direction: column;
  }

  .rechts {
    justify-content: center;
  }

  .rechts img {
    max-width: 50%;
  }

  .socials-iconen {
    gap: 24px;
  }

  .socials-iconen a {
    font-size: 28px;
  }

  footer {
    height: auto;
    padding: 4vh 6vw;
  }

  .footer-inhoud {
    padding: 0;
  }

  footer p {
    max-width: 100%;
  }
}

.links a {
  text-decoration: underline;
}

.links a:hover {
  text-decoration: none;
}