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


body {
  margin: 0 auto;
  width: 100vw;
  overflow-x: hidden;
  position: relative;
}

h2 {
  font-family: "Caveat", cursive;
}

h3 {
  font-family: "Caveat", cursive;
}

h4 {
  font-family: "Caveat", cursive;
  font-size: 1.4rem;
}

p {
  font-family: "Caveat", cursive;
  font-family: "PT Sans", sans-serif;
}

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

/* Navigatie */

nav {
  height: 100%;
  width: 100%;
  background-color: white;
  position: absolute;
  transform: translateX(100%);
  transition: 0.5s cubic-bezier(0.2, 0, 0, 1);
  z-index: 3;
  padding-top: 1.8rem;
  right: 0;
  overflow-y: hidden;
  overflow-x: hidden;
  position: fixed;
  margin-top: 1rem;
}

nav div:first-of-type {
  position: absolute;
}

nav.toonnav {
  transform: translateY(0%);
}

nav ul {
  padding: 1rem;
}

nav li {
  padding: 15px;
  list-style: none;
  position: relative;
  border-bottom: 1px solid rgba(64, 60, 54, 0.2);
  margin-top: 1.3rem;
  font-family: "Caveat", cursive;
  font-family: "PT Sans", sans-serif;
}

nav a {
  text-decoration: none;
  color: black;
}

nav li:hover { 
  font-weight: bolder;
  border-bottom: 1px solid black;
}

@media (min-width: 768px) {
  nav {
    width: 30%;
  }
}

/*Header*/

header {
  z-index: 5;
  background: white;
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 65px;
  max-width: 100vw;
  
}

@media (max-width: 768px) {
  header button {
    display: none;
  }
}

header figure {
  width: 80px;
  display: flex;
  align-items: center;
  position: relative;
  left: 4%;
}

header figure:nth-of-type(2) {
  left: 1%;
}

header figure:nth-of-type(2):hover {
  background-color: rgb(218, 218, 218);
  transition: .3s;
}

header figure:nth-of-type(2) img {
  width: 40px;
  margin-left: 1.2rem;
}

main {
  padding-top: 65px;
}

/* Video met tekst homepage */

.video-blok {
  width: 100%;
  height: 600px;
}

.video-blok h2 {
  font-size: 4rem;
}

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

@media (min-width: 768px) {
  .horizontaal {
    display: none;
  }
  video {
    padding-top: 1em;
    padding-left: 2em;
    padding-right: 2em;
  }
}

@media (max-width: 768px) {
  .verticaal {
    display: none;
  }
}

video p {
  color: red;
  z-index: 999;
}

.video-blok article {
  width: 100%;
  font-size: 1.5rem;
  color: white;
  position: relative;
  left: 7%;
  bottom: 30rem;
}

.video-blok article p {
  position: absolute;
  bottom: -1em;
  font-size: 1.5rem;
  font-family: "Caveat", cursive;
  bottom: -2rem;
  font-weight: bold;
}

/* hier beginnen de buttons voor de homepage */

.buttons-homepage {
  width: 100%;
  bottom: -3rem;
  color: white;
  padding: 0 1.8rem;
  position: relative;
  display: flex;
  margin-top: -3rem;
  margin: 0 auto;
  max-width: 768px;
  z-index: 1;
}

@media (max-width: 768px) {
  .buttons-homepage {
    margin-top: -11.5rem;
    display: block;
  }
}

@media (min-width: 992px) {
  .buttons-homepage {
    max-width: 1200px;
  }
}

.buttons-homepage a {
  margin: 1rem 0;
  border: none;
  display: block;
  padding: 0.5rem 0 0.5rem 0.5rem;
  width: 100%;
  box-shadow: -4px 4px 0px 0 rgb(0 0 0 / 8%);
}

.buttons-homepage a:nth-of-type(1) {
  background-color: #f79533;
}

.buttons-homepage a:nth-of-type(2) {
  background-color: #8dc63f;
}

.buttons-homepage a:nth-of-type(3) {
  background-color: #74c0e9;
}

.buttons-homepage a:nth-of-type(1):hover {
  background-color: #d57a2a;
  transition: .3s ease;
}

.buttons-homepage a:nth-of-type(2):hover {
  background-color: #7aa82b;
  transition: .3s ease;
}

.buttons-homepage a:nth-of-type(3):hover {
  background-color: #63afd6;
  transition: .3s ease;
}

.buttons-homepage a:hover span {
  padding-left: .5rem;
  transition: .3s ease;
}


/* Hier begint het kerstvakantieblok */

