/*
CSS is mobile-first geschreven.
Media queries zijn voor computer schermen (breakpoint $bp in 'var.scss')
*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 12vw;
}

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

body {
  background-color: #f9f9f9;
  color: #505050;
}

.over-ons,
.events,
.gallerij,
.sponsors {
  display: flex;
  justify-content: center;
}
.over-ons .container:first-of-type,
.events .container:first-of-type,
.gallerij .container:first-of-type,
.sponsors .container:first-of-type {
  width: calc(100% - 10vw);
}
@media (min-width: 960px) {
  .over-ons .container:first-of-type,
  .events .container:first-of-type,
  .gallerij .container:first-of-type,
  .sponsors .container:first-of-type {
    width: 100%;
    margin: 0 11.3vw 0 12.4vw;
    max-width: 2000px;
  }
}

/*
variabelen font-families en font-weights in 'var'
*/
body {
  font-size: clamp(0.9rem, 0.7rem + 0.4vw, 1.33rem);
  font-family: "Libre Baskerville", "Lucida Bright", "Georgia", serif;
}
body .chinees {
  font-family: "Noto Serif SC", "Simsun", serif;
  font-size: clamp(1rem, 0.8rem + 0.4vw, 1.4rem);
}

p {
  line-height: 1.7em;
  letter-spacing: 0.05em;
  margin-bottom: 1.5em;
}
p a {
  color: #931717;
  transition: 0.2s ease-in-out;
}
p a:hover {
  color: #f7adad;
}

footer {
  font-family: "Raleway", "Segoe UI", Verdana, sans-serif;
  font-size: clamp(0.7rem, 0.5rem + 0.4vw, 1rem);
}

h1 {
  font-family: "Eczar", "Libre Baskerville", "Lucida Bright", "Georgia", serif;
  letter-spacing: 0.15em;
  font-size: min(5vw, 3vh);
  line-height: 1em;
  color: #e6e5c1;
}
@media (min-width: 960px) {
  h1 {
    font-size: clamp(0.9rem, 0.9rem + 0.6vw, 1.5rem);
  }
}
h1.chinees {
  font-size: min(5vw, 3vh);
  font-family: "Noto Serif SC", "Simsun", serif;
  font-weight: 700;
  letter-spacing: 0.5em;
  direction: rtl;
  text-indent: -0.5em;
}
@media (min-width: 960px) {
  h1.chinees {
    font-size: clamp(1rem, 1rem + 0.6vw, 1.6rem);
    letter-spacing: 1.5em;
  }
}

h2,
h3,
h4 {
  font-family: "Raleway", "Segoe UI", Verdana, sans-serif;
  font-weight: 700;
  line-height: 1.2em;
  letter-spacing: 0.05em;
  margin: 3em 0 1.5em 0;
  padding: 0.7em 0;
}

h2 {
  font-size: clamp(1.5rem, 1.2rem + 0.8vw, 2rem);
  margin: 1.2em 0;
}
h2.chinees {
  font-size: clamp(1.6rem, 1.3rem + 0.8vw, 2.1rem);
}

h3 {
  font-size: clamp(1.1rem, 0.8rem + 0.6vw, 1.4rem);
}
h3.chinees {
  font-size: clamp(1.2rem, 0.9rem + 0.6vw, 1.5rem);
}

nav {
  font-family: "Raleway", "Segoe UI", Verdana, sans-serif;
  font-weight: 400;
  font-size: min(5vw, 3vh);
  letter-spacing: 0.2em;
}
nav .menu-items a.chinees {
  font-weight: 200;
  font-size: min(5.5vw, 3.5vh);
}
@media (min-width: 960px) {
  nav {
    font-size: min(1.2rem, 1.1vw);
  }
  nav .menu-items a.chinees {
    font-size: min(1.5rem, 1.5vw);
  }
}
nav a {
  color: #505050;
}
@media (min-width: 960px) {
  nav a {
    color: #e6e5c1;
  }
}
nav .taal {
  font-size: min(4vw, 2.5vh);
}
nav .taal .hier a,
nav .taal a:hover {
  color: #f9f9f9;
}
nav .taal :not(.hier) {
  color: #931717;
}
@media (min-width: 960px) {
  nav .taal {
    font-size: min(1rem, 1vw);
  }
  nav .taal .chinees {
    font-size: min(1rem, 1vw);
  }
  nav .taal .hier a,
  nav .taal a:hover {
    color: #e6e5c1;
    font-weight: 700;
  }
  nav .taal :not(.hier) {
    color: #e6e5c1;
  }
}
nav a:hover {
  color: #f7adad;
  font-weight: 700;
}
@media (min-width: 960px) {
  nav a:hover {
    color: #e6e5c1;
    font-weight: 400;
  }
}
nav .menu-items .hier > a {
  color: #b52121;
  font-weight: 700;
}
@media (min-width: 960px) {
  nav .menu-items .hier > a {
    color: #e6e5c1;
    font-weight: 400;
  }
  nav .menu-items .hier > a.chinees {
    font-weight: 200;
  }
}

ul {
  font-family: "Raleway", "Segoe UI", Verdana, sans-serif;
  letter-spacing: 0.05em;
}

