@charset "UTF-8";
:root {
  --bg-banner: url("");
}

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

body {
  background-color: #faf9f7;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  overflow-x: hidden;
  height: 100%;
}

p,
li {
  font-size: 1em;
  letter-spacing: 1.5px;
  list-style-type: none;
}

h1 {
  color: #3a3129;
  font-family: "Lora", serif;
  font-size: 3rem;
  font-weight: 100;
}

h2 {
  color: #3a3129;
  font-family: "Lora", serif;
  font-size: 2.4rem;
  font-weight: 100;
}

h3 {
  color: #3a3129;
  font-family: "Lora", serif;
  font-size: 1.8rem;
  font-weight: 100;
}

h4 {
  color: #3a3129;
  font-family: "Lora", serif;
  font-size: 1.2rem;
  font-weight: 100;
}

h5 {
  color: #3a3129;
  font-family: "Lora", serif;
  font-size: 0.6rem;
  font-weight: 100;
}

h6 {
  color: #3a3129;
  font-family: "Lora", serif;
  font-size: 0rem;
  font-weight: 100;
}

h1 {
  text-align: center;
  margin: 0.5em 0;
  text-transform: uppercase;
}

h2 {
  text-transform: uppercase;
  font-size: 2.2em;
}

img {
  width: 100%;
  max-width: 450px;
  min-width: 75px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none; /*PROTECTION TO DOWNLOAD THE IMAGES*/
}

a {
  color: #463a2f;
}

a:hover {
  color: #000000;
}

nav {
  display: flex;
  height: 120px;
  width: 100%;
  justify-content: center;
  z-index: 99;
}
nav .mobile-logo {
  display: none;
}
nav ul {
  display: flex;
  align-items: center;
  flex: wrap;
  list-style: none;
}
nav ul li {
  text-align: center;
  margin: 0 1em;
}
nav ul li a {
  text-decoration: none;
  text-transform: uppercase;
  color: black;
  font-size: 1.2em;
  border-radius: 5px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-align: center;
}
nav ul li a.active,
nav ul li a:hover {
  color: #000000;
}
nav ul .logo {
  order: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: 80px;
}
nav ul .left-nav {
  order: 1;
}
nav ul .right-nav {
  order: 3;
}
nav ul .float-right-nav {
  display: block;
  order: 4;
  float: right;
}
nav .mobile-text {
  display: none;
}
nav .menu-btn i {
  cursor: pointer;
  display: none;
}
nav .mobile-logo {
  z-index: 101;
}
nav input[type=checkbox] {
  display: none;
}

nav.index {
  position: absolute;
}
nav.index a {
  color: #ffffff;
}

nav.port-alt-nav a {
  color: #ffffff;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

#welcome-header {
  margin-bottom: 2em;
}
#welcome-header .hero-image {
  background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0)), url(../img/hero-image.webp);
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
#welcome-header .hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
#welcome-header .hero-text h1,
#welcome-header .hero-text h2 {
  margin: 0.5em;
  color: white;
  text-align: center;
}
#welcome-header .hero-text .hidden {
  display: none;
}

#main {
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
}

#sm-content {
  max-width: 1280px;
  margin: 0 auto;
}

#bg-content {
  width: 100%;
  background-color: #e4e3e1;
}

.container {
  width: 100%;
  margin: 2em auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1em;
}
@media (max-width: 500px) {
  .container {
    flex-direction: column;
  }
}

.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 500px) {
  .reverse {
    flex-direction: column;
  }
}

.db-img, .placeholder {
  display: flex;
  flex-direction: row;
  gap: 1em;
}
.db-img .sm-img, .placeholder .sm-img {
  max-width: 250px;
  height: 80%;
  margin: auto auto;
}
@media (max-width: 1280px) {
  .db-img .sm-img, .placeholder .sm-img {
    display: none;
  }
}
.db-img .lg-img, .placeholder .lg-img {
  max-width: 450px;
}

.portfolio {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 3em 0;
}
.portfolio .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, auto);
  margin: 1em 0;
  gap: 12px;
}

.investment {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 300px));
  justify-content: center;
  gap: 0.5em;
  padding: 1em 0;
  max-width: 300px;
}
.investment .option {
  width: 400px;
  text-align: center;
}
.investment .option h3,
.investment .option .prijs {
  text-transform: uppercase;
}
.investment .option .inv-info {
  list-style-type: none;
}
.investment .option .inv-info li {
  margin: 0.5em 0;
}
.investment .other {
  background-color: #e4e3e1;
}
.investment img {
  max-width: 300px;
}

.info {
  width: 1200px;
  margin: 0 auto;
}
.info h2 {
  text-align: center;
  margin: 0.5em;
}

