@import url("reset.css");

/* Google Fonts worden nu geladen via HTML links voor betere performance */
/* Crimson Text: weights 400, 600 voor headings */
/* Inter: weights 400, 500 voor body, buttons en navigatie */

/* Cache buster v3 - 2025-11-22-17:00 */
/* Updated: 2025-01-27 - Spacing fix for divider balance */
/* ************COLOR VARIABLES************ */
:root {
  --color-primary: #2c5f7e;      /* Zeeblauw */
  --color-accent: #d4a574;       /* Zandbeige */
  --color-text: #303a4d;         /* Tekst kleur - origineel */
  --color-bg-main: #f8f9fa;      /* Off-white */
  --color-bg-alt: #e8f2f7;       /* Licht zeeblauw */
  --color-border: rgba(44, 95, 126, 0.15);  /* Subtiele border */
  --color-white: #ffffff;        /* Wit voor header/footer */
}

/* ************COMMON************ */

/* Uniforme content wrapper voor consistente breedte en uitlijning */
.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 768px) {
  .content-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.logo {
  font-weight: 700;
  font-size: 2.25rem;
}

/* Body tekst, buttons en navigatie: Inter */
body {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-bg-main);
}

/* Headings: Crimson Text */
h1, h2, h3, h4, h5, h6,
.main__title,
.main__caption,
.title,
.about__title,
.about-page__title,
.services-page__title,
.outro__title,
.contact__title {
  font-family: "Crimson Text", serif;
  font-weight: 600;
}

/* Headings met weight 400 (indien nodig) */
h1[class*="light"],
h2[class*="light"],
h3[class*="light"] {
  font-weight: 400;
}

/* Buttons en navigatie: Inter */
button,
.button,
.main__button,
.about__button,
.outro__button,
.actions-header__button,
.menu__link,
.menu__item,
nav,
.logo {
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

[class*="__container"] {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #fff;
  background-color: var(--color-primary);
  /* font-weight en font-family al gedefinieerd in algemene button definitie (500) */
}

.button:hover,
.about__button:hover,
.outro__button:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.main__button:hover {
  background-color: var(--color-accent); /* Zelfde als menubalk hover */
  border-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.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: var(--color-bg-main); /* Zelfde kleur als middenstuk */
  z-index: 1000;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.75rem;
  flex-wrap: wrap;
  max-width: 74.624rem;
}

.header__logo {
  position: relative;
  z-index: 2;
  background: transparent;
}

.header__logo img {
  height: 50px;
  width: auto;
  display: block;
  background: transparent;
}

.header__navigation {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.menu__body {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu__link {
  font-weight: 600;
  position: relative;
}

.menu__link:hover {
  color: var(--color-accent);
}

.actions-header {
  display: flex;
  align-items: center;
  gap: 0.624rem;
}

.icon-menu {
  display: none;
}

.actions-header__button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--color-primary);
  border-radius: 30px;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  text-decoration: none; /* Geen underline */
  color: var(--color-primary); /* Tekstkleur voor button */
}

.actions-header__button:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

/* RSVP button in menu item - zorg dat het niet wordt beïnvloed door menu link styling */
.menu__item .actions-header__button {
  color: var(--color-primary);
}

.menu__item .actions-header__button:hover {
  color: var(--color-white);
}

/* ****************PAGES**************** */
.page__main {
  padding-top: 0;
  padding-bottom: 0;
}

/* *****************HOME**************** */

/* Hero secties - uniforme hoogte */
.main,
.main_pages,
.main_about,
.main_services,
.main_contact {
  min-height: 500px;
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

/* Donkere overlay voor betere tekstcontrast op hero secties */
.main::before,
.main_pages::before,
.main_about::before,
.main_services::before,
.main_contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3); /* Verbeterd contrast voor betere leesbaarheid */
  z-index: 1;
  pointer-events: none;
}

/* Achtergrondafbeeldingen per pagina */
/* Grayscale filter alleen op achtergrondafbeelding, niet op tekst */
.main::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/Foto/Huisje.avif");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  z-index: 0;
  pointer-events: none;
}