figcaption {
  font-family: "Raleway", "Segoe UI", Verdana, sans-serif;
  font-weight: 400;
  font-size: clamp(0.8rem, 0.6rem + 0.4vw, 1.2rem);
  line-height: 1em;
  margin: 1em 0;
}
figcaption.chinees {
  font-size: clamp(0.9rem, 0.7rem + 0.4vw, 1.3rem);
}
figcaption p.hero-figcaption {
  font-size: clamp(0.7rem, 0.6rem + 0.3vw, 1.1rem);
}
figcaption p.hero-figcaption.chinees {
  font-size: clamp(0.9rem, 0.7rem + 0.4vw, 1.3rem);
}

.datum {
  font-family: "Raleway", "Segoe UI", Verdana, sans-serif;
  font-size: clamp(0.8rem, 0.6rem + 0.4vw, 1.2rem);
  letter-spacing: 0.05em;
}
.datum .chinees {
  font-size: clamp(0.9rem, 0.7rem + 0.4vw, 1.3rem);
}

.events h3 {
  font-size: clamp(1rem, 0.7rem + 0.6vw, 1.3rem);
}
.events h3.chinees {
  font-size: clamp(1.1rem, 0.8rem + 0.6vw, 1.4rem);
}
.events p {
  font-size: clamp(0.8rem, 0.6rem + 0.4vw, 1.2rem);
  line-height: 1.5em;
}
.events p.chinees {
  font-size: clamp(0.9rem, 0.7rem + 0.4vw, 1.3rem);
}
.events article a {
  font-family: "Raleway", "Segoe UI", Verdana, sans-serif;
  font-size: clamp(0.8rem, 0.6rem + 0.4vw, 1.2rem);
  color: #f9f9f9;
  letter-spacing: 0.05em;
}

.home h2 {
  font-size: clamp(1.7rem, 1.3rem + 0.9vw, 2.2rem);
  margin: 1.2em 0;
}
.home h2.chinees {
  font-size: clamp(1.8rem, 1.4rem + 0.9vw, 2.3rem);
}
.home h3 {
  font-size: clamp(1.2rem, 0.2rem + 4vw, 1.8rem);
}
.home h3.chinees {
  font-size: clamp(1.3rem, 0.3rem + 4.1vw, 1.9rem);
}
@media (min-width: 960px) {
  .home h3 {
    font-size: clamp(1rem, 0.2rem + 1.5vw, 1.6rem);
  }
  .home h3.chinees {
    font-size: clamp(1.1rem, 0.2rem + 1.6vw, 1.7rem);
  }
}

.contact .contact-formulier {
  font-family: "Libre Baskerville", "Lucida Bright", "Georgia", serif;
  font-weight: 400;
  color: #621d1d;
}
.contact input,
.contact select,
.contact textarea {
  color: #505050;
  font-family: "Raleway", "Segoe UI", Verdana, sans-serif;
  font-size: 1rem;
}

.gallerij a {
  font-family: "Raleway", "Segoe UI", Verdana, sans-serif;
  letter-spacing: 0.05em;
  font-size: clamp(0.9rem, 0.7rem + 0.4vw, 1.33rem);
  font-style: italic;
  font-weight: 400;
}

header {
  background-color: #b52121;
  padding: min(4vw, 2.5vh) 5vw min(4vw, 2.5vh) min(5vw, 5vh);
  z-index: 99;
}
@media (min-width: 960px) {
  header {
    padding: 1vw 2vw 0 2vw;
    position: sticky;
    position: -webkit-sticky;
    width: 100%;
    top: 0;
  }
}
header a {
  text-decoration: none;
}
header ul {
  list-style-type: none;
}
header .container {
  display: flex;
  justify-content: space-between;
  max-width: 2000px;
}
@media (min-width: 960px) {
  header .container {
    margin: 0 auto;
    display: grid;
    grid-template-areas: ". . titel taal ." ". nav  nav  nav  .";
    grid-template-columns: 5vw 1fr 4fr 1fr 5vw;
  }
}

#top-banner {
  display: flex;
}
@media (min-width: 960px) {
  #top-banner {
    grid-area: titel;
    justify-content: center;
    align-items: center;
  }
}
#top-banner__logo {
  order: 1;
  flex-basis: 35%;
  max-width: 11vh;
  display: flex;
  align-items: center;
}
@media (min-width: 960px) {
  #top-banner__logo {
    order: 0;
    justify-content: flex-end;
    flex-basis: 5vw;
    max-width: none;
    padding-right: 0.6em;
  }
}
#top-banner__logo img {
  max-width: 100%;
}
#top-banner__titel {
  text-align: right;
  margin: auto 2.5vw auto calc(1em + 2.5vw);
}
@media (min-width: 960px) {
  #top-banner__titel {
    text-align: left;
    margin: 0;
    padding-left: 0.6em;
  }
}
#top-banner__titel h1 + h1 {
  margin-top: 0.4em;
}

/* 
Inspiratie hamburger-menu (zonder Javascript):
https://alvarotrigo.com/blog/hamburger-menu-css/
https://codepen.io/erikterwan/pen/EVzeRP
*/
nav {
  order: -1;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}
