/*
Theme Name: Praktijk voor Relatie en Gezinstherapie
Theme URI: https://praktijkvoorsysteemtherapienijverdal.nl
Author: Moro
Description: Exacte WordPress-versie van de statische website van Praktijk voor Relatie en Gezinstherapie (Nijverdal).
Version: 1.0
Text Domain: pvs
*/

html {
  height: 100%;
  min-width: 375px;
  background: #DCDCDC;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Comic Sans MS", sans-serif, Arial;
  line-height: 1.65;
  color: #465A58;
  font-size: 19px;
  font-weight: 400;
  max-height: 100%;
  justify-content: flex-start;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
  display: block;
  word-wrap: break-word;
}

h1, h2, h3 {
  /* font-family: "Comic Sans MS"; */
  text-transform: uppercase;
  font-weight: bolder;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #465A58;
}

a {
  text-decoration: none;
  color: #fff;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

p.dark, a.dark {
  color: #000;
}

p.underlined, a.underlined {
  border-bottom: solid 2px #465A58;
}

::selection {
  background: #000;
  color: #fff;
}
::-moz-selection {
  background: #000;
  color: #fff;
}

img {
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* Aangemeld plaatjes */
#aangemeld-image {
  width: 100%;
  height: 100px;
  object-fit: scale-down;
}

.aangemeld-images-column {
  float: left;
  width: 33.33%;
  padding: 5px;
}

.aangemeld-images-row::after {
  content: "";
  clear: both;
  display: table;
}

.aangemeld-images-row {
  height: 75px;
}

/* Cookies */
.cookie-banner {
  font-size: 19px;
	position: fixed;
	bottom: 40px;
	left: 10%;
  right: 10%;
  width: 80%;
  padding: 5px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

.close-cookies {
  font-size: 19px;
  font-weight: 900;
  padding: 8px 14px;
  background-color: #fff;
  border: none;
  color: #000;
  border-radius: 2px;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
  border-bottom: solid 2px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

@media (max-width: 770px) {
  .cookie-banner {
    font-size: 10px;
  }

  .close-cookies {
    font-size: 10px;
  }
}

/* Content */
/* Home */
.main-content {
  margin: 0 10%;
  padding: 35px 0;
}

.main-content h3 {
  margin-top: 40px;
}

@media (max-width: 1005px) {
  .main-content {
    margin: 0px 20px;
    padding: 25px 0;
  }
}

@media (max-width: 1005px) {
  .main-content h1 {
    font-size: 24px;
  }

  .main-content h2 {
    font-size: 20px;
  }

  .main-content h3 {
    font-size: 16px;
  }

  .main-content p, .main-content li {
    font-size: 14px;
  }
}

/* Home */
.main-content .main-content-header-item {
  display: block;
  margin: 35px 0 20px 0;
}

/* Menu header */
header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 100px;
  background: #8497B0;
  width: 100%;
  box-sizing: border-box;
  z-index: 99;
}

header .logo a {
  color: #fff;
  height: 100px;
  line-height: 100px;
  font-size: 18px;
  float: left;
  font-weight: bolder;
  text-decoration: none;
}

header nav {
  float: right;
  z-index: 99;
}

header nav ul {
  margin: 0;
  padding: 0;
  display: flex;
}

header nav ul li {
  list-style: none;
}

header nav ul li a {
  height: 100px;
  line-height: 100px;
  margin: 0 20px;
  color: #fff;
  font-weight: bolder;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}

header nav ul li a:first-child {
  margin: 0 30px 0 0;
}

header nav ul li a:last-child {
  margin: 0 0 0 30px;
}

header nav ul li a:hover {
  color: #465A58;
}

header nav ul li a.active {
  font-weight: bolder;
  color: #465A58;
}

.menu-toggle {
  color: #fff;
  float: right;
  line-height: 100px;
  font-size: 24px;
  cursor: pointer;
  display: none;
}

@media (max-width: 1005px) {
  header {
    padding: 0 20px;
  }

  .menu-toggle {
    display: block;
  }

  header nav {
    position: absolute;
    width: 100%;
    height: calc(100vh - 100px);
    /* height: calc(100vh - 100px); */
    background: #DCDCDC;
    transition: 0.5s;
    left: -100%;
    top: 100px;
  }

  header .logo a {
    font-size: 15px;
  }

  header nav ul li a, header nav ul li a:first-child, header nav ul li a:last-child {
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 0 20px;
    color: #8497B0;
  }

  header nav ul li a.active, header nav ul li a:hover {
    color: #465A58;
  }

  header nav.active {
    left: 0;
  }

  header nav ul {
    display: block;
    text-align: center;
  }
}

/* Headers pages */
/* Header with image */
.main-page-header {
  width: 100%;
  margin-top: 135px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  height: 50vh;
  font-size: 0;
}

/* Blocks inside main header */

.main-page-header #header-block {
  width: 30%;
  height: 100%;
  padding: 0;
  margin: 0 1.66%;
  overflow: hidden;
  display: inline-block;
  position: relative;
  text-align: center;
  color: white;
  border-radius: 50px;
  transition: all .3s ease-in-out;
}

.main-page-header #header-block:hover, .main-page-header .active-header-block {
  border-radius: 15px;
  transform: scale(0.9);
}


