/* CORE STYLES */
:root {
  --primary-color: rgba(255, 255, 255, 0.75);
  --overlay-color: rgba(77, 85, 91, 0.75);
  --menu-speed: 0.75s;
}

* {
    box-sizing: border-box;
}

/*design mobile first*/


#menusite {
display: none;
}

/*hamburgermenu*/

/*font, tekstgroote, lijnbreedte*/



/* MENU STYLES */
.menu-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

.menu-wrap .toggler {
  position: absolute;
  top: 2px;
  left: 0;
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  opacity: 0;
}

.menu-wrap .hamburger {
  position: absolute;
  top: 2px;
  left: 0;
  z-index: 1;
  width: 60px;
  height: 62px;
  padding: 1rem;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;

}

/* Hamburger Line */
.menu-wrap .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: rgb(77, 85, 91);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

/* Hamburger Lines - Top & Bottom */
.menu-wrap .hamburger > div::before,
.menu-wrap .hamburger > div::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -10px;
  width: 100%;
  height: 2px;
  background: inherit;
}

/* Moves Line Down */
.menu-wrap .hamburger > div::after {
  top: 10px;
}

/* Toggler Animation */
.menu-wrap .toggler:checked + .hamburger > div {
  transform: rotate(135deg);
}

/* Turns Lines Into X */
.menu-wrap .toggler:checked + .hamburger > div:before,
.menu-wrap .toggler:checked + .hamburger > div:after {
  top: 2px;
  transform: rotate(90deg);
}

/* Rotate On Hover When Checked */
.menu-wrap .toggler:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}

/* Show Menu */
.menu-wrap .toggler:checked ~ .menuphone {
  visibility: visible;
}

.menu-wrap .toggler:checked ~ .menuphone > div {
  transform: scale(1);
  transition-duration: var(--menu-speed);
}

.menu-wrap .toggler:checked ~ .menuphone > div > div {
  opacity: 1;
  transition:  opacity 0.4s ease 0.4s;
}

.menu-wrap .menuphone {
  position: fixed;
  top: 2px;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-wrap .menuphone > 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 .menuphone > div > div {
  text-align: left;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.dropdown-content{
  list-style: none;
  }

.menu-wrap .menuphone > div > div > ul > li {
  list-style: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 1rem;
  line-height: 1.5;
}



.menu-wrap .menuphone > div > div > ul > li > a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s ease;
}



body {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-align: justify;
  line-height: 150%;
}

a {
  text-decoration: none;
  color: inherit;
}

.menu a:hover {
  font-weight: bold;
  transition: all 0.2s;
}

.menu a:visited {
  color: inherit;
}

/*titel van begin niet weergeven*/
.Geentitel {
  display: none;
}

.container {
  display: grid;
  margin: 25px;
  grid-template-columns: 1fr;
  grid-template-areas:
    "titel"
    "menu"
    "content"
}

.titel {
  grid-area: titel;
  font-family: 'Tenor Sans', sans-serif;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px;
  border-bottom: 1px solid black;
}

.menu {
  grid-area: menu;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 15px;
  margin: 20px 0px;
}

.foto {
  text-align: center;
}

img {
  width: 100%;
  margin: 30px 0px;
}

/*opmaak knoppen voor gesprek/mail*/
#knop {
  display: flex;
  justify-content: space-between;
  margin: 30px 10px 30px -30px;
}

.button {
  width: 43%;
  display: inline-block;
  text-align: center;
  padding: 10px 2px;
  font-weight: bold;
  text-decoration: none;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-top-style: solid;
  border-bottom-style: solid;
  border-top-color: #C67785;
  border-bottom-color: #C67785;
  background-color: white;
  color: #C67785;
}

.button:hover {
  transition: all 0.3s;
  background-color: #C67785;
  border-top: 1px solid #C67785;
  border-bottom: 1px solid #C67785;
  color: white;
  transition: all 0.3s;
}

#Paragraph {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 150%;
  margin: 20px 0px;
  justify-content: center;
}

/*bepaalde woorden in vet*/
.bolder {
  font-size: 16px;
  font-weight: bold;
}