@media (min-width: 960px) {
  nav {
    order: 0;
    display: contents;
  }
}
nav input[type=checkbox],
nav .hamburger-lijnen {
  display: block;
  width: min(8vw, 5vh);
  height: min(6vw, 3.9vh);
}
@media (min-width: 960px) {
  nav input[type=checkbox],
  nav .hamburger-lijnen {
    display: none;
  }
}
nav input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  opacity: 0;
  z-index: 101;
  -webkit-touch-callout: none;
}
nav input[type=checkbox]:checked {
  position: fixed;
}
nav input[type=checkbox]:checked ~ .hamburger-lijnen {
  position: fixed;
}
nav input[type=checkbox]:checked ~ .hamburger-lijnen .lijn {
  background-color: #505050;
}
nav input[type=checkbox]:checked ~ .hamburger-lijnen .lijn__boven {
  transform: rotate(45deg);
}
nav input[type=checkbox]:checked ~ .hamburger-lijnen .lijn__midden1 {
  transform: translateX(-200%);
  opacity: 0;
}
nav input[type=checkbox]:checked ~ .hamburger-lijnen .lijn__midden2 {
  transform: translateX(200%);
  opacity: 0;
}
nav input[type=checkbox]:checked ~ .hamburger-lijnen .lijn__onder {
  transform: rotate(-45deg);
}
nav input[type=checkbox]:checked ~ .hamburger-lijnen ~ .menu-wrapper {
  transform: translateX(70vw);
}
nav input[type=checkbox]:checked ~ .hamburger-lijnen ~ .menu-wrapper .taal {
  opacity: 1;
}
nav input[type=checkbox]:checked ~ .hamburger-substitute {
  /*
  deze div voorkomt dat #top-banner groter wordt 
  omdat de hamburger-menu 'position: fixed wordt' bij input:checked en dus geen flex-item meer is.
  (hamburger-menu en checkbox worden 'position: fixed' als menu open is omdat ze anders verdwijnen bij scrollen)
  */
  width: min(8vw, 5vh);
}
nav .hamburger-lijnen {
  position: relative;
  z-index: 100;
}
nav .hamburger-lijnen .lijn {
  position: absolute;
  width: 100%;
  height: 12%;
  border-radius: 5px;
  background-color: #e6e5c1;
  transition: 0.3s ease-in-out;
}
nav .hamburger-lijnen .lijn__boven {
  top: 0;
  transform-origin: 0% 0%;
}
nav .hamburger-lijnen .lijn__midden1, nav .hamburger-lijnen .lijn__midden2 {
  top: 42.5%;
}
nav .hamburger-lijnen .lijn__onder {
  bottom: 0;
  transform-origin: 0% 100%;
}
nav .menu-wrapper {
  position: fixed;
  background-color: #f9f9f9;
  top: 0;
  left: -70vw;
  height: 100vh;
  width: min(67vw, 60vh);
  padding: 0 min(5vw, 5vh);
  box-shadow: 0 5px 10px 0 #505050;
  z-index: 99;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  transform: none;
  transition: transform 0.3s ease-in-out;
}
@media (min-width: 960px) {
  nav .menu-wrapper {
    position: static;
    background-color: transparent;
    box-shadow: none;
    flex-direction: row;
    height: auto;
    display: contents;
  }
}
nav .menu-wrapper .taal {
  margin-top: min(4vw, 2.5vh);
  height: min(6vw, 4vh);
  margin-left: min(8vw, 5vh);
  opacity: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: opacity 0.7s ease-in-out;
}
@media (min-width: 960px) {
  nav .menu-wrapper .taal {
    opacity: 1;
    margin: 0;
    justify-content: center;
    align-items: flex-start;
    grid-area: taal;
    height: auto;
  }
}
nav .menu-wrapper .taal ul {
  display: flex;
  gap: 1em;
}
@media (min-width: 960px) {
  nav .menu-wrapper .taal ul {
    padding-right: 1.8em;
  }
}
nav .menu-wrapper .taal li {
  border-radius: 2em;
  border: 1px solid #b52121;
  transition: 0.2s ease-in-out;
  width: 3.5em;
  height: 2.25em;
}
@media (min-width: 960px) {
  nav .menu-wrapper .taal li {
    border: 1px solid #931717;
  }
}
nav .menu-wrapper .taal li.hier {
  background-color: #b52121;
}
@media (min-width: 960px) {
  nav .menu-wrapper .taal li.hier {
    background-color: #931717;
  }
}
nav .menu-wrapper .taal li:hover {
  border: 1px solid #f7adad;
  background-color: #f7adad;
}
@media (min-width: 960px) {
  nav .menu-wrapper .taal li:hover {
    border: 1px solid #e06538;
    background-color: #e06538;
  }
}
nav .menu-wrapper .taal a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 0.5em 0;
}
nav .menu-wrapper .taal a.chinees {
  padding: 0.3em 0;
}
nav .menu-wrapper .menu-items {
  height: 60vh;
  margin-top: min(10vw, 6vh);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
}
@media (min-width: 960px) {
  nav .menu-wrapper .menu-items {
    height: auto;
    margin-top: 0.4vw;
    flex-direction: row;
    grid-area: nav;
    align-self: end;
  }
  nav .menu-wrapper .menu-items li {
    flex-basis: 100%;
    text-align: center;
  }
  nav .menu-wrapper .menu-items li.hier {
    background-color: #931717;
  }
}
nav .menu-wrapper .menu-items a {
  display: block;
  transition: color 0.2s ease-in-out;
}
@media (min-width: 960px) {
  nav .menu-wrapper .menu-items a {
    padding: 0.6vw 0;
    position: relative;
    z-index: 0;
    /*
    Hover-effect inspiratie: https://css-tricks.com/adam-argyles-sick-mouse-out-css-hover-effect/
    */
    /*
    Hover-effect inspiratie: https://css-tricks.com/adam-argyles-sick-mouse-out-css-hover-effect/
    */
  }
  nav .menu-wrapper .menu-items a::before {
    content: "";
    background-color: #e06538;
    inset: 0;
    position: absolute;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.15, 0.73, 0.28, 0.95);
  }
  nav .menu-wrapper .menu-items a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
}

