*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

a, a:visited, a:link {
  color: #eee;
  text-decoration: none;
}

body {
  font-size: 2rem;
  font-family: "Lato", sans-serif;
  background: #16213E;
}

.gallerij__button, .header__button {
  width: 11rem;
  padding: 1rem;
  font-size: 70%;
  background: 0.5rem solid #E94560;
  border: none;
  color: #eee;
  border-radius: 0.5rem;
}

.gallerij__button:hover, .header__button:hover {
  cursor: pointer;
  background: black;
  transition: 0.2s;
}

.gallerij__header, .kenmerken__header, .over__header {
  flex-direction: column;
  width: 100%;
  display: flex;
  align-items: center;
}

.media__h2, .gallerij__h2, .kenmerken__h2, .over__h2, .header__h2 {
  font-family: "Great Vibes", cursive;
  font-size: 200%;
}

.header__h1 {
  font-family: "Great Vibes", cursive;
  font-size: 300%;
  color: #eee;
}

.footer, .gallerij, .kenmerken, .over {
  height: 80rem;
  border-bottom: 0.5rem solid #E94560;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.kenmerkIcon, .header__logo {
  font-size: 200%;
  color: #eee;
  border: 0.3rem solid 0.5rem solid #E94560;
  border-radius: 50%;
  padding: 1.5rem;
}

.nav {
  width: 100%;
  height: 10rem;
  background: rgba(15, 52, 96, 0.7);
  display: flex; /* alles komt naast elkaar*/
  justify-content: space-between; /* alles gaat naar een verschillende plek*/
  min-height: 7rem;
  align-items: center; /* alles in de nav komt in het midden te staan*/
  color: #eee;
  padding: 2rem; /* alles heeft dan 40px afstand*/
  text-transform: uppercase;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

.nav__list {
  display: flex;
  list-style: none; /* styling weg*/
  gap: 4rem;
  font-size: 130%;
}

.nav__button {
  width: 11rem;
  padding: 1rem;
  font-size: 80%;
  background: #E94560;
  border: none;
  color: #eee;
  border-radius: 0.5rem;
  text-transform: uppercase;
}

.nav__button:hover {
  cursor: pointer;
  background: hsl(350, 70%, 49%);
  transition: 0.2s;
}

.header {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.header__figure {
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom right, rgba(22, 33, 62, 0.8), 80%, rgba(233, 69, 96, 0.5)), url(img/pexels-tanathip-rattanatum-2026451.jpg), url("../img/pexels-tanathip-rattanatum-2026451.jpg");
  background-size: 100% 100%;
}

.header > figure > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  color: #eee;
  text-align: center;
}

.over__columns {
  display: flex;
  gap: 4rem;
  justify-content: center;
  height: 100%;
}

.over__column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.over__p {
  color: #eee;
  width: 55ch;
}

.over__figure {
  position: relative;
  width: 40rem;
  height: 60rem;
}

.over__figure::after {
  content: "";
  background: linear-gradient(to bottom right, rgba(22, 33, 62, 0.8), 80%, rgba(233, 69, 96, 0.5)), url(img/pexels-tanathip-rattanatum-2026451.jpg);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0.5rem;
  border: 0.5rem solid #E94560 solid 0.1rem;
}

.over__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.kenmerken__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 4rem;
}

.kenmerken__listItem {
  list-style: none;
  color: #eee;
  flex-shrink: 0;
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 75%;
  padding: 2rem;
}

.kenmerken__p {
  width: 30ch;
  text-align: center;
}

.gallerij {
  height: 100%;
}

.gallerij__header {
  padding-bottom: 4rem;
}

.gallerij__fotos {
  display: flex;
  flex-wrap: wrap;
}

.gallerij__foto {
  width: 25%;
  height: 25rem;
  list-style: none;
  position: relative;
}

.gallerij__gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(22, 33, 62, 0.8), 80%, rgba(233, 69, 96, 0.5)), url(img/pexels-tanathip-rattanatum-2026451.jpg);
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transition: 0.8s;
  transform-origin: left;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallerij__img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.gallerij__button {
  opacity: 0;
  transition-delay: 0.8s;
  transition-duration: 0.2s;
}

.gallerij__foto:hover .gallerij__button {
  opacity: 1;
}

.gallerij__foto:hover .gallerij__gradient {
  transform: scale(1);
}

@media screen and (max-width: 75rem) {
  .body {
    font-size: 2rem;
    font-family: "Lato", sans-serif;
    background: #16213E;
  }
  .header {
    height: 140rem;
  }
  .over {
    padding: 4rem;
    height: 100rem;
    border-bottom: 0.5rem solid #E94560;
  }
  .over__header {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 2rem;
  }
  .over__columns {
    flex-direction: column;
    height: 80%;
  }
  .over__column {
    display: flex;
    align-items: center;
    height: 50%;
    font-size: 55%;
  }
  .over__p {
    width: 60%;
    color: #eee;
  }
  .over__figure {
    position: relative;
    width: 100%;
    height: 40%;
  }
  .kenmerken {
    list-style: none;
    color: #eee;
    flex-shrink: 0;
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .kenmerken__listItem {
    width: 100%;
    flex-direction: column;
  }
  .kenmerken__list {
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    flex-direction: column;
  }
  .gallerij {
    height: 80vh;
  }
  .gallerij__fotos {
    flex-wrap: wrap;
  }
  .gallerij__foto {
    width: 100%;
  }
  .gallerij {
    height: 20rem;
    width: 100%;
  }
  .gallerij__foto:hover .gallerij__button {
    opacity: 0;
  }
  .gallerij__foto:hover .gallerij__section {
    transform: scale(0);
  }
}
@media screen and (max-width: 50rem) {
  .nav__list {
    flex-direction: column;
  }
}
.footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 30rem;
}

.section__media {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20rem;
  padding: 4rem;
}

.media__h2 {
  padding: 2rem;
}

.media__logos {
  width: 4rem;
  height: 4rem;
}

.media__logo {
  border-radius: 2rem;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/*# sourceMappingURL=style.css.map */