.kerstvakantie-blok {
  background-color: #f9f3d9;
  padding-top: 9rem;
  margin-top: -5rem;
  position: relative;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}

.kerstvakantie-blok::before {
  content: "";
  transform: translateY(-50%) rotate(-3deg);
  position: absolute;
  left: -10rem;
  right: -10rem;
  top: 100%;
  background-color: #f9f3d9;
  height: 3rem;
}

.kerstvakantie-blok article {
  width: 50%;
  padding: 1.5rem;
}

.kerstvakantie-blok figure {
  width: 100%;
  padding: 1.5rem;
}

.kerstvakantie-blok img {
  position: relative;
  width: 90%;
  margin: 1.1rem;
  transform: rotate(3deg);
  box-shadow: -4px 4px 0px 0 rgb(0 0 0 / 8%);
  margin-bottom: -2.4rem;
}

.kerstvakantie-blok h2 {
  font-size: 2rem;
  color: #f79533;
  font-family: "Caveat", cursive;
  font-family: "PT Sans", sans-serif;
  padding-left: 0.8rem;
}

.kerstvakantie-blok p {
  padding-left: 0.8rem;
}

.kerstvakantie-blok a {
  background-color: #f79533;
  padding: 0.8em;
  color: white;
  box-shadow: -4px 4px 0px 0 rgb(0 0 0 / 8%);
  display: inline-block;
  margin-top: 2rem;
  font-family: "Caveat", cursive;
  font-weight: bold;
  left: 0.8rem;
  position: relative;
  text-decoration: none;
  width:7.5rem;
}

.kerstvakantie-blok a:hover {
  transition: .3s;
  background-color: #d57a2a;
}

.kerstvakantie-blok a:hover span {
  padding-left: 1rem;
  transition: .3s;
}

@media (max-width: 768px) {
  .kerstvakantie-blok article {
    width: 100%;
  }
}

.kerstvakantie-blok a span {
  font-family: Arial, Helvetica, sans-serif;
  padding-left: 0.5rem;
}



/* Hier begint de CSS voor de beleefblokken */

.beleef-blokken {
  padding: 5rem 1rem 1rem 1rem;
  display: flex;
  flex-wrap: wrap;
  color: #74c0e9;
  background-color: white;
}

.beleef-blokken h2 {
  color: #74c0e9;
  text-align: center;
  font-size: 2.25rem;
  padding-bottom: 1rem;
  display: block;
  width: 100%;
}

.beleef-blokken div {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0.5rem;
  padding: 0.5rem;
}

.beleef-blokken div:nth-of-type(2) {
  color: #f79533;
}

.beleef-blokken div:nth-of-type(3) {
  color: #8dc63f;
}

.beleef-blokken figure {
  width: 40%;
}

.beleef-blokken article {
  width: 60%;
  padding: 1rem;
}

.beleef-blokken h3 {
  padding-bottom: 0.5rem;
  font-size: 1.4rem;
}

.beleef-blokken img {
  object-fit: cover;
  height: 100%;
}

.beleef-blokken a {
  text-decoration: none;
  display: inline-block;
  padding-top: 1rem;
  color: currentColor;
  width: 200px;
}

.beleef-blokken h4 {
  font-size: 0.9rem;
  padding-bottom: 0.3rem;
  color: #bbb;
}

.beleef-blokken p {
  font-size: 0.9rem;
  color: black;
}

.beleef-blokken span {
  padding-left: .1rem;
}

.beleef-blokken div:nth-of-type(1) a:hover {
  color:#63afd6;
}

.beleef-blokken div:nth-of-type(2) a:hover {
  color:#d57a2a;
}

.beleef-blokken div:nth-of-type(3) a:hover {
  color:#7aa82b;
}

.beleef-blokken a:hover span {
  padding-left: .3rem;
  transition: .3s;
}
/* Hier begint de CSS voor de ontdekblokken */

.ontdek-blokken {
  background-color: #ebf3f8;
  display: flex;
  flex-wrap: wrap;
  color: #74c0e9;
}

.ontdek-blokken h2 {
  color: #74c0e9;
  font-size: 2rem;
  padding: 2rem 0 0 2rem;
}

.ontdek-blokken > p {
  color: black;
  padding-left: 2rem;
  padding-top: 0.5rem;
}

.ontdek-blokken article p {
  color: black;
}

.ontdek-blokken article {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background-color: white;
  height: 100%;
  margin: 1.4rem;
  box-shadow: -4px 4px 0px 0 rgb(0 0 0 / 8%);
}

.ontdek-blokken div {
  width: 70%;
  padding: 1rem;
}