/* Alleen de homepage hero iets groter */
.page__main.main:not(.main_pages) {
  min-height: 600px;
  max-height: 600px;
  margin-bottom: 80px; /* Witruimte tussen hero en "Het gaat gebeuren!" sectie (desktop) */
}

/* Witruimte tussen hero en content op andere pagina's */
.main_pages {
  margin-bottom: 60px; /* Witruimte tussen hero en eerste content-element (desktop) */
}

.main__container,
.main__container_pages {
  padding-top: 60px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  min-height: 100%;
  gap: 1.75rem;
  position: relative;
  z-index: 2;
}

.main__caption {
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 600; /* Verhoogd naar 600 voor betere hiërarchie */
  font-size: 18px; /* Vergroot van 14px naar 18px voor betere verhouding */
  letter-spacing: 3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Verbeterde text-shadow voor betere leesbaarheid */
  color: #fff; /* Originele witte kleur */
  /* font-family: "Crimson Text" al gedefinieerd in algemene headings definitie */
}

.main__title {
  font-size: 5.5rem;
  font-weight: 600; /* Verhoogd naar 600 voor betere hiërarchie (was 700) */
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Verbeterde text-shadow voor betere leesbaarheid */
  color: #fff; /* Originele witte kleur */
  /* font-family: "Crimson Text" al gedefinieerd in algemene headings definitie */
}

.main__text {
  margin-bottom: 3rem;
  max-width: 600px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-size: 18px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Verbeterde text-shadow voor betere leesbaarheid */
  color: #fff; /* Originele witte kleur */
}

.main__text_pages {
  max-width: 37.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Verbeterde text-shadow voor betere leesbaarheid */
  color: #fff;
}

.main__button {
  font-weight: 600;
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid #ffffff; /* Witte rand */
  border-radius: 50px;
  transition: all 0.4s ease;
  color: #ffffff;
  background: transparent; /* Transparante achtergrond */
  letter-spacing: 1.5px;
  font-size: 15px;
  line-height: 110%;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.outro_home {
  background: url("../img/Foto/WhatsApp Image 2025-11-09 at 20.01.58.jpeg") center / cover no-repeat;
}

/* ************ABOUT**************** */

.main_about {
  background-image: url("../img/Foto/WhatsApp Image 2025-11-09 at 20.03.29.jpeg");
}


.about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0; /* Padding-top verwijderd omdat hero al margin-bottom heeft */
  padding-bottom: 0; /* Verwijder bottom padding, gebruik margin-bottom voor gelijke ruimte */
  margin-bottom: 60px; /* Ruimte tussen about sectie en scheidingslijn */
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.about__image {
  position: relative;
  max-width: 552px;
  height: 614px;
}

.about__image img {
  border-radius: 0; /* Rechte hoeken voor consistent, strak design */
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__title {
  margin-bottom: 1.5rem;
}

.about__text {
  max-width: 30rem;
  letter-spacing: 0.02em;
  line-height: 150%;
  margin-bottom: 3.5rem;
}

.about__text p:not(:last-child) {
  margin-bottom: 2.5rem;
}

.about_alt {
  background-color: var(--color-bg-alt);
}

.about__container_reverse {
  flex-direction: row-reverse;
}

.outro_about {
  background: url("../img/Foto/WhatsApp Image 2025-11-09 at 20.03.29.jpeg") center / cover no-repeat;
}

/* **************SERVICES**************** */

.main_services {
  background-image: url("../img/Foto/WhatsApp Image 2025-11-09 at 20.01.58.jpeg");
}

.services {
  background-color: var(--color-bg-alt);
}

.services__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.services__title {
  text-align: center;
  margin-bottom: 5rem;
}

.services__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.item-services {
  display: flex;
  flex-direction: column;
  align-items: start;
  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;
  border-radius: 0; /* Rechte hoeken voor consistent, strak design */
}

.item-services__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.item-services__text {
  max-width: 21.5rem;
  line-height: 150%;
  margin-bottom: 2rem;
  flex-grow: 1;
  letter-spacing: 0.02em;
}

.item-services__button {
  background-color: inherit;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.outro_services {
  position: relative; /* Nodig voor ::before en ::after pseudo-elementen */
  background: none; /* Verwijder achtergrondafbeelding, komt in ::after */
  margin-top: 0 !important; /* Geen margin-top, begint direct na 60px ruimte van content erboven */
}

/* Donkere overlay voor betere tekstcontrast op outro_services */
.outro_services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
  pointer-events: none;
}

/* Grayscale achtergrondafbeelding voor outro_services */
.outro_services::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/Foto/Strand.jpeg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  z-index: 0;
  pointer-events: none;
}

/* ************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;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 2; /* Zorg dat content boven overlay en achtergrond komt */
}