.main-page-header #header-block picture img {
  /* position: absolute; */
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-page-header div #centered-header-block-title {
   width: 100%;
   background-color: rgba(0, 0, 0, 0.5);
   z-index: 4;
   margin: 0 auto;
   text-align: center;
   position: absolute;
   left: 50%;
   bottom: 0;
   transform: translate(-50%, 0%);
 }

.main-page-header div #centered-header-block-title p {
  font-size: 30px;
  color: #fff;
  font-weight: bolder;
  margin: 0;
  padding: 15px 0;
}

@media (max-width: 1005px) {
  .main-page-header {
    height: 450px;
    margin-top: 100px;
  }

  .main-page-header #header-block {
    width: 100%;
    height: 150px;
    margin: 0;
    border-radius: 0;
  }

  .main-page-header div #centered-header-block-title p {
    font-size: 22px;
  }
}


.normal-page-header {
  width: 100%;
  margin-top: 100px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  height: 40vh;
  background: black;
}

@media (max-width: 1005px) {
  .normal-page-header {
    height: 30vh;
  }
}

.normal-page-without-header {
  margin-top: 100px;
}

/* Normal header with image */
.normal-page-header picture img {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.normal-page-header .normal-page-header-container {
  z-index: 4;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.normal-page-header .normal-page-header-container .page-title, .normal-page-header .normal-page-header-container .page-description {
  margin: 0;
  padding: 0;
}

.normal-page-header .normal-page-header-container .page-title {
  font-size: 45px;
  color: #fff;
}

.normal-page-header .normal-page-header-container .page-description {
  font-size: 24px;
  color: #fff;
}

@media (max-width: 1005px) {
  .normal-page-header .normal-page-header-container .page-title {
    font-size: 26px;
  }

  .normal-page-header .normal-page-header-container .page-description {
    font-size: 14px;
  }
}

#contact-adres-map-container {
  width: 100%;
  position: relative;
}

#contact-adres-map {
  width: 100%;
  height: 440px;
}

#founder-img {
  width: 20%;
  border-radius: 15px;
  margin: 0 25px 25px 25px;
}

#ingang-img {
  width: 25%;
  border-radius: 15px;
  margin: 40px 25px 25px 25px;
}

@media (min-width: 1005px) {
  #ingang-img {
    max-width: 25%;
  }
}

input[type=text] {
  width: 25%;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  background-color: white;
  background-image: url('searchicon.png');
  background-position: 10px 10px;
  background-repeat: no-repeat;
  padding: 12px 20px 12px 40px;
  transition: width 0.4s ease-in-out;
}

input[type=text]:focus {
  width: 100%;
}

textarea[type=text] {
  width: 30%;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  background-color: white;
  padding: 12px 20px 12px 40px;
  transition: width 0.4s ease-in-out;
  resize: none;
}

textarea[type=text]:focus {
  width: 100%;
}

input[type=submit] {
  background-color: #8497B0;
  border: 2px solid #ccc;
  border-radius: 4px;
  color: white;
  padding: 16px 32px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
}

@media (max-width: 1005px) {
  input[type=text], textarea[type=text], input[type=submit] {
    width: 100%;
  }
}

.return-aanmelding-verstuurd {
  font-size: 16px;
  font-weight: 500;
  padding: 8px 14px;
  background-color: #8497B0;
  border: none;
  color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
  border-bottom: solid 2px #465A58;
  cursor: pointer;
}

/* Footer */
footer {
  overflow: hidden;
  background: #8497B0;
  margin-top: auto;
  color: #fff;
  padding: 100px;
  text-decoration: none;
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

@media (max-width: 1005px) {
  footer {
    /* padding: 2.75em; */
    padding: 25px;
  }
}

footer nav ul li {
  list-style: none;
}

footer nav ul li a {
  text-decoration: none;
  color: #fff;
}

footer.main-footer nav, footer.main-footer .footer-end {
  margin: 0 auto;
  overflow: hidden;
}

/* Extra links footer */
footer.main-footer .footer-end {
  padding-bottom: 1.5em;
  background-position: bottom center;
}

footer.main-footer .footer-end ul {
  margin: 10px 0 0 0;
  padding: 0;
  width: 80%;
  float: left;
}

@media (max-width: 1005px) {
  footer.main-footer .footer-end ul {
    width: 100%;
  }
}

footer.main-footer .footer-end ul li {
  display: inline-block;
  margin-left: 14px;
  font-size: 13px;
  line-height: 1em;
  padding: 0;
}

footer.main-footer .footer-end ul li:first-child {
  margin-left: 0px;
}

@media (max-width: 1005px) {
  footer.main-footer .footer-end ul li {
    display: block;
    margin: 18px 0;
    font-size: 14px;
  }
}

/* Copyright footer */
footer.main-footer .footer-copyright p {
  font-size: 12px;
  text-align: center;
}

footer.main-footer .footer-copyright a {
  text-decoration: none;
  color: #fff;
}

@media (max-width: 1005px) {
  footer.main-footer .footer-copyright p {
    text-align: left;
    font-size: 10px;
  }
}

/* WordPress-specifiek */
body.admin-bar header.main-header {
  top: 32px;
}

header nav ul li.current-menu-item a,
header nav ul li.current_page_item a {
  color: #465A58;
}