.reviews {
  margin: 1em auto;
  max-width: 1280px;
  text-align: center;
}
.reviews h2 {
  padding: 0.5em 0 1em 0;
}

.review-container {
  display: flex;
  gap: 3em;
}
.review-container .review {
  width: 100%;
  display: grid;
  grid-auto-rows: 0fr 1fr 0fr;
  margin: 1em 0;
}
.review-container .review .text {
  margin: 1em auto;
  font-size: 0.9rem;
  line-height: 1.8em;
}
@media (max-width: 800px) {
  .review-container {
    flex-direction: column;
  }
  .review-container .review {
    display: flex;
    flex-direction: column;
  }
  .review-container .review img {
    max-width: 100%;
  }
}

.centered {
  text-align: center;
}

.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

#footer {
  margin-top: 2em;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
  text-transform: uppercase;
}
#footer .logoFooter {
  width: 80px;
  height: 80px;
}
#footer .footer-links {
  display: inline-block;
  margin: 1em 0;
}
#footer .footer-links li {
  display: inline;
  margin: 1em;
}
#footer .footer-links li a {
  text-decoration: none;
}
#footer h3 {
  font-size: 1.5em;
}
#footer .social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}
#footer .social-links {
  text-align: center;
}
#footer .social-links a {
  margin: 1em 0;
  padding: 1em;
  font-size: 1.5em;
}
#footer .social-links img {
  height: 60px;
  width: 60px;
}
#footer .top {
  font-size: 2em;
}

/*#endregion*/
/*#region TEMPLATE STYLING*/
.form {
  max-width: 500px;
}
.form input,
.form textarea,
.form select,
.form label {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  width: 95%;
  height: 50px;
  border: none;
  border-bottom: 1px solid gray;
  margin: 0.5em 0;
  background-color: transparent;
}
.form textarea {
  height: 100px;
  resize: none;
}
.form select {
  background-color: transparent;
}
.form input:focus {
  outline-style: none;
}
.form button {
  background-color: transparent;
  width: 100%;
}
.form label {
  border: none;
  letter-spacing: 0.1em;
}
.form .radios {
  margin: 1em 0;
}
.form input[type=radio] {
  margin: 0;
  padding: 0;
  accent-color: #463a2f;
  height: 1em;
  width: 1em;
}
.form input + .error {
  position: relative;
}
.form input + .error::before {
  position: absolute;
  right: -20px;
  top: 5px;
}
.form input:invalid + .error::before {
  content: "X";
  color: red;
}
.form input:valid + .error::before {
  content: "✓";
  font-size: 20px;
  color: #000000;
}
.form .rec-method {
  margin: 1em 0;
}
.form .rec-container {
  width: 100%;
  display: inline-block;
  display: flex;
}
.form .rec-container label {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 2px;
  display: inline-block;
  line-height: 2.5em;
  height: auto;
  width: 50%;
  text-align: center;
  transition: 0.2s all ease-in-out;
  cursor: pointer;
}
.form .rec-container input[type=radio] {
  display: none;
}
.form .rec-container input[type=radio]:checked + label {
  border: 1px solid black;
}

.buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 2em;
  height: 50px;
  width: 200px;
  text-decoration: none;
  cursor: pointer;
  color: black;
  border: 1px solid black;
  text-transform: uppercase;
  font-family: "Lora", serif;
  font-size: 0.95em;
}

.side-info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 600px;
}
.side-info p {
  margin: 1em 0.2em;
}
@media (max-width: 1080px) {
  .side-info {
    max-width: 400px;
  }
}