/* Extra small devices (phones, 700px and down)*/
@media only screen and (min-width: 700px) {
/*hamburgermenu niet zichtbaar maken op tabblet/website*/
  .menu-wrap{
    display: none;
  }

/*website menu tonen*/
  #menusite {
  display: flex;
  }

  /*hoofdmenu van nav opmaak*/
  .menu ul:first-child {
    display: flex;
    flex-wrap: nowrap;
    margin: 0px;
    width: 100%;
    height: 80px;
  }

  /*items over hele breedte*/
  .menu ul li {
    display: flex;
    flex-grow: 1;
    justify-content: center;
  }

  img.language {
    vertical-align: text-top;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    margin-right: 5px;
  }

  .menu:hover {
    transition: all 0.3s;
  }

  .dropdown {
    height: 30px;
    position: relative;
    display: inline-block;
  }

  /*opmaak li submenu*/
  .dropdown-content {
    position: absolute;
    padding-left: 25px;
    width: 160px;
    display: none;
    margin-top: 30px;
    z-index: 1;
  }

  /*opmaak links in submenu*/
  .dropdown-content a {
    text-decoration: none;
    display: block;
    width: 100px;
    text-align: left;
    margin: 1px;
  }

  /* submenus enkel zichtbaar bij hover*/
  .dropdown:hover .dropdown-content {
    display: block;
  }


  body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5em;
    font-size: 18px;
    margin: 10px;
    text-align: justify;
  }

  .container {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 0.7fr 1.3fr;
    grid-template-areas:
      "titel titel"
      "menu menu"
      "content content"
      "footer footer"
  }

  .titel {
    margin-top: 10px;
    justify-items: center;
    align-content: center;
    font-size: 2em;
    padding: 20px;
    text-transform: uppercase;
    border-bottom: 1px solid black;
    grid-column: span 2;
  }

  .menu {
    font-size: 20px;
  }

  /* opmaak verschillende gridblokken, grid gap plaats tssen blokken*/
  .content {
    grid-area: content;
    display: grid;
    text-align: justify;
    margin-top: 3em;
    grid-gap: 8em 1.5em;
    grid-template-columns: 0.9fr 1.1fr;
    grid-template-areas:
      "inhoud afbeelding"
      "inhoud afbeelding"
      "inhoud afbeelding"
      "inhoud afbeelding"
  }

  /*intro tekst in zelfde format als h2*/
  #Paragraph {
    font-size: 1.5em;
    font-weight: bold;
    text-align: left;
    line-height: 1.6em;
  }

  /*bepaalde woorden in vet*/
  .bolder {
    font-size: 1.17em;
    font-weight: bold;
  }

  #About {
    margin-bottom: 10em;
  }

  #knop {
    margin-top: 50px;
  }

  /*opmaak knoppen voor gesprek/mail*/
  .button {
    margin: 0 0 5em 2em;
    padding: 0.5em;
  }

  #fotoservices {
    margin-top: 25px;
  }

  #fotoabout {
    margin-top: 80px;
  }

  /* opmaak verschillende gridblokken van disclaimercontent*/
  .disclaimercontent {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .title {
    grid-column: 1;
  }

  .subitem {
    grid-column: 2;
  }
}

/* Extra small devices (phones, 1200px and down)*/
@media only screen and (min-width: 1200px) {
  body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5em;
  }

  .container {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 0.4fr 1.1fr 1.1fr 0.4fr;
    grid-template-areas:
      "leeg titel titel leeg2"
      "leeg menu menu leeg2"
      "leeg content content leeg2"
      "footer footer footer footer"
  }

  .titel {
    margin-top: 20px;
    grid-column: 2 / span 2;
  }

  /*intro tekst in zelfde format als h2*/
  #Paragraph {
    margin-left: 0;
    margin-right: 0;
    line-height: 2em;
  }

  /* opmaak verschillende gridblokken, grid gap plaats tssen blokken*/
  .content {
    margin-top: 5em;
    grid-gap: 20em 5em;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "inhoud afbeelding"
      "inhoud afbeelding"
      "inhoud afbeelding"
      "inhoud afbeelding"
  }
}
