* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  background-color: white;
  width: 100%;
}

a {
  text-decoration: none;
}

.img-bg {
    background-color: #464646;
}

/* ========== FONTS ========== */
h1 {
  text-align: center;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  font-size: 54px;
}

h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 54px;
  line-height: 80px;
  color: #ffffff;
  text-shadow: 5px 5px 15px #00000050;
  padding-bottom: 90px;
}

h3 {
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: orangered;
  text-shadow: 5px 5px 15px #00000050;
}

h4 {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  font-size: 44px;
}

h5 {
  color: whitesmoke;
  font-size: 34px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

h6 {
  color: whitesmoke;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

p {
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 30px;
}

/* ========== END OF FONTS ========== */

/* ======================================== NAVBAR ======================================== */

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

#mobile-navbar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.5s ease-in-out;
  z-index: 2;
}

.mobile-navbar-links {
  margin: 23vh 0 0 5vw;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
}

.mobile-navbar-links div {
  margin-top: 2vh;
}

.mobile-navbar-links div a {
  text-decoration: none;
  white-space: nowrap;
  font-weight: 300;
  letter-spacing: 1px;
  color: black;
  transition: all 0.1s ease-in-out;
}

.mobile-navbar-links div a:hover {
  color: orangered;
}

.lang-mobile {
  position: relative;
  display: flex;
  justify-content: space-around;
  top: 1px;
  right: 1vw;
}

.lang-mobile div a img {
  width: 26px;
  height: 16px;
  margin-right: 10px;
}

/* ===================== */

/* ===== DESKTOP NAVBAR ===== */

nav {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.1s ease-in-out;
  font-family: "Poppins", sans-serif;
  z-index: 3;
}

nav div img {
  width: 250px;
  margin: 2vh 0 2vh 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.menu {
  width: 80vw;
  margin-left: 10vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu div {
  margin-right: 5vw;
}

/* ===================== */

/* ===== MENU STYLING ===== */

.menu-link {
  color: black;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 1px;
  position: relative;
  transition: all 0.2s ease-in-out;
}

.menu-link::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 2px;
  line-height: 1;
  width: 100%;
  background-color: orangered;
  transform-origin: bottom;
  transform: scaleX(0);
  transition: transform 0.2s linear;
}

.menu-link:hover::after,
.menu-link:active::after {
  transform: scaleX(1);
  transform-origin: bottom;
  transition: transform 0.2s linear;
}

/* ===================== */

/* ===== LANGUAGE TOGGLE ===== */

.lang {
  position: absolute;
  display: flex;
  justify-content: space-between;
  top: 1px;
  right: 1vw;
}

.lang div a img {
  width: 26px;
  height: 16px;
  margin-right: 10px;
}

/* ===================== */

/* ===== SCROLL ANIMATION ===== */

.scrolling-active {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 3px 1rem rgba(0, 0, 0, 0.1);
}

.scrolling-active #brand-logo {
  width: 170px;
}

.scrolling-active .menu-btn {
  top: 3vh;
}

/* ===================== */

/* ===== BURGER MENU BUTTON ===== */

.menu-btn {
  display: none;
  position: absolute;
  top: 4vh;
  left: 2vw;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 50px;
  cursor: pointer;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.menu-btn div {
  width: 32px;
  height: 3px;
  background-color: #000;
  border-radius: 10px;
  margin: 8px;
  transition: all 0.3s ease-in-out;
}

/* ===================== */

/* switch to mobile on < 1023 */

/* ===== NAVBAR MEDIA QUERIES ===== */

@media screen and (max-width: 1023px) {
  .menu-btn {
    display: block;
  }

  .menu div {
    margin: 0;
  }

  .menu-link {
    display: none;
  }

  .lang {
    display: none;
  }

  /* ===== MENU OPEN ANIMATION ===== */

  #navbar.open {
    opacity: 1;
  }

  #mobile-navbar.open {
    display: block;
    opacity: 1;
  }

  .menu-btn.open .line1 {
    transform: rotate(45deg) translate(6px, 9px);
  }

  .menu-btn.open .line2 {
    transform: translateX(-50px);
    background: transparent;
  }

  .menu-btn.open .line3 {
    transform: rotate(-45deg) translate(6px, -9px);
  }

  /* ===================== */
}

@media screen and (max-width: 395px) {
  nav div img {
    width: 140px;
  }

  .scrolling-active div img {
    width: 130px;
  }

  .menu-btn {
    top: 3vh;
  }
}

/* ======================================== END OF NAVBAR ======================================== */

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