/*#region PORTFOLIO */
.col-cat {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4em;
}
.col-cat .cat {
  width: 29%;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.col-cat .cat h3,
.col-cat .cat h2 {
  color: white;
  text-transform: uppercase;
  border: 1px solid white;
  padding: 1em;
}
.col-cat a:hover {
  background-color: white;
}
.col-cat .koppel {
  background: url(../img/categories/koppel/koppel_cover.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.col-cat .zwangerschap {
  background: url(../img/categories/zwangerschap/zwangerschap_cover.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.col-cat .familie {
  background: url(../img/categories/familie/familie_cover.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.col-cat .newborn {
  background: url(../img/categories/newborn/newborn_cover.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.col-cat .communie {
  background: url(../img/categories/communie/communie_cover.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.col-cat .branding {
  background: url(../img/categories/branding/branding_cover.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#banner {
  background: var(--bg-banner) fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 600px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 1em;
  align-content: center;
}
#banner h1,
#banner p {
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: center;
}
#banner p {
  text-decoration: underline;
  cursor: pointer;
}

.hide-cat {
  display: none;
}

#imgHolder {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex: 25%;
  flex-wrap: wrap;
}

#imgHolder img {
  width: 25%;
  padding: 4px;
}

.hidden-info {
  display: none;
}

#infoText {
  max-width: 1280px;
  margin: 3em auto;
  justify-content: space-evenly;
}
#infoText .placeholder {
  max-width: 500px;
  width: 100%;
  aspect-ratio: 1/1;
}

/*#endregion*/
/*#region INVESTMENTS*/
.inv-intro {
  justify-content: space-evenly;
}
.inv-intro .alt img {
  max-width: 500px;
  width: 100%;
  aspect-ratio: 1/1;
}
.inv-intro .extra-link {
  width: auto;
}

.investement-offers {
  display: flex;
  flex-direction: row;
  gap: 1.5em;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.investement-offers .offer {
  flex: 33%;
  margin: 2em 0;
  padding: 2em;
}
.investement-offers .offer .title {
  margin: 0.5em 0;
  text-transform: uppercase;
}
.investement-offers .offer .text {
  margin: 1em 0 0 0;
  min-height: 100px;
  max-width: 500px;
}
.investement-offers .offer .content {
  line-height: 4em;
  min-height: 550px;
}
.investement-offers .offer .content p:before {
  content: "✓ ";
}
.investement-offers .offer .content p.excl:before {
  content: "+ ";
}
.investement-offers .offer .content em {
  font-size: 0.75rem;
}
.investement-offers .offer .price {
  font-size: 1.8em;
  font-style: italic;
}
.investement-offers .center {
  background-color: #e4e3e1;
}
.investement-offers .buttons {
  width: 100%;
}

.mariages {
  width: 1280px;
  margin: 0 auto;
  padding: 1em 0;
  text-align: center;
}
.mariages .intro p {
  margin: 1em auto;
  max-width: 800px;
  width: 100%;
}
.mariages .offer {
  line-height: 2em;
  width: 300px;
  margin: 0 auto;
}
.mariages h3 {
  font-style: italic;
  font-size: 1.35em;
}
.mariages .side-info {
  text-align: left;
}
.mariages li {
  line-height: 2.5em;
  list-style-position: outside;
  margin: 0 0 0 1.5em;
}
.mariages li::marker {
  content: "✔ ";
}

.extras h3 {
  margin: 1em 0;
}

/*#endregion*/
/*#region BOOKING*/
.form-booking {
  margin: 1em 0;
}

.faq-section {
  padding-bottom: 2em;
}
.faq-section h2 {
  padding: 1em 0;
  width: 95%;
  max-width: 1280px;
  margin: 0 auto;
}
.faq-section a {
  justify-self: center;
}
.faq-section .hidden {
  display: none;
}

.faq {
  width: 95%;
  max-width: 1280px;
  margin: 1em auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1em;
}
.faq .question {
  flex: 45%;
}
.faq .question h3 {
  margin: 0.5em 0;
  text-transform: uppercase;
  font-size: 1.5em;
}

.faq-btn {
  height: 40px;
  margin: 0 auto;
}

/*#endregion*/
/*#region GIFTCARD*/
.giftcard {
  background-color: #e4e3e1;
  padding: 1.5em;
}
.giftcard .side-info {
  max-width: 700px;
}
.giftcard .side-info h3 {
  font-style: italic;
  padding: 0.2em 1em;
}
.giftcard .side-info ul {
  margin: 0 2em;
}
.giftcard .side-info ul li {
  margin: 0;
  padding: 0 1em;
  list-style-type: "✓";
}

/*#endregion*/
/*#region THANKSPAGE*/
.thanks-page {
  align-content: center;
  justify-content: center;
  height: 100vh;
}
.thanks-page .container {
  max-width: 1280px;
  width: 95%;
  padding: 1em;
}
.thanks-page .container .side-info {
  justify-content: center;
}
.thanks-page .container .side-info h1 {
  text-align: left;
}
.thanks-page .container .side-info h2 {
  font-size: 2em;
}
.thanks-page .container .side-info h3 {
  text-transform: uppercase;
  font-size: 1.5em;
}
.thanks-page .container .side-info .btn-group {
  display: flex;
  gap: 1em;
}

.bg-thanks #bg-content {
  background-color: #fff;
}

/*#endregion*/
/*#region STREET*/
.streetphotos .side-info {
  max-width: 600px;
}
.streetphotos .placeholder {
  max-width: 600px;
}
.streetphotos .placeholder img {
  max-width: 600px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#imgHolder .id-photo {
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 4px;
  width: 25%;
}
#imgHolder .id-photo h3 {
  position: absolute;
  text-align: center;
  color: white;
  font-size: 2em;
  border: 1px solid white;
  width: 150px;
  margin: 0.5rem 0;
}
#imgHolder .id-photo img {
  width: 100%;
  height: 100%;
}

/*#endregion*/
/*#region MEDIA QUERIES*/
@media (max-width: 1280px) {
  #sm-content,
  .reviews,
  #infoText {
    width: 95%;
  }
}
@media (max-width: 1080px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.6rem;
  }
  h4 {
    font-size: 1.4rem;
  }
  h5 {
    font-size: 1.2rem;
  }
  h6 {
    font-size: 1rem;
  }
  nav {
    justify-content: space-between;
    align-items: center;
  }
  nav .menu-btn {
    margin: 0 2em;
    z-index: 101;
  }
  nav .menu-btn i {
    color: #3a3129;
    display: block;
    font-size: 1.5rem;
  }
  nav .mobile-text {
    display: block;
    margin: 1em;
  }
  nav .mobile-logo {
    display: block;
    width: 70px;
    height: auto;
    margin-left: 1em;
  }
  nav .hidden-menu-text {
    visibility: hidden;
  }
  nav .logo {
    visibility: hidden;
  }
  nav ul {
    z-index: 100;
    position: fixed;
    top: 0;
    left: -100%;
    background-color: #ffffff;
    height: 100vh;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
  }
  nav ul li {
    width: 100%;
    margin: 40px 0;
  }
  nav ul li a {
    width: 100%;
    margin-left: -100%;
    display: block;
    font-size: 1.3rem;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  nav ul li a.active,
  nav ul li a:hover {
    background-color: none;
    color: #000000;
  }
  nav #click:checked ~ .menu-btn i:before {
    content: attr(data-text);
    color: black;
  }
  nav #click:checked ~ ul {
    left: 0;
  }
  nav #click:checked ~ ul li a {
    margin-left: 0;
  }
  nav.index a {
    color: black;
  }
  nav.index .menu-btn i {
    color: white;
  }
  #welcome-header .hero-text h2 {
    display: none;
  }
  .db-img .lg-img, .placeholder .lg-img {
    max-width: 375px;
  }
  img {
    max-width: 375px;
    height: auto;
  }
  .investement-offers .offer .content {
    line-height: 3em;
  }
  .col-cat .cat {
    width: 45%;
  }
}
@media (max-width: 885px) {
  .investement-offers {
    flex-direction: column;
  }
  .investement-offers .offer {
    width: 100%;
    margin: 0;
  }
  .investement-offers .offer .text {
    min-height: auto;
  }
  .investement-offers .offer .content {
    min-height: auto;
  }
}
@media (max-width: 800px) {
  .portfolio .portfolio-grid {
    grid-template-columns: repeat(2, auto);
  }
  .faq .question {
    flex: 100%;
  }
  .col-cat .cat {
    width: 100%;
  }
  #imgHolder {
    width: 100%;
    flex: 50%;
  }
  #imgHolder img {
    width: 50%;
  }
  #imgHolder .id-photo {
    flex: 50%;
  }
  #imgHolder .id-photo h3 {
    width: 200px;
  }
}
@media (max-width: 670px) {
  #footer .footer-links {
    display: block;
  }
  #footer .footer-links li {
    display: block;
    text-align: center;
  }
}
@media (max-width: 500px) {
  img {
    width: 100%;
    max-width: 100%;
  }
  .side-info {
    max-width: 100%;
  }
  .db-img .lg-img, .placeholder .lg-img {
    max-width: 100%;
  }
  .inv-intro .alt img {
    width: 100%;
    max-width: 100%;
  }
  .investement-offers .offer {
    padding: 0;
    margin: 0;
    justify-items: left;
    background-color: transparent;
  }
  .mariages,
  .centered,
  .text,
  .content {
    text-align: left;
  }
  .btn-group {
    flex-direction: column;
  }
  .btn-group .buttons {
    width: 100%;
    margin: 0;
  }
  .buttons {
    width: 100%;
  }
  .faq-btn {
    width: 95%;
  }
  .form {
    width: 95%;
    margin: 0 auto;
  }
  #imgHolder .id-photo {
    flex: 100%;
  }
  #imgHolder .id-photo h3 {
    width: 150px;
  }
  #imgHolder .id-photo img {
    width: 100%;
    max-width: 100%;
  }
  .giftcard .side-info h3 {
    padding: 0.2em 0;
  }
}
@font-face {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  src: local("Lora"), local;
}/*# sourceMappingURL=main.css.map */