/* Subtiele lijn tussen about sectie en outro op about pagina */
.about-page__item:last-child {
  padding-bottom: 60px; /* Standaard spacing tussen secties */
  margin-bottom: 60px; /* Standaard spacing tussen "Diner & Feest" en "Hoe komen we daar?" */
  border-bottom: 1px solid rgba(44, 95, 126, 0.4);
}

.outro_about {
  padding-top: 0 !important; /* Geen extra ruimte boven de outro */
  margin-top: 0 !important; /* Geen margin-top */
}

/* DISABLED: .outro_about .outro__container padding-top: 8.75rem - nu 30px onderaan style.css */

.outro__title {
  margin-bottom: 2.5rem;
  font-size: 3.5rem;
  font-weight: 600;
}

/* Zorg dat "Hoe komen we daar?" even groot is als andere about-page headers */
.outro_about .outro__title {
  font-size: 3.5rem; /* Zelfde als .about-page__title */
  font-weight: 600;
  margin-bottom: 24px; /* Zelfde als .about-page__title */
}

/* Zorg dat "Hoe komen we daar?" tekst exact gelijk is aan "Diner & Feest" tekst */
.outro_about .outro__text {
  font-size: 18px !important; /* Exact gelijk aan .about-page__text */
  line-height: 150% !important; /* Exact gelijk aan .about-page__text */
  letter-spacing: 0.02em !important; /* Exact gelijk aan .about-page__text */
  font-family: "Inter", sans-serif !important; /* Zelfde als body text */
  font-weight: 400 !important; /* Zelfde als body text */
  max-width: 480px; /* Zelfde als .about-page__text */
  margin-bottom: 56px; /* Zelfde als .about-page__text */
}

/* Text-shadow voor outro_services tekst (net als hero) */
.outro_services .outro__title {
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.7);
  color: #fff;
}

.outro_services .outro__text {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  color: #fff;
}

.outro__text {
  max-width: 700px;
  line-height: 150%; /* Gelijk aan .about-page__text */
  letter-spacing: 0.02em;
  font-size: 18px; /* Gelijk aan .about-page__text */
  margin: 0 auto;
}

.outro__text p:not(:last-child) {
  margin-bottom: 1.5rem;
}

/* Zorg dat paragraaf spacing in outro_about gelijk is aan about-page__text */
.outro_about .outro__text p:not(:last-child) {
  margin-bottom: 20px; /* Zelfde als .about-page__text p:not(:last-child) */
}

.outro__button {
  padding: 1.25rem 3rem;
}