.ontdek-blokken article a {
  color: currentColor;
  text-decoration: none;
  padding-top: 0.4rem;
  display: inline-block;
}

.ontdek-blokken article:nth-of-type(2) {
  color: #f79533;
}

.ontdek-blokken article:nth-of-type(3) {
  color: #8dc63f;
}

.ontdek-blokken article figure {
  width: 30%;
}

.ontdek-blokken article img {
  object-fit: cover;
  height: 100%;
}

.ontdek-blokken > figure {
  aspect-ratio: 2/1.7;
  overflow: hidden;
}

.ontdek-blokken > figure img {
  width: 110%;
  margin: -5%;
}

.ontdek-blokken figure a {
  position: relative;
  display: inline-block;
  top: -9rem;
  left: 2rem;
  background-color: #ef3636;
  font-family: "Caveat", cursive;
  color: white;
  text-decoration: none;
  padding: 0.5rem 1.9rem 0.5rem 1.9rem;
  font-size: 1.2rem;
  box-shadow: -4px 4px 0px 0 rgb(0 0 0 / 8%);
  width: 280px;
}

.ontdek-blokken article span {
  padding-left: .3rem;
}

.ontdek-blokken article a:hover span {
  padding-left: .6rem;
  transition: .3s;
}

.ontdek-blokken article:first-of-type a:hover {
  color: #63afd6;
  transition: .3s;
}

.ontdek-blokken article:nth-of-type(2) a:hover {
  color: #d57a2a;
  transition: .3s;
}

.ontdek-blokken article:nth-of-type(3) a:hover {
  color: #7aa82b;
  transition: .3s;
}

.ontdek-blokken figure a span {
  padding-left: .3rem;
}

.ontdek-blokken figure a:hover {
  background-color: #b32e3b;
  transition: .3s;
}

.ontdek-blokken figure a:hover span {
  padding-left: .6rem;
  transition: .3s;
}

/*  Footer */

footer {
  background-color: #f4f9ee;
  padding-top: 3rem;
}

footer div a {
  font-weight: bold;
  font-family: "Caveat", cursive;
  font-family: "PT Sans", sans-serif;
  font-size: 1rem;
  padding-left: 1.5rem;
  margin-top: 1.6rem;
  text-decoration: none;
  color: black;
  display: block;
}

footer div p {
  padding-left: 1.5rem;
  padding-top: 0.2rem;
}

footer > p {
  padding-left: 1.5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

footer figure {
  padding-bottom: 1rem;
  padding-left: 1rem;
}

footer img {
  width: 15%;
  height: 40px;
  position: relative;
  bottom: 2.5rem;
}

footer a {
  text-decoration: none;
}

footer div a span {
  padding-left: .3rem;
}

footer div a:hover span {
  padding-left: .6rem;
  transition: .3s;
}

/* In het dierenpark HTML pagina 2 */

.dierenpark-blokken {
  padding-top: 2rem;
  background-color: #f4f9ee;
  display: flex;
  flex-wrap: wrap;
}

.dierenpark-blokken > a {
  color: white;
  text-decoration: none;
  background-color: #8dc63f;
  padding: 0.7rem;
  margin-left: 1.4rem;
  box-shadow: -4px 4px 0px 0 rgb(0 0 0 / 8%);
  font-family: "Caveat", cursive;
  font-weight: bold;
}

.dierenpark-blokken > a:hover {
  background-color: #7aa82b;
  transition: .3s;
}

.dierenpark-blokken h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #8dc63f;
  margin-left: 1.4rem;
  font-size: 2.6rem;
}

.dierenpark-blokken div {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0.5rem;
  padding: 0.5rem;
}

.dierenpark-blokken figure {
  width: 40%;
}

.dierenpark-blokken article {
  width: 60%;
  padding: 1rem;
}

.dierenpark-blokken h3 {
  padding-bottom: 0.5rem;
  font-size: 1.4rem;
  color: #74c0e9;
}

.dierenpark-blokken img {
  object-fit: cover;
  height: 100%;
}

.dierenpark-blokken article a {
  text-decoration: none;
  display: inline-block;
  padding-top: 1rem;
  color: #74c0e9;
  font-family: "Caveat", cursive;
  font-size: 1.4rem;
}

.dierenpark-blokken article span {
  padding-left: .3rem;
}

.dierenpark-blokken article a:hover {
  color: #63afd6;
} 

.dierenpark-blokken article a:hover span {
  padding-left: .6rem;
  transition: .3s;
}

.dierenpark-blokken p {
  font-size: 0.9rem;
}

.site2 footer {
  background-color: white;
}

