:root {
  --primary-color: rgba(149,27,129,0.70);
  --overlay-color: rgba(149,27,129,0.85);
  --button-color: rgba(149,27,129,1); 
  --menu-speed: 0.75s;
}
* {
  margin: 0;
  padding: 0;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font: 62.5%;
  scroll-behavior: smooth;
}
::-moz-selection {
  background: #dbdbdb;
  text-shadow: none;
}
::selection {
  background: #dbdbdb;
  text-shadow: none;
}
body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  line-height: 1.4;
  font-weight: 400;
}
.container {
  max-width: 960px;
  margin: auto;
  overflow: hidden;
  padding: 3rem 3rem;
}
h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  margin: 3rem 0 1rem 0;
  font-weight: 900;
}
p { font-size: 0.9rem; }
.list{ font-size: 0.9rem; margin-left: 2rem; }
/* URL STYLES */
a {
  text-decoration: none;
  color: var(--button-color);
  position: relative;
}
a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  transition: -webkit-transform 250ms ease-in;
  transition: transform 250ms ease-in;
  transition: transform 250ms ease-in, -webkit-transform 250ms ease-in;
}
a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
/* SHOWCASE STYLES */
.logo { max-width: 700px;}
.showcase {
  background: var(--primary-color);
  color: #fff;
  height: 100vh;
  position: relative;
}
.showcase:before {
  content: '';
  background: url('../images/gijzel.jpg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1000') no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.showcase .showcase-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
.showcase h1 {font-size: 1.6rem; font-weight: 900; margin: 2rem 0 2rem 0;}
/* MENU STYLES */
.menu-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}
.menu-wrap .toggler {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  opacity: 0;
}
.menu-wrap .hamburger {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 60px;
  height: 60px;
  padding: 1rem;
  background: var(--button-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-wrap .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.menu-wrap .hamburger > div::before,
.menu-wrap .hamburger > div::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -10px;
  width: 100%;
  height: 2px;
  background: inherit;
}
.menu-wrap .hamburger > div::after {
  top: 10px;
}
.menu-wrap .toggler:checked + .hamburger > div {
  transform: rotate(135deg);
}
.menu-wrap .toggler:checked + .hamburger > div:before,
.menu-wrap .toggler:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}
.menu-wrap .toggler:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}
.menu-wrap .toggler:checked ~ .menu {
  visibility: visible;
}
.menu-wrap .toggler:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: var(--menu-speed);
}
.menu-wrap .toggler:checked ~ .menu > div > div {
  opacity: 1;
  transition:  opacity 0.4s ease 0.4s;
}
.menu-wrap .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-wrap .menu > div {
  background: var(--overlay-color);
  border-radius: 50%;
  width: 200vw;
  height: 200vw;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.4s ease;
}
.menu-wrap .menu > div > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.menu-wrap .menu > div > div > ul > li {
  list-style: none;
  color: #fff;
  font-size: 1.3rem;
  padding: 1rem;
}
.menu-wrap .menu > div > div > ul > li > a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s ease;
}
.menu-wrap .menu > div > div > ul > li > a > img {
  margin: 1.5rem;
}
/* BUTTON STYLES */
.btnshow, .btn, .btnshow1,.btn1 {
  display: inline-block;
  border: none;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  transition: opacity 1s ease-in-out;
  text-decoration: none;
}
.btnshow{ color: var(--button-color); background: #fff; border: 2px solid #fff;}
.btnshow1{ color: #fff; border: 2px solid #fff; background: none; margin-right: 2rem;}
.btn{ color: #fff; }
.btn1 {background: var(--button-color);color: #fff; margin: 2rem 0 1rem 0;}
/* FB */
.fb { margin-top: 0; text-align: center; }
.imgbar {
  max-width: 1333px;
  background: url('../images/achtergrond1.jpg?auto=compress&cs=tinysrgb&dpr=2&h=500&w=1333') no-repeat center center;
  height: 510px;
  margin: 0 auto;
  padding-top: 15px;
  border-top: 10px solid var(--button-color);
}
/* IMG STYLES */
.img-bar {
  max-width: 1333px;
  background: url('../images/achtergrond.jpg?auto=compress&cs=tinysrgb&dpr=2&h=500&w=1333') no-repeat center center;
  height: 520px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 10px solid var(--button-color);
  border-bottom: 10px solid var(--button-color);
}
.conslide {
  display: grid;
  grid-template-column: 1fr;
  justify-content: center;
}
.slider {
  display: flex;
  max-width: 600px;
  height: 420px;
  width: 100%;
  overflow-x: scroll;
  box-shadow: 0px 0px 20px 0px #000;
  scroll-snap-type: x mandatory;
}
.slider img {
  width: 100%;
  object-fit: cover;
  /* Scroll Snap */
  scroll-snap-align: center;
}
.slit {margin-top:1rem;text-align:center; color:#fff; font-size: 0.8rem;}
.inline { display: inline-block; text-align:center;}
.inline img { margin:0 1.5rem 0 1.5rem; }
.left { float:left; }
.right { float:right; }
/* Contact form */
.cont {
    text-align: center;
}
.bcont {
    margin-top:1em;
    text-align: center;
}
.contact1 { 
  width: 480px;
  display:inline-block;
  float:left;
  margin-top: 0.5rem;
}
.contact2 {
  width:calc(100% - 480px);
  display:inline-block;
  float:left;
}
/* FOOTER STYLES */
footer {
  width: 100%;
  color:#fff;
  background: #4b4b4b; 
  font-size: 0.8rem;
  border-top: 15px solid var(--button-color);
}
.foot {
  max-width: 960px;
  margin: auto;
  overflow: hidden;
  padding: 2rem 0 0 0;
}
footer a {
  color: #fff;
}
hr {
  display: block;
  width:70%;
  text-align: center;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 0 auto;
  padding: 0;
}
.icons {text-align: center; margin: 2em 0 2em 0;}
.cicons {margin: 2em 0 2em 0;}
.icons img {
  display: inline-block;
  margin: 1rem;
}
.cicons img {
  display: inline-block;
  margin: 0.5rem;
}
.copy {
position: relative;
margin: 4em 0 2em 0;
}
.gotop {
  position: absolute;
  bottom:0;
  right:0;
}

@media (max-width: 62em) {
.cont {
    text-align: left;
  }
.contact1 { 
  width: 100%;
}
.contact2 {
  width:100%;
  margin-top: 2em;
}
}
@media (max-width: 43em) {
.showcase h1 {font-weight: 400;}  
.slider {max-width: 95%; margin: 0 auto;}
.menu-wrap .toggler:checked ~ .menu > div {
    transform: scale(1.1);
}
.fb-wid {max-width:95%;}
}