footer {
  background-color: #f7adad;
  color: #621d1d;
  margin-top: 10vw;
}
@media (min-width: 960px) {
  footer {
    margin-top: 5vw;
    padding: 0.5em 0;
  }
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (min-width: 960px) {
  footer .container {
    max-width: 2000px;
    padding-left: 7vw;
    padding-right: 7vw;
    margin: 0 auto;
  }
}
footer .contact-gegevens {
  display: grid;
  grid-template-columns: 2em auto;
  grid-auto-rows: 1fr;
  grid-auto-flow: row;
  gap: 0.4em 0;
  align-items: end;
  padding: 1em 0;
  margin-left: 5vw;
}
@media (min-width: 960px) {
  footer .contact-gegevens {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    margin-left: 0;
  }
}
footer .contact-gegevens dt {
  justify-self: left;
  margin-right: 0;
  display: flex;
  align-items: flex-end;
}
footer .contact-gegevens dt:first-of-type {
  align-self: center;
}
footer .contact-gegevens dd {
  justify-self: left;
  margin: 0 0.5em;
  max-width: 20ch;
}
footer .contact-gegevens dd a {
  text-decoration: none;
  color: #621d1d;
}
footer .contact-gegevens dd a:hover {
  text-decoration: underline;
}
@media (min-width: 960px) {
  footer .contact-gegevens dd {
    margin: 0 2em 0 0.5em;
    max-width: none;
  }
}
footer svg {
  width: 1.3em;
  height: 1.3em;
}
footer p {
  margin: 0;
  margin-right: 5vw;
  padding-bottom: 0.7em;
}
@media (min-width: 960px) {
  footer p {
    align-self: center;
    padding-bottom: 0;
    margin-right: 0;
  }
}

.home ::-webkit-scrollbar {
  height: 0;
}
.home h2 {
  color: #931717;
  text-transform: uppercase;
  padding: 1.9em 0;
  margin: 0;
}
@media (min-width: 960px) {
  .home h2 {
    padding: 1.9em 0 1.2em 0;
    text-align: center;
  }
}
.home .hero-events {
  background-color: rgba(10, 10, 10, 0.9019607843);
  width: 100%;
  padding: 0.5em 0 0;
  position: relative;
  max-width: 2000px;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .home .hero-events {
    padding: 1em 0;
  }
}
@media (min-width: 960px) {
  .home .hero-events .scroll-container {
    overflow: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
  }
}
.home .hero-events .scroll-container > a {
  display: none;
  position: absolute;
  width: 5vw;
  top: 0;
  bottom: 0;
  z-index: 98;
  align-items: center;
  background-color: rgba(10, 10, 10, 0);
  transition: background-color 0.3s ease-in-out;
}
@media (min-width: 960px) {
  .home .hero-events .scroll-container > a {
    display: flex;
  }
}
.home .hero-events .scroll-container > a.links {
  background-image: linear-gradient(90deg, rgba(10, 10, 10, 0.8509803922) 20%, transparent);
}
.home .hero-events .scroll-container > a.rechts {
  background-image: linear-gradient(90deg, transparent, rgba(10, 10, 10, 0.8509803922) 80%);
  left: calc(100% - 5vw);
}
.home .hero-events .scroll-container > a:hover, .home .hero-events .scroll-container > a:focus {
  background-color: rgba(10, 10, 10, 0.8509803922);
}
.home .hero-events .scroll-container > a:hover img, .home .hero-events .scroll-container > a:focus img {
  transform: scaleX(1);
}
.home .hero-events .scroll-container > a img {
  display: none;
}
@media (min-width: 960px) {
  .home .hero-events .scroll-container > a img {
    display: block;
    width: 3vw;
    transform: scale(0.9);
    transition: 0.3s ease-in-out;
  }
  .home .hero-events .scroll-container > a img.links {
    margin-left: 1vw;
  }
  .home .hero-events .scroll-container > a img.rechts {
    margin-left: auto;
    margin-right: 1vw;
  }
}
.home .hero-events .scroll-items {
  display: flex;
  flex-direction: column;
  gap: 2.5vw;
}
@media (min-width: 960px) {
  .home .hero-events .scroll-items {
    flex-direction: row;
    gap: 1em;
  }
}
.home .hero-events figure {
  height: 25vw;
  margin: 0 5vw;
  position: relative;
  background-color: #000;
  overflow: hidden;
  /*
  Inspiratie Hover-effect: https://tympanus.net/Development/HoverEffectIdeas/
  */
}
@media (min-width: 960px) {
  .home .hero-events figure {
    flex-basis: 30%;
    max-height: max(25vh, 16vw);
    margin: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }
}
.home .hero-events figure:nth-of-type(3), .home .hero-events figure:nth-of-type(5) {
  display: none;
}
@media (min-width: 960px) {
  .home .hero-events figure:nth-of-type(3), .home .hero-events figure:nth-of-type(5) {
    display: flex;
  }
}
.home .hero-events figure:last-of-type {
  background-color: transparent;
  height: 8vw;
}
@media (min-width: 960px) {
  .home .hero-events figure:last-of-type {
    border: 3px solid #505050;
    height: 25vw;
  }
}
.home .hero-events figure:last-of-type figcaption {
  height: 100%;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
@media (min-width: 960px) {
  .home .hero-events figure:last-of-type figcaption {
    flex-direction: column-reverse;
  }
}
.home .hero-events figure:last-of-type h3 {
  color: #cccccc;
  position: static;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
  font-size: clamp(0.9rem, 0.2rem + 2.8vw, 1.5rem);
}
@media (min-width: 960px) {
  .home .hero-events figure:last-of-type h3 {
    font-size: clamp(1rem, 0.2rem + 1.5vw, 1.6rem);
  }
}
.home .hero-events figure:last-of-type svg {
  width: 2.5em;
  height: auto;
  transition: 0.3s ease-in-out;
}
@media (min-width: 960px) {
  .home .hero-events figure:last-of-type svg {
    width: min(15vw, 6em);
    transform: translateY(0.75rem);
  }
}
.home .hero-events figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 40%;
}
@media (min-width: 960px) {
  .home .hero-events figure img {
    opacity: 70%;
    transition: 0.3s ease-in-out;
  }
}
.home .hero-events figure img[src*=nationale-feestdag] {
  -o-object-position: top;
     object-position: top;
}
.home .hero-events figure img[src*=Midherfstfestival-2021] {
  -o-object-position: bottom;
     object-position: bottom;
}
.home .hero-events figure figcaption {
  text-align: center;
  margin: 0 auto;
}
.home .hero-events figure figcaption h3,
.home .hero-events figure figcaption p {
  color: #f9f9f9;
  position: absolute;
  right: 8%;
  left: 16%;
  padding: 1em 0;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.8);
}
@media (min-width: 960px) {
  .home .hero-events figure figcaption h3,
  .home .hero-events figure figcaption p {
    text-align: right;
  }
}
.home .hero-events figure figcaption p {
  margin: 0;
  display: none;
  bottom: 0;
}
@media (min-width: 960px) {
  .home .hero-events figure figcaption p {
    display: block;
    opacity: 0;
    transform: translateY(1.5rem);
    transition: 0.3s ease-in-out;
  }
}
.home .hero-events figure figcaption h3 {
  margin: 0;
  padding: 0;
  bottom: 6vw;
}
@media (min-width: 960px) {
  .home .hero-events figure figcaption h3 {
    top: 1em;
    transform: translateY(0.75rem);
    transition: 0.3s ease-in-out;
  }
  .home .hero-events figure figcaption h3:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #f9f9f9;
    top: 2.8em;
    left: 0;
    opacity: 0;
    transform: translateY(1.5rem);
    transition: 0.3s ease-in-out;
  }
  .home .hero-events figure figcaption h3.chinees:after {
    transform: translateY(-1.2rem);
  }
  .home .hero-events figure figcaption h3.bekijk-alle:after {
    opacity: 0;
  }
}
.home .hero-events figure figcaption a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 97;
}
.home .hero-events figure:hover h3,
.home .hero-events figure:hover svg {
  transform: translateY(0);
}
.home .hero-events figure:hover h3.bekijk-alle,
.home .hero-events figure:hover svg {
  opacity: 0.5;
  text-shadow: none;
}
.home .hero-events figure:hover p,
.home .hero-events figure:hover h3:after {
  opacity: 1;
  transform: translateY(0);
}
.home .hero-events figure:hover img {
  opacity: 25%;
}
.home section:last-of-type {
  display: flex;
  justify-content: center;
}
.home .container {
  max-width: calc(100% - 10vw);
  margin: 0 auto;
}
@media (min-width: 960px) {
  .home .container {
    max-width: 100%;
    margin: 0 11.3vw 0 12.4vw;
    max-width: 2000px;
  }
}
.home .container h2 {
  padding-top: 1.2em;
}
.home .container a[href^=http]::after {
  content: "";
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  background-image: url(../icons/externe-link.png);
  background-size: 0.9em 0.9em;
  margin-left: 0.2em;
  transform: translateY(0.1em);
  transition: 0.2s ease-in-out;
}
.home .container a[href^=http]:hover::after {
  filter: invert(110%) sepia(23%) saturate(80%) hue-rotate(190deg) brightness(100%) contrast(94%);
}
.home .container ul {
  list-style-type: none;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  -moz-column-gap: 1.5em;
       column-gap: 1.5em;
}
@media (min-width: 960px) {
  .home .container ul {
    justify-content: center;
    -moz-column-gap: 4em;
         column-gap: 4em;
  }
}
.home .container ul a {
  text-decoration: none;
  color: #f9f9f9;
  background-color: #931717;
  display: inline-block;
  width: 12ch;
  padding: 1em 0;
  margin-top: 1.5em;
  border-radius: 2em;
  text-align: center;
  transition: 0.3s ease-in-out;
}
.home .container ul a:hover {
  background-color: #b52121;
  transform: scale(0.95);
}

