@import url("https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  text-decoration: none;
  list-style: none;
}

html {
  width: 100%;
  font-size: 100%;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

a,
button {
  font-size: initial;
  text-decoration: none;
  border: none;
  outline: none;
  user-select: none;
  background: none;
  box-shadow: none;
  cursor: pointer;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

.burger {
  width: 1.8rem;
  height: 2rem;
  position: absolute;
  right: 0;
  cursor: pointer;
}
.burger:hover .burger-lines {
  background: rgb(170, 0, 0);
}
.burger-lines {
  position: absolute;
  width: 100%;
  height: 0.2rem;
  border-radius: 2px;
  background: rgb(0, 0, 0);
}
.burger-lines:nth-of-type(1) {
  top: 6px;
}
.burger-lines:nth-of-type(2) {
  top: 16px;
}
.burger-lines:nth-of-type(3) {
  bottom: 3px;
}
.burger.is-active .burger-lines {
  width: 2rem;
  background-color: rgb(170, 0, 0);
}
.burger.is-active .burger-lines:nth-of-type(1) {
  transform: translate(-3px, 10px) rotate(45deg);
}
.burger.is-active .burger-lines:nth-of-type(2) {
  width: 0;
}
.burger.is-active .burger-lines:nth-of-type(3) {
  transform: translate(-3px, -10px) rotate(-45deg);
}
@media only screen and (min-width: 668px) {
  .burger {
    display: none;
    visibility: hidden;
  }
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgb(229, 219, 195);
}
@media only screen and (min-width: 668px) {
  .header {
    position: relative;
  }
}

nav {
  display: flex;
  flex-flow: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  height: 7rem;
  background-image: url(../img/bg-huisjes.png);
  background-size: auto 1.5rem;
  background-repeat: repeat-x;
  background-position-y: bottom;
  background-color: rgb(229, 219, 195);
}
@media only screen and (min-width: 668px) {
  nav {
    height: 11rem;
    background-position-y: 8.9rem;
  }
}

.logo {
  display: flex;
  flex-flow: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 0 0 0;
}
@media only screen and (min-width: 668px) {
  .logo {
    display: flex;
    flex-flow: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
  }
}
.logo a {
  margin: auto;
}
.logo a img {
  width: 4rem;
}

.title {
  padding: 0.5rem 0;
}
.title h1 {
  font-size: clamp(1rem, 3vw, 1.65rem);
  text-align: center;
}
@media only screen and (min-width: 668px) {
  .title {
    padding: 1rem 0 0 0;
  }
}

.menu {
  position: absolute;
  top: 7rem;
  width: 17rem;
  height: 0;
  visibility: hidden;
  background-color: rgb(55, 12, 5);
  overflow: hidden;
}
.menu.is-active {
  height: 15rem;
  visibility: visible;
  border-radius: 0 0 3px 4px;
}
.menu-inner {
  display: flex;
  flex-flow: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  row-gap: 1.5rem;
  padding-top: 1rem;
}
@media only screen and (min-width: 668px) {
  .menu-inner {
    display: flex;
    flex-flow: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    column-gap: 2rem;
    padding: 0;
  }
}
.menu-item {
  width: 100%;
}
.menu-link {
  display: flex;
  flex-flow: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  column-gap: 1rem;
  font-family: "Merriweather", serif;
  font-size: 1rem;
  color: rgb(229, 219, 195);
  white-space: nowrap;
  text-decoration: none;
  user-select: none;
  padding-left: 2rem;
}
.menu-link:hover .menu-naam {
  visibility: visible;
}
.menu-link img {
  width: 5rem;
  border-radius: 100%;
  border: 2px solid rgb(229, 219, 195);
}
@media only screen and (min-width: 668px) {
  .menu-link {
    display: flex;
    flex-flow: column-reverse;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .menu-link img {
    order: 2;
  }
  .menu-link:hover img {
    transform: rotateY(180deg);
  }
}
@media only screen and (min-width: 668px) {
  .menu {
    width: initial;
    height: auto;
    top: 6rem;
    visibility: visible;
    overflow: visible;
    background: transparent;
  }
  .menu.is-active {
    width: initial;
    height: initial;
    position: initial;
  }
  .menu-naam {
    font-size: 0.8rem;
    visibility: hidden;
    padding-bottom: 0;
  }
  .menu-naam.current {
    visibility: visible;
    color: rgb(170, 0, 0);
  }
}

* {
  transition: all 400ms ease-in-out;
}

body {
  display: flex;
  flex-flow: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  position: relative;
  font-family: "Merriweather Sans", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgb(63, 63, 63);
  background-color: rgb(229, 219, 195);
}

main {
  flex-grow: 1;
  padding-top: 3rem;
}

footer {
  flex-shrink: 0;
}

main, nav, footer {
  width: min(87%, 50em);
  margin: 0 auto;
}

a {
  color: rgb(55, 12, 5);
  color: rgb(10, 129, 120);
  text-decoration: underline;
  user-select: auto;
}
a:hover {
  color: rgb(170, 0, 0);
}

p:not(:last-child) {
  padding: 0 0 1rem 0;
}
p.rood {
  color: rgb(170, 0, 0);
}

p.nopadding {
  padding: 0;
}

h1 {
  font-size: clamp(1.2rem, 4vw, 1.462rem);
  font-family: "Merriweather", serif;
  font-weight: 300;
  line-height: 1.1;
  color: rgb(0, 0, 0);
  padding: 0 0 0.3rem 0;
}
h1 > span {
  color: rgb(170, 0, 0);
}

h2 {
  font-weight: 300;
  font-size: clamp(1.2rem, 3vw, 1.3rem);
}

small {
  font-size: 0.8rem;
  letter-spacing: 0.02rem;
}

.bold {
  font-weight: 400;
}

.flag {
  text-transform: uppercase;
}

.cursief {
  font-style: italic;
}

.extra, .extra + p {
  margin: 0.5rem 0 0 0;
}

.txt-link {
  font-size: inherit;
}

#totop {
  display: flex;
  flex-flow: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0;
  border-color: rgb(63, 63, 63);
  border-radius: 50%;
  position: fixed;
  bottom: 2rem;
  right: 0.5rem;
  opacity: 0;
  visibility: hidden;
  background-color: rgb(55, 12, 5);
  z-index: 1000;
  transition: all 400ms ease-in-out;
  transform: rotate(180deg);
  cursor: pointer;
}
#totop.show {
  width: 3rem;
  height: 3rem;
  background-size: 2.2rem;
  bottom: 3rem;
  opacity: 1;
  visibility: visible;
}

figure {
  display: flex;
  flex-flow: row wrap;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  gap: 2rem;
}
figure:nth-of-type(1) {
  gap: 1rem;
}
figure img {
  border-style: none;
  border-width: 0;
  border-color: rgb(63, 63, 63);
  border-radius: 0.5rem;
  width: 5rem;
}
@media only screen and (min-width: 668px) {
  figure img {
    width: 7rem;
  }
}
figure figcaption {
  flex-grow: 1;
  width: clamp(15rem, 2vw, 19rem);
}
figure figcaption h2 {
  font-size: 1rem;
  font-style: italic;
  line-height: inherit;
  color: rgb(63, 63, 63);
  padding: 0 0 0.6rem 0;
}
@media only screen and (min-width: 668px) {
  figure figcaption {
    flex-grow: unset;
    width: 70%;
  }
  figure figcaption.donk {
    width: 56%;
  }
}
@media only screen and (min-width: 668px) {
  figure {
    display: flex;
    flex-flow: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

.anker {
  font-size: inherit;
}
.anker-active {
  color: rgb(170, 0, 0);
  text-decoration: none;
}
.anker-link {
  color: rgb(0, 0, 0);
  text-decoration: none;
}
.anker-link:hover {
  text-decoration: underline;
  color: rgb(10, 129, 120);
}
.anker-contact {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.02rem;
  font-weight: 400;
}

.content {
  display: flex;
  flex-flow: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}
.content > div:first-of-type {
  padding-top: 2rem;
}
.content h2 {
  color: rgb(170, 0, 0);
}
.content#eng h2 {
  color: rgb(0, 0, 0);
}
.content#eng > div:first-of-type {
  padding-top: 0;
}
.content .links li:nth-child(4) {
  padding-bottom: 0.5rem;
}
.content .links a {
  font-size: inherit;
}
.content address {
  font-style: normal;
}
.content address a {
  text-decoration: none;
}
.content address p {
  padding-top: 1rem;
}

.img-homeani {
  width: 5rem;
}
.img-sml {
  width: 8rem;
}
.img-sml:hover {
  transform: scale(1.1);
}

.bullets li {
  list-style: disc;
  margin-left: 1.1rem;
}

.contact {
  width: 100%;
}
.contact .gegevens {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  row-gap: 1rem;
}
.contact .gegevens address {
  max-width: 19rem;
}
@media only screen and (min-width: 668px) {
  .contact .gegevens address {
    max-width: 25rem;
  }
}
@media only screen and (min-width: 668px) {
  .contact .gegevens {
    justify-content: flex-start;
    gap: 1rem;
  }
}

footer {
  display: flex;
  flex-flow: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 3rem;
  padding: 3rem 0 1rem 0;
}
footer a {
  display: inline-block;
}
footer img {
  width: 5rem;
  padding-bottom: 0.2rem;
}
footer img.sanna {
  width: 2rem;
  padding: 0 0.5rem;
  opacity: 0.2;
}
@media only screen and (min-width: 668px) {
  footer img {
    width: 6rem;
  }
}
footer .copy {
  font-size: 0.8rem;
  align-self: flex-end;
  text-align: right;
  color: rgb(63, 63, 63);
}

@media only screen and (min-width: 280px) and (max-width: 450px) {
  p, figure figcaption h2, ul li, a, .anker {
    font-size: 0.9rem;
  }
}/*# sourceMappingURL=main.css.map */