/* =========================================
   BASIS
========================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #111111;
  background: #ffffff;
  line-height: 1.5;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.site-header {
  position: absolute;
  z-index: 100;

  top: 0;
  left: 0;

  width: 100%;

  background: transparent;
}

.header-inner {
  position: relative;

  width: 100%;
  min-height: 115px;

  padding: 0 6%;

  display: grid;
  grid-template-columns: 1fr auto 1fr;

  align-items: start;

  padding-top: 25px;
}


/* NAV LINKS LINKS */

.main-nav-left {
  display: flex;
  align-items: center;

  gap: 40px;

  padding-top: 17px;
}

.main-nav-left a {
  font-size: 18px;
  font-weight: 400;
}


/* LOGO CENTRAAL */

.logo {
  display: block;
  justify-self: center;
}

.logo img {
  width: 205px;
  height: auto;
}


/* CTA RECHTS */

.header-cta {
  justify-self: end;

  padding-top: 2px;
}

.button-nav {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 56px;

  padding: 0 24px;

  border: 2px solid #111111;
  border-radius: 30px;

  font-size: 17px;

  background: transparent;
}


/* MOBILE MENU */

.menu-toggle {
  display: none;

  border: 0;

  background: transparent;

  color: #111111;

  font-size: 28px;

  cursor: pointer;
}


/* =========================================
   HERO
========================================= */

.hero {
  position: relative;

  width: 100%;

  height: 100vh;
  min-height: 700px;

  overflow: hidden;

  background: #eeeeee;
}


.hero-slide {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  opacity: 0;
  visibility: hidden;

  transition: opacity 0.6s ease;
}


.hero-slide.active {
  opacity: 1;
  visibility: visible;
}


.hero-slide picture {
  position: absolute;

  inset: 0;

  display: block;

  width: 100%;
  height: 100%;
}


.hero-image {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center bottom;
}


/* =========================================
   POSITIE FOTO PER SLIDE
========================================= */

.hero-slide-1 .hero-image {
  object-position: center bottom;
}

.hero-slide-2 .hero-image {
  object-position: center bottom;
}

.hero-slide-3 .hero-image {
  object-position: center bottom;
}

.hero-slide-4 .hero-image {
  object-position: center bottom;
}


/* =========================================
   HERO TEKST
========================================= */

.hero-overlay {
  position: absolute;

  inset: 0;

  z-index: 2;
}


.hero-content {
  position: absolute;

  left: 12%;

  top: 36%;

  width: 530px;
  max-width: 42vw;
}


.hero-content h1,
.hero-content h2 {
  margin: 0 0 35px;

  font-size: clamp(44px, 4vw, 64px);

  line-height: 1.05;

  font-weight: 700;

  letter-spacing: -0.02em;
}


.hero-content p {
  margin: 0 0 36px;

  font-size: clamp(20px, 1.8vw, 29px);

  line-height: 1.35;

  font-weight: 400;
}


/* CTA IN HERO */

.hero-link {
  display: inline-block;

  padding: 0 0 8px;

  border-bottom: 2px solid rgba(255, 255, 255, 0.35);

  font-size: 15px;

  font-weight: 700;

  letter-spacing: 0.28em;

  text-transform: uppercase;

  color: #ffffff;
}


/* =========================================
   PIJLEN
========================================= */

.hero-arrow {
  position: absolute;

  z-index: 20;

  top: 52%;

  transform: translateY(-50%);

  display: flex;

  align-items: center;
  justify-content: center;

  width: 62px;
  height: 62px;

  padding: 0;

  border: 0;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.82);

  color: #111111;

  font-size: 38px;

  cursor: pointer;
}


.hero-arrow-prev {
  left: 22px;
}


.hero-arrow-next {
  right: 22px;
}


/* =========================================
   DOTS
========================================= */

.hero-dots {
  position: absolute;

  z-index: 20;

  bottom: 30px;
  left: 50%;

  transform: translateX(-50%);

  display: flex;

  gap: 10px;
}


.hero-dot {
  width: 12px;
  height: 12px;

  padding: 0;

  border: 1.5px solid #111111;
  border-radius: 50%;

  background: transparent;

  cursor: pointer;
}


.hero-dot.active {
  background: #111111;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
  padding: 70px 0;

  background: #1f1f1f;

  color: #ffffff;
}


.footer-inner {
  display: grid;

  grid-template-columns: 1fr 2fr 1fr;

  gap: 40px;

  align-items: start;
}


.footer-logo img {
  width: 140px;
  height: auto;
}


.footer-navigation {
  display: flex;

  flex-direction: row;

  flex-wrap: wrap;

  gap: 24px;
}


.footer-navigation a,
.footer-contact a {
  color: #ffffff;
}


.footer-contact {
  display: flex;

  justify-content: flex-end;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {


  /* HEADER */

  .header-inner {
    min-height: 85px;

    padding: 15px 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;
  }


  .main-nav-left,
  .header-cta {
    display: none;
  }


  .logo {
    position: relative;

    order: 1;
  }


  .logo img {
    width: 130px;
  }


  .menu-toggle {
    display: block;

    order: 2;
  }


  /* HERO */

  .hero {
    height: 100vh;

    min-height: 620px;
  }


  .hero-image {
    object-fit: cover;

    object-position: center bottom;
  }


  /* MOBIELE FOTO POSITIES */

  .hero-slide-1 .hero-image {
    object-position: center bottom;
  }

  .hero-slide-2 .hero-image {
    object-position: center bottom;
  }

  .hero-slide-3 .hero-image {
    object-position: center bottom;
  }

  .hero-slide-4 .hero-image {
    object-position: center bottom;
  }


  /* MOBILE TEKST */

  .hero-content {
    left: 8%;

    top: auto;

    bottom: 90px;

    width: 84%;

    max-width: none;
  }


  .hero-content h1,
  .hero-content h2 {
    margin-bottom: 18px;

    font-size: 38px;

    line-height: 1.05;
  }


  .hero-content p {
    margin-bottom: 22px;

    font-size: 18px;
  }


  .hero-link {
    font-size: 12px;

    letter-spacing: 0.22em;
  }


  .hero-arrow {
    display: none;
  }


  .hero-dots {
    bottom: 28px;
  }


  /* FOOTER */

  .footer-inner {
    grid-template-columns: 1fr;

    gap: 30px;
  }


  .footer-navigation {
    flex-direction: column;

    gap: 8px;
  }


  .footer-contact {
    justify-content: flex-start;
  }
}
