
/* ------------------------------- ROOT ---------------------------------- */
:root {
    --bg: #FBEAF4;
    --bg-grijs: #F9F4F2;
    --border-radius: 15px;
}

/* ------------------------------- standaard ---------------------------------- */
body {
  margin: 0;
  padding: 0;
}

section .container{
  margin: 0 auto;
  width: 80%;
}

section.marges{
  margin: 150px 0;
}

.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* ------------------------------- Fonts ---------------------------------- */
h1 {
  font-size: 7em;

  font-family: recent-grotesk, sans-serif;
font-weight: 500;
font-style: normal;
text-transform: uppercase;

margin: 0;
margin-bottom: 20px;
}

h2 {
  font-size: 4em;
  line-height: 1em;

  font-family: "scale-variable", sans-serif;
  font-variation-settings: "wdth" 50, "wght" 600;
  text-transform: uppercase;

  margin: 0;
  margin-bottom: 20px;
}

h3 {
  font-size: 3em;
  line-height: 1em;

  font-family: "scale-variable", sans-serif;
  font-variation-settings: "wdth" 50, "wght" 600;
  text-transform: uppercase;

  margin: 0;
  margin-bottom: 20px;
}

p{
  font-family: bricolage-grotesque, sans-serif;
font-weight: 300;
font-style: normal;

font-size: 1.1em;

margin: 0;
}


/* ------------------------------- Nav ---------------------------------- */
nav {
  position: fixed;
  top: 20px;
}

/* ------------------------------- Algemeen ---------------------------------- */



/* ------------------------------- sectie1 - header-image ---------------------------------- */
section.header-section {
  width: 100% !important;
  height: 100vh;
  max-width: unset;
}

.header-section .header-image {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