@media (min-width: 960px) {
  .over-ons section {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0 3em;
  }
  .over-ons section h3 {
    grid-column: 1/6;
    grid-row-start: 1;
  }
  .over-ons section.ontstaan h3 {
    margin-top: 0;
  }
  .over-ons section.ontstaan p {
    grid-column: 1/4;
  }
  .over-ons section.ontstaan p + p {
    grid-column: 1/6;
  }
  .over-ons section.ontstaan figure {
    grid-column: 4/6;
    grid-row-start: 2;
  }
  .over-ons section.visie p {
    grid-column: 3/6;
  }
  .over-ons section.visie figure {
    grid-column: 1/3;
    grid-row-start: 2;
  }
  .over-ons section.chinese-school p {
    grid-column: 1/4;
  }
  .over-ons section.chinese-school figure {
    grid-column: 4/6;
  }
}
.over-ons h3 {
  color: #931717;
  text-align: center;
  border-top: 2px solid;
  border-bottom: 2px solid;
  border-image-source: linear-gradient(90deg, transparent, #b52121, transparent);
  border-image-slice: 1;
}
.over-ons figure {
  width: 100%;
}
.over-ons figure figcaption {
  width: 85%;
  margin: 0.5em auto 3em auto;
  text-align: center;
  line-height: 1.2em;
}
.over-ons figure img {
  max-width: 100%;
  box-shadow: 2px 2px 6px 0 #cccccc;
}
.over-ons a[href^=http]::after {
  content: "";
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  background-image: url(../icons/externe-link.png);
  background-size: 0.9em 0.9em;
  margin-left: 0.2em;
  transform: translateY(0.1em);
  transition: 0.2s ease-in-out;
}
.over-ons a[href^=http]:hover::after {
  filter: invert(110%) sepia(23%) saturate(80%) hue-rotate(190deg) brightness(100%) contrast(94%);
}

.events {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.events article {
  width: 100%;
  background-color: #ffeed8;
  border-radius: 1.5em;
  overflow: hidden;
  margin-bottom: 2em;
}
@media (min-width: 960px) {
  .events article {
    display: grid;
    grid-template-areas: "img . titel titel ." "img . tekst tekst ." "img . datum knoppen .";
    grid-template-columns: 2.3fr 2em 1fr 3fr 2em;
  }
}
.events article section {
  margin: 0 2em;
}
@media (min-width: 960px) {
  .events article section {
    display: contents;
  }
}
.events article h3 {
  margin: 0;
  color: #621d1d;
}
@media (min-width: 960px) {
  .events article h3 {
    grid-area: titel;
    margin-top: 0.5em;
  }
}
@media (min-width: 960px) {
  .events article p {
    grid-area: tekst;
    margin-bottom: 0;
  }
}
.events article .datum {
  margin-top: 0.5em;
}
@media (min-width: 960px) {
  .events article .datum {
    grid-area: datum;
    margin: 0;
    display: flex;
    align-items: center;
  }
}
.events article img {
  width: 100%;
  height: calc(14vh + 18vw);
  border-radius: 1.5em;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 0;
     object-position: 50% 0;
}
@media (min-width: 960px) {
  .events article img {
    grid-area: img;
    height: auto;
    -o-object-fit: fill;
       object-fit: fill;
  }
}
.events article .knoppen {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 960px) {
  .events article .knoppen {
    grid-area: knoppen;
    justify-content: flex-end;
    gap: 2em;
    margin: 1em 0;
  }
}
.events article .knoppen a {
  text-decoration: none;
  width: 45%;
  padding: 1em 0;
  margin-bottom: 1.5em;
  background-color: #7a4627;
  border-radius: 2em;
  text-align: center;
  transition: 0.3s ease-in-out;
}
.events article .knoppen a[href^=http]::after {
  content: "";
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  background-image: url(../icons/externe-link.png);
  background-size: 0.9em 0.9em;
  margin-left: 0.2em;
  transform: translateY(0.1em);
  filter: invert(96%) sepia(74%) saturate(0%) hue-rotate(7deg) brightness(104%) contrast(95%);
}
.events article .knoppen a:hover {
  background-color: rgba(114, 55, 21, 0.7490196078);
  transform: scale(0.95);
}
@media (min-width: 960px) {
  .events article .knoppen a {
    width: 18ch;
    margin: 0;
  }
}
.events figure {
  width: 60%;
  margin: 0 auto;
}
.events figure video {
  max-width: 100%;
  border-radius: 1em;
}

.gallerij .h2-en-nav .year-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 3em;
}
@media (min-width: 960px) {
  .gallerij .h2-en-nav .year-container {
    flex-direction: row;
  }
}
.gallerij .h2-en-nav h3 {
  margin-bottom: 1em;
}
@media (min-width: 960px) {
  .gallerij .h2-en-nav h3 {
    margin-right: 3em;
  }
}
.gallerij .h2-en-nav ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
@media (min-width: 960px) {
  .gallerij .h2-en-nav ul {
    margin-top: 1.8em;
    flex-direction: row;
  }
}
.gallerij .h2-en-nav ul li {
  display: flex;
  justify-content: center;
}
.gallerij .h2-en-nav ul figure {
  background-color: #202020;
  width: 85%;
  position: relative;
  box-shadow: 10px 10px 18px #cccccc;
}
.gallerij .h2-en-nav ul figure::before {
  content: "";
  position: absolute;
  opacity: 35%;
  top: 1.2em;
  bottom: 1.2em;
  left: 1.2em;
  right: 1.2em;
  border: 1px solid #f9f9f9;
}
@media (min-width: 960px) {
  .gallerij .h2-en-nav ul figure {
    width: 25vw;
    overflow: hidden;
    transition: 0.3s ease-in-out;
  }
  .gallerij .h2-en-nav ul figure::before, .gallerij .h2-en-nav ul figure::after {
    content: "";
    position: absolute;
    opacity: 0;
  }
  .gallerij .h2-en-nav ul figure::before {
    top: 1em;
    bottom: 1em;
    left: 2em;
    right: 2em;
    height: 0;
    border: none;
    border-left: 1px solid #f9f9f9;
    border-right: 1px solid #f9f9f9;
    transition: 0.5s ease-in-out;
  }
  .gallerij .h2-en-nav ul figure::after {
    top: 2em;
    bottom: 2em;
    left: 1em;
    right: 1em;
    width: 0;
    border-top: 1px solid #f9f9f9;
    border-bottom: 1px solid #f9f9f9;
    transition: 0.3s ease-in-out;
  }
  .gallerij .h2-en-nav ul figure:hover {
    background-color: rgb(48, 19, 19);
  }
  .gallerij .h2-en-nav ul figure:hover img {
    transform: translateY(-15px);
  }
  .gallerij .h2-en-nav ul figure:hover::before {
    height: calc(100% - 2em);
    opacity: 50%;
  }
  .gallerij .h2-en-nav ul figure:hover::after {
    width: calc(100% - 2em);
    opacity: 50%;
  }
  .gallerij .h2-en-nav ul figure:hover h4 {
    transform: translateY(-8px);
  }
}
.gallerij .h2-en-nav ul figcaption {
  position: absolute;
  margin: 0;
  padding: 0;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
}
.gallerij .h2-en-nav ul figcaption h4 {
  margin: 0;
  padding: 0;
  color: #f9f9f9;
  font-weight: 400;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.8);
  font-size: clamp(1.1rem, 0.2rem + 3.5vw, 1.6rem);
}
.gallerij .h2-en-nav ul figcaption h4.chinees {
  font-size: clamp(1.3rem, 0.3rem + 3.5vw, 1.8rem);
}
@media (min-width: 960px) {
  .gallerij .h2-en-nav ul figcaption h4 {
    font-size: clamp(0.8rem, 0.2rem + 1.1vw, 1.5rem);
    transition: 0.3s ease-in-out;
  }
}
.gallerij .h2-en-nav ul img {
  width: 100%;
  opacity: 35%;
  display: block;
}
@media (min-width: 960px) {
  .gallerij .h2-en-nav ul img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 110%;
    transition: 0.3s ease-in-out;
  }
}
.gallerij .h2-en-nav ul a {
  color: #931717;
  text-decoration: none;
  opacity: 0%;
  position: absolute;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.gallerij h2 {
  margin-bottom: 0.5em;
}
.gallerij h2 > a {
  color: #931717;
  text-decoration: none;
  display: block;
  margin-top: 1em;
}
.gallerij h2 > a:hover {
  text-decoration: underline;
}
.gallerij h2 > a.chinees:hover {
  text-underline-offset: 0.25em;
}
.gallerij h3 {
  margin-bottom: 0.3em;
  padding: 0;
  color: #931717;
  margin-top: 0;
}
.gallerij section[id] > ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 1.2em 1em;
}
@media (min-width: 960px) {
  .gallerij section[id] > ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .gallerij section[id] > ul li {
    height: 15.9vw;
  }
}
.gallerij section[id] > ul img {
  width: 100%;
  box-shadow: 4px 4px 12px 0 #cccccc;
}
@media (min-width: 960px) {
  .gallerij section[id] > ul img {
    height: 100%;
    width: auto;
  }
}
.gallerij .datum {
  margin-bottom: 1em;
}