.header-wrapper {
  width: 100%;
  height: 100vh;
  background: url(../img/Casa-El-Naranjo.jpg) no-repeat;
  background-size: cover;

  background-position: center center;
  /*
  background-attachment: fixed;
  */
  background-color: #464646;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-content {
  width: 80vw;
  height: 300px;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}

.header-content h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 54px;
  line-height: 80px;
  color: #ffffff;
  text-shadow: 5px 5px 15px #00000050;
  padding-bottom: 90px;
}

.scrolling-active .header-button {
  display: none;
}

.header-button a {
  transition: all 1s ease-in-out;
}

.header-button {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 90vw;
  top: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 25px;
  /**/
}

.header-icon {
  pointer-events: none;
  color: rgba(255, 255, 255, 0);
  font-size: 36px;
  -webkit-animation-name: "header-button-animation";
  -webkit-animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-name: "header-button-animation";
  -moz-animation-duration: 1.5s;
  -moz-animation-iteration-count: infinite;
  -o-animation-name: "header-button-animation";
  -o-animation-duration: 1.5s;
  -o-animation-iteration-count: infinite;
  animation-name: "header-button-animation";
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}

.header-button:hover .header-icon {
  animation: none;
  color: rgba(255, 255, 255, 1);
}

@-webkit-keyframes header-button-animation {
  0% {
    transform: translateY(-34px);
  }

  100% {
    color: rgba(255, 255, 255, 1);
    transform: translateY(5px);
  }
}

@-moz-keyframes header-button-animation {
  0% {
    transform: translateY(-34px);
  }

  100% {
    color: rgba(255, 255, 255, 1);
    transform: translateY(5px);
  }
}

@-o-keyframes header-button-animation {
  0% {
    transform: translateY(-34px);
  }

  100% {
    color: rgba(255, 255, 255, 1);
    transform: translateY(5px);
  }
}

@keyframes header-button-animation {
  0% {
    transform: translateY(-34px);
  }

  100% {
    color: rgba(255, 255, 255, 1);
    transform: translateY(5px);
  }
}

@media screen and (max-width: 510px) {
  .header-wrapper {
    display: block;
  }

  .header-content h2 {
    padding-top: 30vh;
    font-size: 45px;
  }

  .header-button {
    top: 92vh;
    left: 45vw;
  }
}

@media screen and (max-width: 380px) {
  .header-content h2 {
    padding-top: 16vh;
    font-size: 35px;
  }
}

@media screen and (max-height: 510px) {
  .header-wrapper {
    display: block;
  }

  .header-content h2 {
    padding-top: 28vh;
    font-size: 38px;
  }
}

@media screen and (min-width: 1448px) {
  .header-content h2 {
    font-size: 67px;
  }
}

@media screen and (min-width: 1846px) {
  .header-content h2 {
    font-size: 76px;
  }
}
/* ======================================== END OF HEADER ======================================== */

/* ======================================== MAIN CONTENT ======================================== */

main {
  width: 100%;
  height: auto;
}

/* ========== SECTION ABOUT ========== */

.about-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background-color: #fff;
}

.about-content {
  display: flex;
  flex-direction: column;
  margin: 90px 40px 100px 40px;
  align-items: center;
}

.about-content h4 {
  padding-top: 4vh;
  text-align: center;
}

.about-content p {
  text-align: center;
  display: block;
  padding: 5vh 16vw 0 16vw;
}

.about-content a {
  color: orangered;
}

.about-content a:hover {
  color: orange;
}

/* ========== END OF SECTION ABOUT ========== */

/* ========== SECTION ACCO ========== */

/* === acco text === */

.acco-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  background-color: rgb(247, 247, 247);
}

.acco-content {
  display: flex;
  flex-direction: column;
  margin: 90px 40px 50px 40px;
  align-items: center;
}

.acco-content h4 {
  padding-top: 4vh;
  text-align: center;
}

.acco-content p {
  text-align: center;
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding: 5vh 16vw 0 16vw;
}

/* === ====== === */

/* === acco images === */

.acco-img-wrapper {
  margin: 5px 0 40px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-flow: wrap;
}

.acco-preview {
  width: 315px;
  height: 510px;
  margin: 10px 10px 10px 10px;
  background-size: cover;
  border-radius: 20px;
  background-color: orangered;
}

.preview-wrapper {
  width: 315px;
  height: 510px;
  margin: 0;
  background-size: cover;
  border-radius: 20px;
  background: rgba(255, 69, 0, 0);
  transition: all 0.3s ease-in-out;
}

.preview-content {
  width: 315px;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  margin-top: 400px;
  position: absolute;
  pointer-events: none;
}

