@import url("reset.css");

@import url("https://fonts.googleapis.com/css?family=Inter:regular,500,600,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Merriweather:regular,300,700,900&display=swap");

/* ************COMMON************ */

.logo {
  display: inline-block;
}

.logo img {
  width: auto;
  display: block;
  max-width: 100%;
  max-height: 120px;
  height: auto;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #303a4d;
}

/* Heading styles */
h1, h2, h3, h4, h5, h6 {
  font-family: "Merriweather", serif;
}

[class*="__container"] {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.button {
  font-weight: 600;
  font-family: "Merriweather", serif;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  transition: all 0.3s;
  color: #fff;
  background-color: #303a4d;
}

.title {
  font-size: 3.5rem;
  font-weight: 600;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

/* ************HEADER************ */

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(60,60,60,1);
  z-index: 1000;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 8rem;
  flex-wrap: wrap;
  max-width: 74.624rem;
  padding: 1rem 0;
}

.header__logo {
  position: relative;
  z-index: 2;
}

.header__navigation {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: #fff;
}

.menu__body {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu__list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.menu__link {
  font-family: "Merriweather", serif;
  font-weight: 600;
  position: relative;
  transition: color 0.2s;
  color: #fff;
  text-decoration: none;
}

.menu__link:hover,
.menu__link:focus {
  color: #96b044 !important;
}

.icon-menu {
  display: none;
  position: relative;
  flex: 0 0 1.875rem;
  width: 1.875rem;
  height: 1.125rem;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
}

.icon-menu span,
.icon-menu::before,
.icon-menu::after {
  content: "";
  transition: all 0.3s ease 0s;
  right: 0;
  position: absolute;
  width: 100%;
  height: 0.125rem;
  background-color: #fff;
}

.icon-menu::before {
  top: 0;
}

.icon-menu::after {
  bottom: 0;
}

.icon-menu span {
  top: calc(50% - 0.0625rem);
}

.menu-open .icon-menu span {
  width: 0;
}

.menu-open .icon-menu::before {
  top: calc(50% - 0.0625rem);
  transform: rotate(-45deg);
}

.menu-open .icon-menu::after {
  bottom: calc(50% - 0.0625rem);
  transform: rotate(45deg);
}

.menu__body {
  background-color: rgba(60,60,60,0.98);
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  padding: 9.375rem 0.938rem 1.875rem 0.938rem;
  overflow: auto;
  flex-direction: column;
  row-gap: 5rem;
  z-index: 1000;
  transition: left 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu__body::before {
  content: "";
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  min-height: 5.75rem;
  background-color: rgba(60,60,60,0.98);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  z-index: 1001;
  transition: left 0.3s ease;
}

.menu-open .menu__body {
  left: 0;
}

.menu-open .menu__body::before {
  left: 0;
}

.menu__list {
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  height: auto;
  width: 100%;
  max-width: 400px;
}

.menu__item {
  text-align: center;
  width: 100%;
}

.menu__item:not(:last-child) {
  margin-bottom: 1.563rem;
}

.menu__link {
  font-size: 2rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 1rem 0;
  width: 100%;
}

.menu__link:hover,
.menu__link:focus {
  color: #96b044 !important;
}

/* ****************PAGES**************** */
.page__main {
  padding-bottom: 160px;
}

/* *****************HOME**************** */

.main {
  background: url("../img/Banners/banner-home.jpeg") center / cover no-repeat;
  min-height: 85vh;
  padding-bottom: 4rem;
  opacity: 0.90;
}

.main__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 19.188rem;
}

.main__caption {
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 400;
}

.main__title {
  letter-spacing: 0.1em;
  color: #fff;
  font-size: 5.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.main__text {
  color: #fff;
  margin-bottom: 3.5rem;
  max-width: 53.375rem;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.main__buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.main__button {
  font-weight: 600;
  font-family: "Merriweather", serif;
  display: inline-block;
  padding: 1.25rem 3rem;
  border-radius: 0;
  transition: all 0.3s;
  color: #3c3c3c;
  background-color: rgba(150,176,68,1);
  letter-spacing: 0.02em;
  font-size: 1.375rem;
  line-height: 110%;
}

.main__button--secondary {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.main__button--secondary:hover {
  background-color: #fff;
  color: #303a4d;
}

.outro_home {
  background: url("../img/home/banner-outro.jpg") center / cover no-repeat;
  opacity: 0.90;
  background-attachment: fixed;
}
@media (max-width: 900px) {
  .outro_home {
    background-attachment: scroll;
  }
}

/* ************OVER**************** */

.main_over {
  background: url("../img/Banners/banner-over.jpeg") center / cover no-repeat;
}

.over__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
  max-width: 72.624rem;
  margin: 0 auto;
  padding-left: 0.938rem;
  padding-right: 0.938rem;
}

.over__image {
  position: relative;
  max-width: 552px;
  height: 614px;
}

.over__image img {
  border-radius: 16px;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.over__title {
  margin-bottom: 1.5rem;
}

.over__text {
  max-width: 30rem;
  letter-spacing: 0.02em;
  line-height: 150%;
  margin-bottom: 3.5rem;
}

.over__text p:not(:last-child) {
  margin-bottom: 2.5rem;
}

.over__content {
  flex: 1;
  max-width: 50%;
}

.over__button {
  margin-top: 1rem;
}

.outro_over {
  background: url("../img/over/outro-banner-over.jpg") center / cover no-repeat;
  opacity: 0.90;
  background-attachment: fixed;
}
@media (max-width: 900px) {
  .outro_over {
    background-attachment: scroll;
  }
}

/* **************ACCOMMODATIE**************** */

.main_accommodatie {
  background: url("../img/Accomodatie/banner-accomodatie.jpg") center / cover no-repeat;
}

.services {
  background-color: rgba(60,60,60,1);
}

.services__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.services__title {
  color: #fff;
  text-align: center;
  margin-bottom: 5rem;
}

.services__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.item-services {
  background-color: rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100%;
}

.item-services__image {
  margin-bottom: 2rem;
  max-width: 360px;
  height: 421px;
}

.item-services__image img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-services__title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.item-services__text {
  color: #fff;
  max-width: 21.5rem;
  line-height: 150%;
  margin-bottom: 2rem;
  flex-grow: 1;
  letter-spacing: 0.02em;
}

.item-services__button {
  background-color: inherit;
  background-color: #96b044;
  color: #3c3c3c;
  margin-bottom: 2rem;
}

.outro_accommodatie {
  background: url("../img/Accomodatie/binnenpiste-1.jpeg") center / cover no-repeat;
  opacity: 0.90;
  background-attachment: fixed;
}
@media (max-width: 900px) {
  .outro_accommodatie {
    background-attachment: scroll;
  }
}

/* ************TESTIMONIAL**************** */

.testimonial__container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.testiomonial__caption {
  margin-bottom: 4rem;
  font-weight: 600;
  text-transform: uppercase;
}

.testimonial__title {
  margin-bottom: 4rem;
  font-size: 2rem;
  max-width: 40.75rem;
  line-height: 136%;
  font-weight: 500;
}

.item-testimonial__image {
  max-width: 64px;
  margin: 0 auto;
  margin-bottom: 1.063rem;
  height: 64px;
}

.item-testimonial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.item-testimonial__title {
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.item-testimonial__caption {
  font-size: 0.938rem;
}

/* ****************OUTRO**************** */

.outro__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.outro__title {
  color: #fff;
  font-size: 3.5rem;
  font-family: "Merriweather", serif;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
}

.outro__text {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 3.5rem;
  max-width: 53.375rem;
  line-height: 150%;
  letter-spacing: 0.02em;
  margin-left: auto;
  margin-right: auto;
}

.outro__button {
  font-weight: 600;
  font-family: "Merriweather", serif;
  display: inline-block;
  padding: 1.25rem 3rem;
  border-radius: 0;
  transition: all 0.3s;
  color: #3c3c3c;
  background-color: #96b044;
  letter-spacing: 0.02em;
  font-size: 1.375rem;
  line-height: 110%;
  border: none;
}

.outro__button:hover {
  background-color: #fff;
  color: #303a4d;
}

/* ****************FOOTER**************** */

.footer {
  line-height: 150%;
}

.footer__container {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
  max-width: 74.624rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footer__policy {
  font-weight: 600;
  letter-spacing: 0.02em;
  justify-self: start;
}

.footer__logo {
  justify-self: start;
}

.footer__copyright {
  font-weight: 600;
  letter-spacing: 0.02em;
  justify-self: end;
}

/* Footer bottom bar */
.footer__bottom {
  background-color: rgba(60,60,60,1);
  padding: 1rem 0;
}

.footer__bottom-container {
  max-width: 74.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom-copyright {
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: 14px;
}

.footer__bottom-kerlinga {
  color: rgba(150,176,68,1);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 14px;
}

.footer__bottom-kerlinga:hover {
  opacity: 0.8;
}

/* ****************ABOUT PAGE**************** */
.main__text_pages {
  max-width: 37.5rem;
}

.main__container_pages {
  padding-top: 300px;
}

.main_pages {
  min-height: 676px !important;
}

/* ****************ACCOMMODATIE PAGE**************** */
.page__accommodatie,
.accommodatie-page {
  margin: 0;
  padding: 132px 0;
  border: 0;
}

.accommodatie-page__container {
  padding: 0;
}

.accommodatie-page__container--last {
  padding-bottom: 0;
}

.accommodatie-page__item {
  /* margin-bottom: 132px; */
}

.accommodatie-page__item:not(:last-child) {
  /* padding-bottom: 132px; */
  /* margin-bottom: 132px; */
  border-bottom: 1px solid rgba(48, 58, 77, 0.4);
}

.accommodatie-page__column {
  display: flex;
  align-items: center;
  gap: 97px;
}

.accommodatie-page__title {
  margin-bottom: 24px;
}

.accommodatie-page__text {
  margin-bottom: 56px;
  max-width: 480px;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.accommodatie-page__text p:not(:last-child) {
  margin-bottom: 20px;
}

.accommodatie-page__img {
  max-width: 552px;
  height: 614px;
}

.accommodatie-page__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.accommodatie-page__price {
  background-color: #96b044;
  color: #303a4d;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  text-align: center;
  font-size: 1.1rem;
}

.accommodatie-page__note {
  background-color: #f8f9fa;
  border-left: 4px solid #96b044;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  font-style: italic;
}

.accommodatie-page__openingstijden {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.accommodatie-page__openingstijden h3 {
  margin-bottom: 1rem;
  color: #303a4d;
  font-size: 1.2rem;
}

.accommodatie-page__openingstijden ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accommodatie-page__openingstijden li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e1e4eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accommodatie-page__openingstijden li:last-child {
  border-bottom: none;
}

.accommodatie-page__openingstijden strong {
  color: #303a4d;
  min-width: 100px;
}

/* ****************CONTACT PAGE****************/

.main_contact {
  background: url("../img/contact/banner-contact.jpeg") center / cover no-repeat;
}

.contact__container {
  display: flex;
  justify-content: space-between;
  gap: 109px;
  padding-top: 140px;
  padding-bottom: 140px;
}

.contact__title {
  margin-bottom: 48px;
  font-weight: 600;
  line-height: 110%;
  font-size: 40px;
}

.connect-contact {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e1e4eb;
}

.connect-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.connect-contant__type {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 110%;
  text-transform: uppercase;
}

.connect-contact__label {
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.contact__links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact__text {
  max-width: 545px;
  font-size: 18px;
  line-height: 150%;
}

.contact__text p:not(:last-child) {
  margin-bottom: 15px;
}

.page__map iframe,
.map iframe {
  display: block;
  width: 100vw;
  max-width: 100%;
  border: none;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
  height: 482px;
}

/* **************REVIEWS PAGE**************** */
.reviews__container {
  padding-top: 160px;
  padding-bottom: 160px;
}

.reviews__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
}

.reviews__column {
  border: 1px solid #e1e4eb;
  border-radius: 0;
}

.reviews__item {
  padding-top: 48px;
  padding-bottom: 56px;
  padding-right: 32px;
  padding-left: 32px;
}

.item-reviews {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-reviews__img {
  max-width: 46px;
  height: 36px;
  margin: 0 auto;
  margin-bottom: 46px;
}

.item-reviews__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-reviews__text {
  margin-bottom: 40px;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 150%;
}

.item-reviews__author {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.item-reviews__geo {
  font-size: 14px;
  letter-spacing: 0.002em;
}

/* ******************PRICING PAGE******************** */
.pricing__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pricing__caption {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 4%;
}

.pricing__title {
  font-weight: 600;
  font-size: 72px;
  margin-bottom: 24px;
}

.pricing__text {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 88px;
}

.pricing__row {
  display: flex;
  align-items: start;
  gap: 24px;
}

.pricing__column {
  border: 2px solid #e1e4eb;
  border-radius: 0;
}

.pricing__item {
  padding: 40px;
  padding-bottom: 48px;
}

.item-pricing__info {
  padding-bottom: 32px;
  border-bottom: 1px solid #e1e4eb;
  margin-bottom: 32px;
}

.item-pricing__label {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1%;
  margin-bottom: 16px;
}

.item-pricing__cost {
  font-size: 72px;
  font-weight: 600;
  margin-bottom: 16px;
}

.item-pricing__list {
  margin-bottom: 64px;
}

.item-pricing__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-pricing__item::before {
  content: "";
  background: url("../img/pricing/check.svg") 0 0 no-repeat;
  width: 16px;
  height: 18px;
}

.item-pricing__item:not(:last-child) {
  margin-bottom: 12px;
}

.item-pricing__button {
  display: inline-block;
  font-size: 22px;
  letter-spacing: 2%;
  font-weight: 600;
  color: #fff;
  padding: 20px 82px;
  background-color: #303a4d;
  border-radius: 0;
}

.team {
  background-color: #e1e4eb;
}

.team__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.team__title {
  text-align: center;
  margin-bottom: 96px;
  max-width: 483px;
}

.team__row {
  display: grid;
  column-gap: 24px;
  row-gap: 96px;
  grid-template-columns: repeat(3, 1fr);
}

.team__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-team__img {
  max-width: 360px;
  height: 363px;
  margin-bottom: 40px;
}

.item-team__img img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}

.item-team__name {
  max-width: 186px;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  margin-bottom: 12px;
}

.item-team__role {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 26px;
  letter-spacing: 2%;
}

.item-team__role span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-team__role span::after {
  content: "";
  background: url("../img/team/icons/star.svg") 0 0 no-repeat;
  width: 12px;
  height: 12px;
}

.item-team__text {
  font-size: 16px;
  text-align: center;
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 328px;
  margin-bottom: 20px;
}

.item-team__icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* *************FAQ PAGE************** */
.faqs__container {
  padding-top: 140px;
  padding-bottom: 140px;
}

.faqs__title {
  text-align: center;
  margin-bottom: 80px;
}

.spollers-faq__item {
  width: 100%;
}

.spollers-faq__item:not(:last-child) {
  margin-bottom: 24px;
}

.spollers-faq__button {
  display: inline-block;
  border: 2px solid #e1e4eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 0;
}

.spollers-faq__button span {
  padding-left: 40px;
  padding-top: 32px;
  padding-bottom: 32px;
  font-weight: 600;
}

.spollers-faq__button img {
  padding-right: 34.5px;
}

.spollers-faq__text {
  max-height: 0;
  overflow: hidden;
  width: 100%;
  display: block;
}

.spollers-faq__item.active .spollers-faq__text {
  max-height: 1000px;
  max-height: calc(1000px + 16px);
}

.spollers-faq__item.active .spollers-faq__button {
  border-bottom: none;
  border-radius: 0;
}

.spollers-faq__item.active .spollers-faq__button span {
  padding-bottom: 32px;
}

.spollers-faq__item.active .spollers-faq__button img {
  transform: translate(-34px, 0px) rotate(180deg);
}

.spollers-faq__inner {
  padding-top: 20px;
  padding-left: 40px;
  border: 2px solid #e1e4eb;
  border-radius: 0;
  line-height: 150%;
  padding-bottom: 20px;
  border-top: none;
  padding-right: 100px;
}

/* ****************TEAM PAGE**************** */
.director__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  align-items: center;
  gap: 96px;
}

.director__title {
  margin-bottom: 16px;
}

.director__role {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 40px;
}

.director__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 480px;
}

.director__text p:not(:last-child) {
  margin-bottom: 20px;
}

.director__img {
  max-width: 552px;
  height: 614px;
}

.director__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ****************GALLERY**************** */
.gallery__container {
  padding-bottom: 140px;
  padding-top: 140px;
}

.gallery__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  margin-bottom: 96px;
  justify-items: center;
}

.gallery__item {
  max-width: 360px;
  height: 407px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.gallery__paggination {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 42px;
}

.gallery__paggination button:first-child {
  transform: translate(0px, 5px);
}

.gallery__paggination button:last-child {
  transform: rotate(-180deg) translate(0px, 5px);
}

.gallery_active {
  color: #fff;
  padding: 10px 15px;
  background-color: #303a4d;
  border-radius: 0;
  display: inline-block;
}

/* ****************RESOURCES**************** */
.resources__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  justify-items: center;
}

.resources__img {
  max-width: 360px;
  height: 330px;
  margin-bottom: 32px;
}

.resources__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.resources__title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 12px;
}

.resources__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 243px;
  margin-bottom: 32px;
}

.resources__button {
  background-color: #fff;
  color: #303a4d;
  font-weight: 600;
  letter-spacing: 2%;
  border: 2px solid #303a4d;
  border-radius: 0;
}

/* ****************ADAPTIVE**************** */

@media (max-width: 992px) {
  .services__row {
    grid-template-columns: 1fr;
    gap: 6rem;
    justify-items: center;
  }

  .item-services {
    text-align: center;
    align-items: center;
  }

  .page__main {
    padding-bottom: 80px;
  }

  .menu__list {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 995px) {
  .item-pricing__button {
    font-size: 19px;
  }
}

@media (max-width: 62.6875rem) {
  .resources__container {
    padding-top: 70px;
    padding-bottom: 70px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__paggination {
    gap: 27px;
  }

  .gallery__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .team__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .director__container {
    flex-direction: column;
    padding-top: 70px;
    padding-bottom: 70px;
    gap: 10px;
    text-align: center;
  }

  .item-pricing {
    padding: 20px;
    padding-bottom: 30px;
  }

  .pricing__title {
    font-size: 39px;
  }

  .pricing__text {
    margin-bottom: 25px;
  }

  .item-pricing__button {
    padding: 16px 42px;
  }

  .footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
  }

  .footer__bottom-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer__policy,
  .footer__copyright {
    justify-self: center;
    text-align: center;
    margin: 0.5rem 0;
  }

  .footer__logo {
    margin-bottom: 1rem;
  }

  .accommodatie-page__column {
    gap: 30px;
    font-size: 15px;
  }

  .accommodatie-page__title {
    font-size: 29px;
  }

  .accommodatie-page__openingstijden li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .accommodatie-page__openingstijden strong {
    min-width: auto;
  }

  .reviews__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    column-gap: 10px;
  }

  .reviews__item {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
    display: inline-block;
  }

  .item-reviews__text {
    font-size: 16px;
  }

  .item-reviews__author {
    font-size: 16px;
  }
}

@media (max-width: 47.999rem) {
  .spollers-faq__item.active .spollers-faq__button img {
    transform: translate(-10px, -10px) rotate(180deg);
  }

  .spollers-faq__button span {
    padding-top: 15px;
    padding-left: 10px;
    padding-bottom: 15px;
    font-weight: 600;
    font-size: 14px;
  }

  .spollers-faq__button img {
    padding-right: 10px;
  }

  .spollers-faq__inner {
    font-size: 16px;
    padding-left: 10px;
    line-height: 130%;
  }

  .pricing__container {
    text-align: center;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .pricing__row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .item-pricing__button {
    font-size: 17px;
    padding: 15px 32px;
  }

  .reviews__container {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  /* Mobiele menu optimalisaties */
  /* Mobiele menu optimalisaties */
  .icon-menu {
    display: block;
    position: relative;
    flex: 0 0 1.875rem;
    width: 1.875rem;
    height: 1.125rem;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #fff;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    transform: rotate(45deg);
  }

  .menu__body {
    background-color: rgba(60,60,60,0.98);
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    padding: 9.375rem 0.938rem 1.875rem 0.938rem;
    overflow: auto;
    flex-direction: column;
    row-gap: 5rem;
    z-index: 1000;
    transition: left 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu__body::before {
    content: "";
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    min-height: 5.75rem;
    background-color: rgba(60,60,60,0.98);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    z-index: 1001;
    transition: left 0.3s ease;
  }

  .menu-open .menu__body {
    left: 0;
  }

  .menu-open .menu__body::before {
    left: 0;
  }

  .menu__list {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    height: auto;
    width: 100%;
    max-width: 400px;
  }

  .menu__item {
    text-align: center;
    width: 100%;
  }

  .menu__item:not(:last-child) {
    margin-bottom: 1.563rem;
  }

  .menu__link {
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 1rem 0;
    width: 100%;
  }

  .menu__link:hover,
  .menu__link:focus {
    color: #96b044 !important;
  }

  .contact__container {
    flex-direction: column;
    padding-top: 80px;
    gap: 50px;
    padding-bottom: 80px;
  }

  .main__container {
    padding-top: 12.5rem;
  }

  .main__buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .main__button {
    font-size: 1.125rem;
    padding: 1rem 2rem;
  }

  .main__container_pages {
    padding-top: 290px;
  }

  .main__title {
    font-size: 3rem;
  }

  .title {
    font-size: 2rem;
  }

  .about__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .about__container {
    flex-direction: column;
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
    gap: 4rem;
  }

  .over__container {
    flex-direction: column;
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
    gap: 4rem;
    text-align: center;
  }

  .over__image {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
  }

  .over__text {
    max-width: 100%;
  }

  .over__content {
    max-width: 100%;
  }

  .services__container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }

  .testimonial__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .testiomonial__caption {
    margin-bottom: 2rem;
  }

  .outro__container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }

  .logo img {
    max-height: 60px;
  }

  .accommodatie-page__column {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    gap: 4rem;
  }
}

@media (max-width: 61.936rem) {
  .footer__container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    row-gap: 0.938rem;
  }
  .logo img {
    max-height: 80px;
  }
}

@media (max-width: 530px) {
  .reviews__row {
    grid-template-columns: 1fr;
  }

  .team__row {
    grid-template-columns: 1fr;
  }

  .gallery__row {
    grid-template-columns: 1fr;
  }

  .resources__container {
    grid-template-columns: 1fr;
  }
}

.footer__mainbar {
  background: rgba(60,60,60,0.94);
  padding: 2.5rem 0 2rem 0;
}
.footer__mainbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}
.footer__mainbar-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer__mainbar-logo {
  align-items: center;
  justify-content: flex-start;
  display: flex;
  padding-left: 1rem;
}
.footer__mainbar-logo img {
  width: 200px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
.footer__mainbar-contact {
  align-items: flex-start;
  justify-content: center;
  color: #fff;
  padding-left: 2rem;
}
.footer__mainbar-contact h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}
.footer__mainbar-contactinfo > div {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  color: #fff;
}
.footer__mainbar-social {
  align-items: flex-start;
  justify-content: center;
  color: #fff;
  padding-right: 3rem;
  text-align: left;
}
.footer__mainbar-social h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}
.footer__mainbar-facebook-embed {
  width: 300px;
  max-width: 100%;
  min-width: 180px;
  margin-left: 0;
  padding: 0;
}
.footer__mainbar-social iframe {
  width: 300px !important;
  min-width: 180px;
  max-width: 100%;
  height: 130px;
  display: block;
}
@media (max-width: 900px) {
  .footer__mainbar-container {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .footer__mainbar-col,
  .footer__mainbar-logo,
  .footer__mainbar-contact,
  .footer__mainbar-social {
    width: 100%;
    max-width: 400px;
    align-items: center !important;
    padding: 0 !important;
  }
  .footer__mainbar-contact {
    align-items: center !important;
    text-align: center;
    padding-left: 0;
  }
  .footer__mainbar-social {
    align-items: center !important;
    text-align: center;
    padding-right: 0;
  }
}

/* ****************NIEUWS**************** */
.news {
  background-color: #96b044;
  padding: 8rem 0;
}
.news__container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}
.news__title {
  color: #303a4d;
  margin-bottom: 1.5rem;
}
.news__subtitle {
  color: #303a4d;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}
.news__facebook-embed {
  display: flex;
  justify-content: center;
  align-items: center;
}
.news__facebook-embed iframe {
  width: 100%;
  max-width: 500px;
  min-width: 220px;
  height: 600px;
  background: #fff;
}
@media (max-width: 600px) {
  .news {
    padding: 3rem 0;
  }
  .news__facebook-embed iframe {
    height: 400px;
    min-width: 0;
    max-width: 100%;
  }
}

/* ****************ACCOMMODATIE**************** */
.accommodatie {
  background-color: #3c3c3c;
  padding: 8rem 0;
}
.accommodatie__container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}
.accommodatie__title {
  color: #fff;
  margin-bottom: 1.5rem;
}
.accommodatie__subtitle {
  color: #fff;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}
.accommodatie__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.accommodatie__gallery-item {
  background: #222;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 240px;
}
.accommodatie__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .accommodatie__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .accommodatie__gallery-item {
    height: 180px;
  }
}
@media (max-width: 600px) {
  .accommodatie {
    padding: 3rem 0;
  }
  .accommodatie__gallery {
    grid-template-columns: 1fr;
  }
  .accommodatie__gallery-item {
    height: 160px;
  }
}

/* Afwisselende sectiestijlen voor accommodatiepagina */
.accommodatie-section--dark {
  background: rgba(60,60,60,1);
  color: #fff;
}
.accommodatie-section--dark a,
.accommodatie-section--dark .accommodatie-page__button {
  color: #fff;
  border-color: #fff;
}
.accommodatie-section--dark .accommodatie-page__button {
  background: transparent;
  border: 2px solid #fff;
}
.accommodatie-section--dark .accommodatie-page__button:hover {
  background: #fff;
  color: #3c3c3c;
}

.accommodatie-section--light {
  background: rgba(150,176,68,1);
  color: #3c3c3c;
}
.accommodatie-section--light a,
.accommodatie-section--light .accommodatie-page__button {
  color: #3c3c3c;
  border-color: #3c3c3c;
}
.accommodatie-section--light .accommodatie-page__button {
  background: transparent;
  border: 2px solid #3c3c3c;
}
.accommodatie-section--light .accommodatie-page__button:hover {
  background: #3c3c3c;
  color: #fff;
}

.accommodatie-section--dark h2,
.accommodatie-section--dark h3,
.accommodatie-section--dark strong {
  color: #fff;
}

.accommodatie-section--light h2,
.accommodatie-section--light h3,
.accommodatie-section--light strong {
  color: #3c3c3c;
}

/* Zorg dat afbeeldingen afgerond blijven en niet te veel padding krijgen */
.accommodatie-page__img img {
  border-radius: 16px;
  background: #fff;
}

/* ========== VERBETERDE OVER INTRO SECTIE ========== */
.over__intro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1rem 3rem 1rem;
}
.over__intro-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.over__intro-content {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  justify-content: center;
}
.over__intro-image {
  flex: 1.2 1 350px;
  max-width: 600px;
  min-width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 0;
  box-shadow: 0 2px 12px rgba(60,60,60,0.04);
  padding: 1.5rem;
}
.over__intro-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}
.over__intro-details {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
  max-width: 700px;
  margin: 0 auto;
}
.over__intro-block {
  background: none;
  padding: 0;
  margin-bottom: 1.2rem;
}
.over__intro-block-title {
  font-family: "Merriweather", serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #303a4d;
}
.over__intro-block p {
  text-align: justify;
  margin-bottom: 0.7rem;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .over__intro-content {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  .over__intro-image {
    max-width: 100%;
    padding: 1rem;
  }
  .over__intro-details {
    width: 100%;
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .over__intro-container {
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
  .over__intro-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .over__intro-block-title {
    font-size: 1.05rem;
  }
  .over__intro-details {
    gap: 0.7rem;
  }
}

/* ===== TEAM SECTION (OVER PAGINA) ===== */
.team-section {
  background: rgba(60,60,60,1);
  color: #fff;
  padding: 6rem 0;
}
.team-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
.team-section__title {
  margin-bottom: 3rem;
}
.team-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  justify-items: center;
}
.team-section__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-section__img {
  width: 280px;
  height: 280px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(60,60,60,0.04);
  padding: 1rem;
}
.team-section__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-section__name {
  font-family: "Merriweather", serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.team-section__role {
  font-size: 1.2rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  opacity: 0.95;
}
@media (max-width: 1100px) {
  .team-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .team-section__grid {
    grid-template-columns: 1fr;
  }
  .team-section__img {
    width: 90vw;
    max-width: 320px;
    height: 90vw;
    max-height: 320px;
  }
  .team-section {
    padding: 3rem 0;
  }
}

/* ===== GESCHIEDENIS SECTION (OVER PAGINA) ===== */
.history-section {
  background: rgba(150,176,68,1);
  color: rgba(60,60,60,1);
  padding: 6rem 0;
}
.history-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.history-section__header {
  text-align: left;
  margin-bottom: 2.5rem;
}
.history-section__subtitle {
  font-family: "Merriweather", serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.history-section__title {
  font-family: "Merriweather", serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0;
}
.history-section__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.history-section__col {
  font-family: "Inter", sans-serif;
  font-size: 1.15rem;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.history-section__col--cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.history-section__button {
  display: inline-block;
  margin-top: 2.5rem;
  background: rgba(60,60,60,1);
  color: #fff;
  font-family: "Merriweather", serif;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1rem 4rem;
  border: none;
  border-radius: 0;
  text-align: center;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  align-self: center;
}
.history-section__button:hover {
  background: #fff;
  color: rgba(60,60,60,1);
}
@media (max-width: 1100px) {
  .history-section__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .history-section__header {
    text-align: center;
  }
  .history-section__button {
    margin-top: 2rem;
  }
}

.page__map, .map {
  margin: 0;
  padding: 0;
}

.contact-section__socials {
  display: flex;
  gap: 1.2rem;
  margin-top: 2.5rem;
  justify-content: flex-start;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: rgba(255,255,255,0.10);
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.social-icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.social-icon:hover {
  background: #96b044;
  transform: translateY(-2px) scale(1.08);
}
@media (max-width: 700px) {
  .contact-section__socials {
    justify-content: center;
    margin-bottom: 1.5rem;
  }
}

.contact-section__info--card {
  background: rgba(255,255,255,0.04);
  border-radius: 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-width: 270px;
  max-width: 400px;
}

.contact-section__details > div {
  display: flex;
  align-items: center;
  gap: 0.7em;
  margin-bottom: 0.7em;
  color: #fff;
  font-size: 1.08rem;
}
.contact-section__details img {
  width: 1.2em;
  vertical-align: middle;
  opacity: 0.85;
}

.contact-section__openingsuren {
  background: rgba(255,255,255,0.03);
  border-radius: 0;
  padding: 1rem 1.2rem;
  color: #fff;
}
.contact-section__openingsuren h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
.contact-section__openingsuren table {
  width: 100%;
  font-size: 0.98rem;
}
.contact-section__openingsuren td {
  padding: 0.1em 0.5em 0.1em 0;
}

.contact-section__extra-box {
  background: rgba(255,255,255,0.03);
  border-radius: 0;
  padding: 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 1.05rem;
  color: #fff;
}
.contact-section__extra-title {
  font-family: 'Merriweather', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.contact-section__extra-value {
  font-family: 'Merriweather', serif;
  font-size: 1.05rem;
  color: #fff;
}

.contact-section__socials {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.2rem;
  justify-content: flex-start;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: rgba(255,255,255,0.10);
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.social-icon img {
  width: 24px;
  height: 24px;
  display: block;
}
.social-icon:hover {
  background: #96b044;
  transform: translateY(-2px) scale(1.08);
}

@media (max-width: 900px) {
  .contact-section__info--card {
    max-width: 100%;
    min-width: 0;
    padding: 1.5rem 0.7rem;
    margin-bottom: 2rem;
  }
  .contact-section__socials {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .main {
    min-height: 60vh;
    padding-bottom: 2rem;
  }

  /* ===== HOME PAGINA MOBILE OPTIMALISATIES ===== */
  .main__title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .main__text {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
  }

  .main__caption {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }

  .main__buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
  }

  .main__button {
    font-size: 1rem;
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
  }

  /* Services sectie mobile */
  .services__container {
    padding: 3rem 1rem;
  }

  .services__title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }

  .services__row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .item-services {
    padding: 2rem 1rem;
  }

  .item-services__image {
    max-width: 100%;
    height: 250px;
    margin-bottom: 1.5rem;
  }

  .item-services__title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .item-services__text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }

  .item-services__button {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }

  /* News sectie mobile */
  .news {
    padding: 3rem 0;
  }

  .news__container {
    padding: 0 1rem;
  }

  .news__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .news__subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .news__facebook-embed iframe {
    height: 400px;
    width: 100%;
  }

  /* Accommodatie sectie mobile */
  .accommodatie {
    padding: 3rem 0;
  }

  .accommodatie__container {
    padding: 0 1rem;
  }

  .accommodatie__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .accommodatie__subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .accommodatie__gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .accommodatie__gallery-item {
    height: 200px;
  }

  /* ===== ACCOMMODATIE PAGINA MOBILE OPTIMALISATIES ===== */
  .page__accommodatie {
    padding: 3rem 0;
  }

  .accommodatie-page__container {
    padding: 0 1rem;
  }

  .accommodatie-page__column {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .accommodatie-page__content {
    order: 2;
  }

  .accommodatie-page__img {
    order: 1;
    max-width: 100%;
    height: 250px;
  }

  .accommodatie-page__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .accommodatie-page__text {
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 100%;
  }

  .accommodatie-page__text p {
    margin-bottom: 1rem;
  }

  .accommodatie-page__button {
    width: 100%;
    max-width: 200px;
    text-align: center;
    padding: 1rem;
  }

  .accommodatie-page__price {
    font-size: 1rem;
    padding: 0.8rem;
    margin-top: 1rem;
  }

  .accommodatie-page__openingstijden {
    margin-top: 1.5rem;
    padding: 1rem;
  }

  .accommodatie-page__openingstijden h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .accommodatie-page__openingstijden li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    padding: 0.8rem 0;
  }

  .accommodatie-page__openingstijden strong {
    min-width: auto;
    font-size: 0.9rem;
  }

  /* ===== CONTACT PAGINA MOBILE OPTIMALISATIES ===== */
  .contact-section__container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }

  .contact-section__info--card {
    max-width: 100%;
    padding: 1.5rem 1rem;
  }

  .contact-section__form {
    flex: 1 1 100%;
    min-width: 0;
    padding: 1.5rem 1rem;
  }

  .contact__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .contact-section__details > div {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .contact-section__openingsuren {
    padding: 1rem;
  }

  .contact-section__openingsuren h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .contact-section__openingsuren table {
    font-size: 0.9rem;
  }

  .contact-section__extra-box {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .contact-section__extra-title {
    font-size: 1rem;
  }

  .contact-section__extra-value {
    font-size: 0.95rem;
  }

  .contact-section__socials {
    justify-content: center;
    margin-top: 1.5rem;
  }

  /* Contact formulier mobile */
  .contact-form {
    gap: 1rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
    padding: 0.8rem;
  }

  .contact-form label {
    font-size: 1rem;
  }

  .contact-form button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
  }

  /* ===== OVER PAGINA MOBILE OPTIMALISATIES ===== */
  .over__intro-container {
    padding: 2rem 1rem;
  }

  .over__intro-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .over__intro-content {
    flex-direction: column;
    gap: 2rem;
  }

  .over__intro-image {
    max-width: 100%;
    padding: 1rem;
  }

  .over__intro-details {
    width: 100%;
    gap: 1.5rem;
  }

  .over__intro-block-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .over__intro-block p {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Team sectie mobile */
  .team-section {
    padding: 3rem 0;
  }

  .team-section__container {
    padding: 0 1rem;
  }

  .team-section__title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .team-section__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-section__img {
    width: 250px;
    height: 250px;
    margin-bottom: 1.5rem;
  }

  .team-section__name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .team-section__role {
    font-size: 1rem;
  }

  /* Geschiedenis sectie mobile */
  .history-section {
    padding: 3rem 0;
  }

  .history-section__container {
    padding: 0 1rem;
  }

  .history-section__header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .history-section__subtitle {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .history-section__title {
    font-size: 2.5rem;
  }

  .history-section__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .history-section__col {
    font-size: 1rem;
    line-height: 1.6;
  }

  .history-section__button {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    padding: 0.8rem 2rem;
  }

  /* ===== PENSION PAGINA MOBILE OPTIMALISATIES ===== */
  .pension-info__container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .pension-info__item {
    padding: 1.5rem 1rem;
  }

  .pension-info__item h2 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }

  .pension-info__item p {
    font-size: 1rem;
    line-height: 1.5;
  }

  /* Prijzen tabel mobile */
  .pension-pricing-section {
    padding: 3rem 1rem;
  }

  .pension-pricing-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .pension-pricing-section p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .pension-pricing-section table {
    font-size: 0.9rem;
    min-width: 300px;
  }

  .pension-pricing-section th,
  .pension-pricing-section td {
    padding: 0.5rem;
  }

  /* ===== ALGEMENE MOBILE OPTIMALISATIES ===== */
  .outro__container {
    padding: 3rem 1rem;
  }

  .outro__title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .outro__text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .outro__button {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    width: 100%;
    max-width: 250px;
  }

  /* Footer mobile */
  .footer__mainbar {
    padding: 2rem 0 1.5rem 0;
  }

  .footer__mainbar-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }

  .footer__mainbar-col {
    width: 100%;
    max-width: 400px;
    align-items: center;
    text-align: center;
  }

  .footer__mainbar-logo img {
    width: 150px;
  }

  .footer__mainbar-contact h3,
  .footer__mainbar-social h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .footer__mainbar-contactinfo > div {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }

  .footer__mainbar-facebook-embed {
    width: 100%;
    max-width: 300px;
  }

  .footer__mainbar-social iframe {
    width: 100% !important;
    max-width: 300px;
  }

  .footer__bottom-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 1rem;
  }

  .footer__bottom-copyright,
  .footer__bottom-kerlinga {
    font-size: 0.9rem;
  }

  /* ===== EXTRA KLEINE SCHERMEN (320px - 480px) ===== */
  @media (max-width: 480px) {
    .main__title {
      font-size: 2rem;
    }

    .main__text {
      font-size: 0.9rem;
    }

    .main__button {
      font-size: 0.9rem;
      padding: 0.8rem 1.5rem;
    }

    .title {
      font-size: 1.8rem;
    }

    .services__title,
    .news__title,
    .accommodatie__title,
    .over__intro-title,
    .team-section__title,
    .history-section__title,
    .outro__title {
      font-size: 2rem;
    }

    .item-services__title {
      font-size: 1.2rem;
    }

    .item-services__text {
      font-size: 0.9rem;
    }

    .accommodatie-page__title {
      font-size: 1.8rem;
    }

    .accommodatie-page__text {
      font-size: 0.9rem;
    }

    .contact__title {
      font-size: 1.8rem;
    }

    .contact-section__details > div {
      font-size: 0.9rem;
    }

    .over__intro-block-title {
      font-size: 1.1rem;
    }

    .over__intro-block p {
      font-size: 0.9rem;
    }

    .team-section__name {
      font-size: 1.3rem;
    }

    .team-section__role {
      font-size: 0.9rem;
    }

    .history-section__subtitle {
      font-size: 1rem;
    }

    .history-section__title {
      font-size: 2rem;
    }

    .history-section__col {
      font-size: 0.9rem;
    }

    .pension-info__container h2 {
      font-size: 1.3rem;
    }

    .pension-info__container p {
      font-size: 0.9rem;
    }

    .pension-pricing-section h2 {
      font-size: 2rem;
    }

    .pension-pricing-section p {
      font-size: 0.9rem;
    }

    .pension-pricing-section table {
      font-size: 0.8rem;
    }

    .outro__title {
      font-size: 2rem;
    }

    .outro__text {
      font-size: 1rem;
    }

    .footer__mainbar-contact h3,
    .footer__mainbar-social h3 {
      font-size: 1.1rem;
    }

    .footer__mainbar-contactinfo > div {
      font-size: 0.9rem;
    }
  }
}

/* ===== PENSION PAGINA STIJLEN ===== */
.pension-banner {
  background: url("../img/Accomodatie/banner-accomodatie.jpg") center / cover no-repeat;
}

.pension-info-section {
  background: #3c3c3c;
  color: #fff;
  padding: 4rem 0;
}

.pension-info__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2rem;
  padding: 0 1rem;
}

.pension-info__item {
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0;
}

.pension-info__item--dark {
  background: #3c3c3c;
  border: 1px solid #fff;
  color: #fff;
}

.pension-info__item--light {
  background: #96b044;
  border: 1px solid #96b044;
  color: #303a4d;
}

.pension-info__item h2 {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.pension-info__item p {
  line-height: 1.5;
  margin-bottom: 0;
}

.pension-info__link {
  margin-top: 1.5rem;
  font-weight: bold;
}

.pension-info__link a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.pension-info__link a:hover {
  opacity: 0.8;
}

.pension-info__item--dark .pension-info__link a {
  color: #fff;
}

.pension-info__item--light .pension-info__link a {
  color: #303a4d;
}

.pension-pricing-section {
  background: #222;
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.pension-pricing__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.pension-pricing__container .title {
  color: #96b044;
  margin-bottom: 2rem;
}

.pension-pricing__container p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.pension-pricing__table-wrapper {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.pension-pricing__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  color: #222;
  margin: 0 auto;
  min-width: 350px;
  border-radius: 0;
}

.pension-pricing__table thead tr {
  background: #96b044;
  color: #303a4d;
}

.pension-pricing__table th {
  padding: 1rem;
  font-size: 1.1rem;
  text-align: left;
  font-weight: bold;
}

.pension-pricing__table th:first-child {
  text-align: left;
}

.pension-pricing__table th:not(:first-child) {
  text-align: center;
}

.pension-pricing__table td {
  padding: 0.7rem;
  text-align: left;
  border-bottom: 1px solid #e1e4eb;
}

.pension-pricing__table td:not(:first-child) {
  text-align: center;
}

.pension-pricing__table tbody tr:nth-child(even) {
  background: #f6f6f6;
}

.pension-pricing__price-row {
  background: #fff !important;
  font-weight: bold;
}

.pension-pricing__price-row td {
  font-weight: bold;
  font-size: 1.1rem;
}

.pension-pricing__note-row {
  background: #e6efc7 !important;
  font-weight: bold;
}

.pension-pricing__note-row td {
  font-weight: bold;
  padding: 0.7rem;
  text-align: left;
}

.pension-pricing__note {
  color: #fff;
  font-size: 0.95rem;
  margin-top: 1.5rem;
}

/* ===== CONTACT PAGINA STIJLEN ===== */
.contact-section.contact__custom-section {
  background: rgba(60,60,60,1);
  color: #fff;
  padding: 4rem 0;
}

.contact-section__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 1rem;
}

.contact-section__form {
  flex: 1 1 380px;
  min-width: 260px;
  background: rgba(255,255,255,0.04);
  padding: 2.5rem 2rem;
  border-radius: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  align-self: flex-start;
}

.contact-section__form .contact__title {
  color: #fff;
  margin-bottom: 2rem;
}

.contact-success-message {
  background: #96b044;
  color: #fff;
  padding: 1.2rem;
  margin-bottom: 1.2rem;
  text-align: center;
  font-size: 1.1rem;
  font-family: 'Merriweather', serif;
  border-radius: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form label {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.2em;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7em;
  border: none;
  border-radius: 0;
  margin-top: 0.2em;
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255,255,255,0.9);
  color: #333;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 2px #96b044;
}

.contact-form button {
  background: #96b044;
  color: #3c3c3c;
  border: none;
  margin-top: 0.5em;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 0;
}

.contact-form button:hover {
  background: #8a9f3d;
}

@media (max-width: 900px) {
  .pension-info__container {
    grid-template-columns: 1fr !important;
    grid-template-rows: none !important;
    gap: 1.5rem;
  }
  .pension-info__item {
    padding: 1.2rem 0.7rem;
  }
}

/* Mobile menu styling - alleen op kleine schermen */
@media (max-width: 767px) {
  .icon-menu {
    display: block;
  }
  .menu__body {
    background-color: rgba(60,60,60,0.98);
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    padding: 9.375rem 0.938rem 1.875rem 0.938rem;
    overflow: auto;
    flex-direction: column;
    row-gap: 5rem;
    z-index: 1000;
    transition: left 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    min-height: 5.75rem;
    background-color: rgba(60,60,60,0.98);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    z-index: 1001;
    transition: left 0.3s ease;
  }
  .menu-open .menu__body {
    left: 0;
  }
  .menu-open .menu__body::before {
    left: 0;
  }
  .menu__list {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    height: auto;
    width: 100%;
    max-width: 400px;
  }
  .menu__item {
    text-align: center;
    width: 100%;
  }
  .menu__item:not(:last-child) {
    margin-bottom: 1.563rem;
  }
  .menu__link {
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 1rem 0;
    width: 100%;
  }
  .menu__link:hover,
  .menu__link:focus {
    color: #96b044 !important;
  }
}

/* Desktop menu styling (boven 767px) */
@media (min-width: 768px) {
  .icon-menu {
    display: none !important;
  }
  .menu__body {
    display: flex;
    position: static;
    height: auto;
    width: auto;
    padding: 0;
    background: none;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    transition: none;
  }
  .menu__list {
    flex-direction: row;
    gap: 2.5rem;
    align-items: center;
    justify-content: flex-end;
    max-width: none;
    width: auto;
    height: auto;
  }
  .menu__item {
    text-align: left;
    width: auto;
    margin-bottom: 0 !important;
  }
  .menu__link {
    font-size: 1rem;
    display: inline-block;
    padding: 0.5rem 0;
    width: auto;
  }
}