.sponsors .logos {
  display: flex;
  justify-content: flex-start;
  gap: 1em 2em;
  flex-wrap: wrap;
}
@media (min-width: 960px) {
  .sponsors .logos {
    justify-content: space-between;
  }
}
.sponsors .logos a {
  padding: 1em;
  margin: 0.5em 0;
  border-radius: 5px;
  box-shadow: 1px 1px 4px 0 #cccccc;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: grayscale(20%);
}
@media (min-width: 960px) {
  .sponsors .logos a {
    box-shadow: none;
    filter: grayscale(100%);
    transition: 0.2s ease-in-out;
  }
  .sponsors .logos a:hover {
    filter: grayscale(20%);
    box-shadow: 2px 2px 6px #cccccc;
  }
}
.sponsors .logos a img {
  max-width: 100%;
  max-height: 7vw;
  transition: 0.2s ease-in-out;
}
@media (min-width: 960px) {
  .sponsors .logos a img {
    max-height: 6vw;
  }
  .sponsors .logos a img:hover {
    max-width: 90%;
  }
}

@media (min-width: 960px) {
  .contact {
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
    max-width: 2000px;
    display: grid;
    grid-template-areas: "kaart kaart kaart kaart" ". titel form ." ". contact form ." ". . form .";
    grid-template-columns: 12vw minmax(23ch, 2fr) minmax(20vw, 5fr) 7vw;
  }
}
.contact h2 {
  margin-left: 5vw;
  margin-bottom: 0;
}
@media (min-width: 960px) {
  .contact h2 {
    grid-area: titel;
    margin-top: 3vw;
    padding-top: 0;
    margin-left: 0;
    padding-bottom: 1em;
  }
}
.contact .algemeen {
  margin-bottom: min(8vw, 5vh);
}
@media (min-width: 960px) {
  .contact .algemeen {
    display: contents;
  }
  .contact .algemeen .container {
    padding: 0;
    display: contents;
  }
}
.contact .container {
  padding: min(4vw, 2.5vh) 5vw 0 5vw;
}
@media (min-width: 960px) {
  .contact .container {
    max-width: 70ch;
  }
}
.contact .kaart {
  width: 100%;
  height: 30vh;
  border: none;
  margin-bottom: min(8vw, 5vh);
}
@media (min-width: 960px) {
  .contact .kaart {
    grid-area: kaart;
    margin-bottom: 0;
  }
}
.contact .contact-gegevens {
  display: grid;
  grid-template-columns: 2em auto;
  grid-auto-rows: 1fr;
  grid-auto-flow: row;
  justify-items: left;
  align-items: center;
}
.contact .contact-gegevens dd {
  margin: 0.5em 1em;
}
.contact .contact-gegevens dd a {
  text-decoration: none;
  color: #505050;
}
.contact .contact-gegevens dd a:hover {
  text-decoration: underline;
}
@media (min-width: 960px) {
  .contact .contact-gegevens dd {
    margin: 1em;
  }
}
.contact .contact-gegevens dl {
  margin: 1em 0;
}
@media (min-width: 960px) {
  .contact .contact-gegevens {
    grid-area: contact;
  }
}
.contact svg {
  width: 2em;
  height: 2em;
}
.contact .contact-formulier h3 {
  padding-top: 0;
  margin-bottom: 2em;
  margin-top: 1.5em;
}
.contact .contact-formulier .container {
  background-color: #ffeed8;
}
@media (min-width: 960px) {
  .contact .contact-formulier .container {
    min-width: 100%;
    margin-top: 3vw;
    padding-left: 3.9vw;
    padding-right: 3.9vw;
    border-radius: 20px;
  }
}
.contact .contact-formulier form {
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  width: 100%;
}
@media (min-width: 960px) {
  .contact .contact-formulier form {
    display: grid;
    grid-template-areas: "lb_voornaam lb_naam" "in_voornaam in_naam" "lb_email lb_telefoon" "in_email in_telefoon" "lb_reden lb_reden" "in_reden in_reden" "lb_bericht lb_bericht" "in_bericht in_bericht" "verzenden verzenden";
    grid-template-columns: minmax(15ch, 1fr) minmax(15ch, 1fr);
    gap: 0 2em;
  }
  .contact .contact-formulier form label[for=voornaam] {
    grid-area: lb_voornaam;
  }
  .contact .contact-formulier form label[for=naam] {
    grid-area: lb_naam;
  }
  .contact .contact-formulier form label[for=email] {
    grid-area: lb_email;
  }
  .contact .contact-formulier form label[for=telefoon] {
    grid-area: lb_telefoon;
  }
  .contact .contact-formulier form label[for=reden] {
    grid-area: lb_reden;
  }
  .contact .contact-formulier form label[for=bericht] {
    grid-area: lb_bericht;
  }
  .contact .contact-formulier form input[id=voornaam] {
    grid-area: in_voornaam;
  }
  .contact .contact-formulier form input[id=naam] {
    grid-area: in_naam;
  }
  .contact .contact-formulier form input[id=email] {
    grid-area: in_email;
  }
  .contact .contact-formulier form input[id=telefoon] {
    grid-area: in_telefoon;
  }
  .contact .contact-formulier form .submit-div {
    grid-area: verzenden;
  }
  .contact .contact-formulier form select[id=reden] {
    grid-area: in_reden;
  }
  .contact .contact-formulier form textarea[id=bericht] {
    grid-area: in_bericht;
  }
}
.contact .contact-formulier form label {
  margin-bottom: 0.8em;
}
.contact .contact-formulier form label.required::after {
  content: " *";
  color: #e06538;
}
.contact .contact-formulier form input,
.contact .contact-formulier form select,
.contact .contact-formulier form textarea {
  padding: 1em 1em;
  margin-bottom: 2.5em;
  background-color: #f9f9f9;
  outline: 1px solid rgba(114, 55, 21, 0.7490196078);
  border: none;
  border-radius: 1.5em;
  overflow: hidden;
}
@media (min-width: 960px) {
  .contact .contact-formulier form input,
  .contact .contact-formulier form select,
  .contact .contact-formulier form textarea {
    margin-bottom: 2em;
    border-radius: 0.75em;
  }
}
.contact .contact-formulier form input:focus,
.contact .contact-formulier form select:focus,
.contact .contact-formulier form textarea:focus {
  outline: 2px solid #e06538;
}
.contact .contact-formulier form option {
  padding-left: 1em;
}
.contact .contact-formulier form textarea {
  resize: vertical;
}
.contact .contact-formulier form .submit-div {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.5em;
  align-items: center;
  margin-bottom: 2.5em;
}
@media (min-width: 960px) {
  .contact .contact-formulier form .submit-div {
    flex-direction: row;
    margin-top: 1.5em;
    margin-bottom: 2em;
  }
}
.contact .contact-formulier form input[type=submit] {
  background-color: #7a4627;
  color: #f9f9f9;
  width: 50%;
  transition: 0.3s ease-in-out;
  margin: 0;
}
@media (min-width: 960px) {
  .contact .contact-formulier form input[type=submit] {
    width: 25%;
  }
}
.contact .contact-formulier form input[type=submit]:hover, .contact .contact-formulier form input[type=submit]:focus {
  background-color: rgba(114, 55, 21, 0.7490196078);
  cursor: pointer;
  outline: none;
  transform: scale(0.95);
}
@media (min-width: 960px) {
  .contact .contact-formulier {
    grid-area: form;
  }
}
@media (max-width: 960px) {
  .contact + footer {
    margin-top: 0;
  }
}/*# sourceMappingURL=stylesheet.css.map */