@media (max-width: 768px) {
  /* 3. Witruimte tussen hero en content */
  .main_pages {
    margin-bottom: 40px !important;
  }

  .page__main.main:not(.main_pages) {
    margin-bottom: 40px !important;
  }
  
  .outro__container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .about__container {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 40px; /* Proportioneel kleinere ruimte op mobiel */
  }
  
  .footer {
    margin-top: 40px !important; /* Ruimte boven de scheidingslijn op mobiel */
    padding-top: 20px !important; /* Minder verticale ruimte op mobiel */
    padding-bottom: 20px !important;
  }
  
  /* Reset footer spacing voor services en contact pagina's op mobiel */
  .footer-no-spacing {
    margin-top: 0 !important; /* Geen margin omdat afbeelding direct boven footer komt */
    padding-top: 20px !important; /* Minder verticale ruimte op mobiel */
    padding-bottom: 20px !important;
    border-top: none !important; /* Geen scheidingslijn */
  }
  
  /* Margin-bottom voor content secties boven afbeeldingen op mobiel */
  .services-page__container {
    margin-bottom: 40px !important; /* Ruimte zodat afbeelding begint waar scheidingslijn zou zijn (mobiel: 40px) */
  }
  
  .contact__container {
    margin-bottom: 40px !important; /* Ruimte zodat map begint waar scheidingslijn zou zijn (mobiel: 40px) */
  }



  /* About sectie - foto en tekst stapelen */
  .about__container {
    flex-direction: column;
    gap: 30px;
  }

  .about__image {
    max-width: 100%;
    height: 350px;
  }

  .about__text {
    max-width: 100%;
  }

  /* Footer - te grote elementen */
  /* Footer verticaal gecentreerd op mobiel */
  .footer__container {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 1rem 15px !important;
  }

  /* Logo bovenaan */
  .footer__logo {
    order: 1 !important;
    margin: 0 !important;
  }

  .footer__logo img {
    height: 28px !important;
  }

  /* Privacy Policy in het midden */
  .footer__policy {
    order: 2 !important;
    font-size: 11px !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    text-align: center !important;
  }

  /* Copyright onderaan, kleiner */
  .footer__copyright {
    order: 3 !important;
    font-size: 9px !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    text-align: center !important;
    color: #999 !important;
  }

  /* Force horizontale menu layout op mobiel */
  .header__container {
    min-height: 4rem;
    padding: 0 10px;
  }

  .header__logo img {
    height: 35px;
  }

  .menu__body {
    display: flex !important;
    flex-direction: row !important;
    gap: 0.75rem;
    align-items: center;
  }

  .menu__list {
    display: flex !important;
    flex-direction: row !important;
    gap: 0.75rem;
    font-size: 14px;
  }

  .menu__link {
    white-space: nowrap;
    font-size: 14px;
  }

  .actions-header__button {
    padding: 0.5rem 1rem !important;
    font-size: 14px !important;
    white-space: nowrap;
  }

  /* Verberg hamburger menu icon */
  .icon-menu {
    display: none !important;
  }

  /* Hero sectie - datum en tekst te groot */
  /* Hero titles */
  .main__title,
  .main_pages .main__title {
    font-size: 3rem !important;
    font-weight: 600 !important;
    line-height: 1.1 !important;
  }

  /* Tekstgroottes compact houden */
  .main__caption {
    font-size: 12px !important;
    letter-spacing: 2px;
    margin-bottom: 8px !important;
  }

  .main__text {
    font-size: 16px !important;
    padding: 0 10px;
  }

  .main__button {
    padding: 12px 30px !important;
    font-size: 14px !important;
  }

  /* Hero container - beter gecentreerd */
  .main__container,
  .main__container_pages {
    padding-left: 15px !important;
    padding-right: 15px !important;
    gap: 1.25rem;
  }

  /* 2. RSVP als gewone link in menu (geen button styling) */
  .header__navigation .actions-header__button {
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    color: var(--color-text) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 0 !important;
  }

  .header__navigation .actions-header__button:hover {
    color: var(--color-accent) !important;
    background: transparent !important;
    transform: none !important;
    box-shadow: none !important;
  }

  /* 4. Koppen op De Bruiloft pagina - zelfde witruimte als Het Eiland */
  .about-page__item:first-child .about-page__title {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .about-page__container {
    padding-top: 0 !important;
  }

  /* 5. "Ceremonie" kop - zelfde afstand tot hero als andere pagina's */
  /* Fonts consistent maken - alle koppen op mobiel */
  .about-page__title,
  .outro__title {
    font-size: 2rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    margin-bottom: 24px !important;
  }
}

/* Desktop specifiek - force spacing */
@media (min-width: 769px) {
  .about__container {
    margin-bottom: 60px !important;
  }
  
  .footer {
    margin-top: 60px !important;
    padding-top: 60px !important;
  }
  
  /* Reset footer spacing voor services en contact pagina's op desktop */
  .footer-no-spacing {
    margin-top: 0 !important; /* Geen margin omdat afbeelding direct boven footer komt */
    padding-top: 60px !important; /* Zelfde padding als andere pagina's (desktop: 60px) */
    border-top: none !important; /* Geen scheidingslijn */
  }
  
  /* Margin-bottom voor content secties boven afbeeldingen op desktop */
  .services-page__container {
    margin-bottom: 60px !important; /* Ruimte zodat afbeelding begint waar scheidingslijn zou zijn (desktop: 60px) */
  }
  
  .contact__container {
    margin-bottom: 60px !important; /* Ruimte zodat map begint waar scheidingslijn zou zijn (desktop: 60px) */
  }
  
  .about-page__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .contact__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Zorg dat "Hoe komen we daar?" tekst exact gelijk is aan "Diner & Feest" tekst op mobiel */
  .outro_about .outro__text {
    font-size: 16px !important; /* Exact gelijk aan .about-page__text op mobiel */
    line-height: 150% !important;
    max-width: 100% !important; /* Zelfde als .about-page__text op mobiel */
  }

  .outro__text {
    max-width: 100%;
    font-size: 16px; /* Gelijk aan .about-page__text op mobiel */
  }

  .main__container,
  .main__container_pages {
    padding-top: 40px;
  }

  /* Services page responsive */
  .services-page__container {
    padding-top: 0; /* Padding-top verwijderd omdat hero al margin-bottom heeft */
    padding-bottom: 60px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .services-page__item {
    margin-bottom: 40px; /* Standaard spacing tussen secties (mobiel) */
  }

  .services-page__title {
    font-size: 2.25rem;
    margin-bottom: 20px;
  }

  .services-page__text {
    font-size: 1rem;
  }

  .services-page__text p:not(:last-child) {
    margin-bottom: 1.5rem;
  }

  .services-page__text strong {
    margin-top: 1rem;
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
  }

  .services-page__img {
    height: 300px;
  }

  .services-page__separator {
    margin: 40px 0; /* Standaard spacing tussen secties (mobiel) */
  }
}

@media (max-width: 480px) {
  .services-page__title {
    font-size: 1.875rem;
  }

  .services-page__text {
    font-size: 0.95rem;
  }

  .services-page__img {
    height: 250px;
  }
}

/* ****************FOOTER**************** */

.footer {
  line-height: 150%;
  border-top: 1px solid #e5e5e5; /* Horizontale scheidingslijn */
  background: var(--color-bg-main); /* Zelfde kleur als middenstuk */
  margin-top: 60px; /* Ruimte boven de scheidingslijn */
  padding-top: 60px; /* Ruimte onder de scheidingslijn */
  width: 100%; /* Volledige breedte van de viewport */
}

/* Reset footer spacing voor services en contact pagina's - zelfde hoogte maar zonder lijn */
.footer-no-spacing {
  margin-top: 0 !important; /* Geen margin omdat afbeelding direct boven footer komt */
  padding-top: 60px !important; /* Zelfde padding als andere pagina's */
  border-top: none !important; /* Geen scheidingslijn */
}

.footer__container {
  padding-top: 0 !important; /* Verwijder top padding */
  margin-top: 0 !important; /* Verwijder margin-top */
  padding-bottom: 3.25rem;
  max-width: 74.624rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* Verwijder alle margin-top en padding-top van footer elementen */
.footer h2,
.footer__title,
.footer h3,
.footer .section__title {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Zorg dat eerste element in footer geen extra ruimte heeft */
.footer > *:first-child,
.footer__container > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.footer__policy {
  font-weight: 600;
  letter-spacing: 0.02em;
  justify-self: start;
  color: #666; /* Lichtere tekst voor subtielere footer */
  font-size: 14px; /* Desktop font-size */
}

.footer__logo {
  justify-self: center;
  background: transparent;
}

.footer__logo img {
  height: 40px;
  width: auto;
  display: block;
  background: transparent;
}

.footer__copyright {
  font-weight: 600;
  letter-spacing: 0.02em;
  justify-self: end;
  color: #666; /* Lichtere tekst voor subtielere footer */
  font-size: 14px; /* Desktop font-size */
}

/* ****************ABOUT PAGE**************** */
/* (verwijderd duplicaat; .main__text_pages verplaatst naar HOME sectie) */

/* ****************SERVICES PAGE - GEOPTIMALISEERDE LAYOUT**************** */
.services-page__container {
  padding-top: 0; /* Padding-top verwijderd omdat hero al margin-bottom heeft */
  padding-bottom: 100px;
  margin-bottom: 60px; /* Ruimte zodat outro_services (afbeelding) begint waar scheidingslijn zou zijn */
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.services-page__item {
  margin-bottom: 60px; /* Standaard spacing tussen secties (desktop) */
}

.services-page__column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.services-page__title {
  margin-bottom: 24px;
  text-align: left;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
}

.services-page__text {
  max-width: 100%;
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

/* CRITICAL: Paragraaf spacing zoals andere pagina's */
.services-page__text p {
  margin-bottom: 0;
}

.services-page__text p:not(:last-child) {
  margin-bottom: 1.75rem;
}

/* Strong/bold headers extra spacing */
.services-page__text strong {
  font-weight: 600;
  display: block;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  color: var(--color-text);
}

.services-page__text p:first-child strong:first-child {
  margin-top: 0;
}

/* Links styling - duidelijk zichtbaar */
.services-page__text a {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: all 0.2s;
}

.services-page__text a:hover,
.about-page__text a:hover,
.outro__text a:hover,
.about__text a:hover {
  color: var(--color-accent);
  text-decoration-thickness: 2px;
}

/* Em (italic) styling */
.services-page__text em {
  font-style: italic;
  color: #5a6370;
}

/* Separator tussen service-secties */
.services-page__separator {
  border-bottom: 2px solid var(--color-border);
  margin: 60px 0; /* Standaard spacing tussen secties (desktop) */
}

/* ****************ABOUT PAGE - 2 KOLOMMEN LAYOUT**************** */
.about-page__container {
  padding-top: 0; /* Padding-top verwijderd omdat hero al margin-bottom heeft */
  padding-bottom: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.about-page__item {
  margin-bottom: 60px; /* Standaard spacing tussen secties (desktop) */
}

.about-page__item:not(:last-child) {
  padding-bottom: 60px; /* Standaard spacing tussen secties (desktop) */
  margin-bottom: 60px; /* Standaard spacing tussen secties (desktop) */
  border-bottom: 1px solid rgba(44, 95, 126, 0.4);
}

.about-page__column {
  display: flex;
  align-items: center;
  gap: 97px;
}

.about-page__content {
  flex: 1;
}

.about-page__title {
  margin-bottom: 24px;
  font-size: 3.5rem;
  font-weight: 600;
}

.about-page__text {
  margin-bottom: 56px;
  max-width: 480px;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.about-page__text p:not(:last-child) {
  margin-bottom: 20px;
}

.about-page__img {
  flex: 0 0 552px;
  max-width: 552px;
  height: 614px;
}

.about-page__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0; /* Rechte hoeken voor consistent, strak design */
}

/* Reverse layout voor afwisseling (afbeelding links, tekst rechts) */
.about-page__column--reverse {
  flex-direction: row-reverse;
}

/* Mobiel - onder elkaar */
@media (max-width: 768px) {
  .about-page__container {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .about-page__item {
    margin-bottom: 60px;
  }

  .about-page__item:not(:last-child) {
    padding-bottom: 40px; /* Standaard spacing tussen secties (mobiel) */
    margin-bottom: 40px; /* Standaard spacing tussen secties (mobiel) */
  }
  
  .about-page__item:last-child {
    padding-bottom: 40px; /* Standaard spacing tussen secties (mobiel) */
    margin-bottom: 40px; /* Standaard spacing tussen "Diner & Feest" en "Hoe komen we daar?" (mobiel) */
  }

  .about-page__column {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .about-page__column--reverse {
    flex-direction: column;
  }

  .about-page__title {
    font-size: 2.5rem;
  }

  .about-page__text {
    font-size: 16px;
    max-width: 100%;
  }

  .about-page__img {
    flex: 0 0 auto;
    max-width: 100%;
    height: 400px;
  }
}

/* Specifieke layout voor 'Hoe kom je er?' blokjes */
.services-layout__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 3rem;
  row-gap: 2.5rem;
}

.services-layout__item--full {
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  .services-layout__grid {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }
}

/* Afbeeldingen */
.services-page__img {
  width: 100%;
  max-width: 100%;
  height: 450px;
  margin: 0 auto;
  border-radius: 0; /* Rechte hoeken voor consistent, strak design */
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.services-page__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ****************CONTACT PAGE****************/

.main_contact {
  background-image: url("../img/Foto/WhatsApp Image 2025-11-09 at 20.03.29.jpeg");
}

/* Page map section - begint direct na 60px ruimte van content erboven */
.page__map {
  margin-top: 0 !important; /* Geen margin-top, begint direct na 60px ruimte van contact container */
}

.contact__container {
  display: flex;
  justify-content: center;
  padding-top: 0; /* Padding-top verwijderd omdat hero al margin-bottom heeft */
  padding-bottom: 140px;
  margin-bottom: 60px; /* Ruimte zodat page__map begint waar scheidingslijn zou zijn */
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.contact__info {
  flex: 1;
  max-width: 800px;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  overflow: hidden;
}

.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 var(--color-bg-alt);
}

.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__text {
  max-width: 545px;
  font-size: 18px;
  line-height: 150%;
}

.contact__text p:not(:last-child) {
  margin-bottom: 15px;
}

iframe {
  width: 100vw;
  height: 482px;
  filter: grayscale(100%);
}

/* ****************GOOGLE FORM**************** */
/* Google Forms iframe optimalisatie */
.contact__info iframe,
iframe[src*="google.com/forms"] {
  width: 100% !important;
  min-height: 1100px !important;
  max-height: 1200px !important;
  height: auto !important;
  border: none !important;
  border-radius: 8px;
  background: #fff;
  overflow: hidden !important;
  display: block;
  margin-top: 0;
  margin-bottom: 0 !important;
}


@media (max-width: 768px) {
  .contact__container {
    flex-direction: column;
    padding-top: 0; /* Padding-top verwijderd omdat hero al margin-bottom heeft */
    padding-bottom: 80px;
  }

  .contact__info {
    max-width: 100%;
  }

  /* Mobiele aanpassing voor Google Forms iframe */
  .contact__info iframe,
  iframe[src*="google.com/forms"] {
    min-height: 1300px !important;
    max-height: 1400px !important;
  }

  .header__logo img {
    height: 40px;
  }

  .footer__logo img {
    height: 32px;
  }
}

html {
  scroll-behavior: smooth;
}

/* **************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 var(--color-bg-alt);
  border-radius: 8px;
}

.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 var(--color-bg-alt);
  border-radius: 8px;
}

.pricing__item {
  padding: 40px;
  padding-bottom: 48px;
}

.item-pricing__info {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-bg-alt);
  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: var(--color-primary);
  border-radius: 64px;
}

.team {
  background-color: var(--color-bg-alt);
}

.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: 8px;
  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 var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 8px;
}

.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: 8px 8px 0px 0px;
}

.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 var(--color-bg-alt);
  border-radius: 0px 0px 8px 8px;
  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: var(--color-primary);
  border-radius: 100px;
  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: var(--color-primary);
  font-weight: 600;
  letter-spacing: 2%;
  border: 2px solid var(--color-primary);
  border-radius: 64px;
}

/* ****************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;
  }
}

@media (min-width: 47.999rem) {
  .menu__list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

@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;
  }


  .services-page__title {
    font-size: 29px;
  }

  .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: 61.936rem) {
  .footer__container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    row-gap: 0.938rem;
  }

  .logo {
    font-size: 2rem;
  }
}

@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;
  }
}

/* === DEFINITIEVE SPACING FIX - "Hoe komen we daar?" === */

/* Outro about sectie: geen extra top spacing - spacing komt van laatste item margin-bottom */
.outro_about {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Outro container: geen extra top spacing - spacing komt al van laatste item margin-bottom (60px) */
.outro_about .outro__container {
  padding-top: 0 !important; /* Geen extra padding-top - spacing komt van laatste item margin-bottom */
  margin-top: 0 !important;
}

/* Outro title: geen extra top spacing */
.outro_about .outro__title,
.outro__title {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Eerste element in outro container: geen spacing */
.outro_about .outro__container > *:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Mobiel: geen extra top spacing - spacing komt van laatste item margin-bottom (40px) */
@media (max-width: 768px) {
  .outro_about .outro__container {
    padding-top: 0 !important; /* Geen extra padding-top - spacing komt van laatste item margin-bottom */
  }
}

/* === EINDE FIX === */