.preview-header {
  width: 315px;
  display: flex;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.preview-header-left {
  margin-right: 43px;
}

.preview-header-right {
  margin-left: 43px;
}

.preview-content p {
  opacity: 0;
  color: whitesmoke;
  margin: 20px 30px 20px 30px;
  transition: all 0.3s ease-in-out;
}

.acco-preview:hover .preview-content {
  transform: translateY(-150px);
}

.acco-preview:hover p {
  opacity: 1;
}

.sol-img:hover .preview-wrapper {
  background: rgba(255, 69, 0, 0.6);
}

.agua-img:hover .preview-wrapper {
  background: rgba(173, 216, 230, 0.6);
}

.tierra-img:hover .preview-wrapper {
  background: rgba(166, 123, 91, 0.6);
}

.sol-img {
  background-image: url("../img/acco_preview/sol_preview.jpg");
}

.agua-img {
  background-image: url("../img/acco_preview/agua_preview.jpg");
}

.tierra-img {
  background-image: url("../img/acco_preview/tierra_preview.jpg");
}
/* === ====== === */

/* === acco button === */

.acco-button {
  margin: 30px 0 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-link {
  display: block;
  width: 275px;
  height: 60px;
  line-height: 60px;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  color: whitesmoke;
  background-color: rgb(238, 105, 46);
  border-radius: 30px;
  letter-spacing: 2px;
  text-align: center;
  position: relative;
  transition: all 0.35s;
}

.button-link span {
  position: relative;
  z-index: 1;
}

.button-link:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 0, 59, 0);
  border-radius: 30px;
  transition: all 0.3s;
}

.button-link:hover {
  border: 1px solid orangered;
  color: orangered;
  letter-spacing: 3px;
}

.button-link:hover:after {
  background-color: whitesmoke;
  width: 100%;
}

/* === ====== === */

/* ========== END OF SECTION ACCO ========== */

/* ========== SECTION ACTIVITIES PREVIEW ========== */

.activities-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  background-color: #fff;
}

.activities-content {
  display: flex;
  flex-direction: column;
  margin: 90px 0 100px 0;
  align-items: center;
}

.activities-content h4 {
  padding-top: 4vh;
  text-align: center;
}

.activities-content p {
  text-align: center;
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  /*
  margin: 50px 40px 50px 40px;
  */
  padding: 1vh 16vw 0 16vw;
}

.activities-preview {
  margin: 50px 0 30px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-flow: wrap;
}

.act-wrapper-left {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-flow: wrap;
}
.act-wrapper-right {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-flow: wrap;
}

.act-preview {
  display: flex;
  width: 235px;
  height: 325px;
  margin: 10px 10px 10px 10px;
  background-size: cover;
  border-radius: 20px;
  background-color: orangered;
}

.act-preview-wrapper {
  width: 235px;
  height: 325px;
  margin: 0;
  background-size: cover;
  border-radius: 20px;
  background: rgba(255, 69, 0, 0);
  transition: all 0.3s ease-in-out;
}

.act-preview-content {
  width: 235;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  margin: 225px 0 0 15px;
  position: absolute;
  pointer-events: none;
}

.act-preview:hover .act-preview-wrapper {
  background: rgba(0, 100, 0, 0.7);
}

.fietsen-img {
  background-image: url("../img/activiteiten/fietsen_activiteit.jpg");
}

.wandelen-img {
  background-image: url("../img/activiteiten/wandelen_act.jpg");
}

.meren-img {
  background-image: url("../img/activiteiten/meren_activiteit.jpg");
}

.steden-img {
  background-image: url("../img/activiteiten/steden_activiteiten.jpg");
}

/* ========== END OF SECTION ACTIVITIES PREVIEW ========== */

/* ========== MAIN MEDIA QUERIES ========== */

@media screen and (max-width: 450px) {
  /* ABOUT */
  .about-content h4 {
    font-size: 29px;
  }

  .about-content p {
    padding: 3vh 8vw 0 8vw;
  }

  /* ACCO */
  .acco-content h4 {
    font-size: 29px;
  }

  .acco-content p {
    padding: 3vh 8vw 0 8vw;
  }

  /* ACTIVITIES */
  .activities-content h4 {
    font-size: 29px;
  }
  .activities-content p {
    padding: 1vh 8vw 0 8vw;
  }
}

@media screen and (max-width: 1019px) {
  .act-preview {
    margin: 10px 25px 10px 25px;
  }
}

/* ========== END OF MAIN MEDIA QUERIES ========== */

/* ======================================== END OF MAIN CONTENT ======================================== */

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

/* ======================================== END OF FOOTER ======================================== */
