/*
  =====================
  CSS RESET & BASE STYLES
  =====================
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  min-height: 100%;
  background: #F7FAFC;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F7FAFC;
  color: #222222;
  font-size: 1rem;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #175D7B;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}
a:hover, a:focus {
  color: #F5B047;
  outline: none;
}

img, svg {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}

::selection {
  background: #E8F0F8;
}

/*========================
  TYPOGRAPHY
=========================*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #175D7B;
  font-weight: 700;
  line-height: 1.2;
}
h1 {
  font-size: 2rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 16px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 12px;
}
p, ul, ol {
  margin-bottom: 16px;
  color: #222222;
}
strong {
  font-weight: 600;
  color: #175D7B;
}
small {
  font-size: 0.9em;
  color: #666;
}
address {
  font-style: normal;
  color: #222222;
  margin-bottom: 12px;
}

/*========================
  UTILITY CONTAINERS
=========================*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/*========================
  HEADER & NAVIGATION
=========================*/
header {
  background: #fff;
  border-bottom: 2px solid #E8F0F8;
  position: sticky;
  top: 0;
  z-index: 60;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 18px 0 10px 0;
}
.main-nav a {
  padding: 8px 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #175D7B;
  border-radius: 6px;
  transition: background 0.15s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E8F0F8;
  color: #175D7B;
}
.main-nav img {
  margin-right: 12px;
  width: 120px;
  height: auto;
}

.cta-btn {
  background: #175D7B;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 24px;
  border: none;
  outline: none;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(23,93,123,0.07);
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  display: inline-block;
  font-size: 1rem;
}
.cta-btn:hover, .cta-btn:focus {
  background: #12455d;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(23,93,123,0.13);
}

/* Hamburger menu button */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 22px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #175D7B;
  cursor: pointer;
  z-index: 100;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  color: #F5B047;
  outline: none;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 90vw;
  height: 100vh;
  background: #fff;
  box-shadow: 6px 0 32px rgba(23,93,123,0.12);
  transform: translateX(-120%);
  transition: transform 0.35s cubic-bezier(.77,0,.175,1);
  z-index: 120;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  padding: 18px 18px 8px 0;
  font-size: 2rem;
  color: #175D7B;
  cursor: pointer;
  margin-right: 8px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  gap: 8px;
  padding: 28px 24px 0 24px;
}
.mobile-nav a {
  color: #175D7B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  padding: 14px 8px;
  border-radius: 5px;
  font-weight: 500;
  transition: background 0.18s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E8F0F8;
  color: #F5B047;
}

/* Background overlay for mobile menu (optional, can be handled via js when menu is open) */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(23,93,123,0.16);
  z-index: 110;
}
.menu-overlay.open {
  display: block;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 14px;
  }
  .main-nav a {
    font-size: 0.97rem;
    padding: 8px 10px;
  }
}

@media (max-width: 850px) {
  .main-nav a:not(:first-child):not(.cta-btn) {
    font-size: 0.96rem;
  }
}

@media (max-width: 780px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}


/*========================
  SECTIONS & GENERAL STRUCTURE
=========================*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.hero {
  background: #E8F0F8;
  padding: 54px 0 40px 0;
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 260px;
}
.hero .content-wrapper {
  align-items: flex-start;
  padding: 0;
  gap: 18px;
}
@media (max-width: 700px) {
  .hero {
    padding: 38px 0 28px 0;
  }
  .hero .container {
    min-height: 180px;
  }
  .section {
    padding: 28px 8px;
  }
}

.features, .services, .testimonials, .about, .about-philosophy, .why-binnenland, .team, .testimonial-highlight, .tours-overview, .benefits, .articles-list, .contact-details, .legal-cookie, .legal-privacy, .legal-gdpr, .legal-terms, .thank-you {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 5px 24px rgba(23,93,123,0.11);
  margin-bottom: 60px;
  padding: 40px 0;
}
.features.insider {
  background: #E8F0F8;
}

/* Content grid and flex layouts */
.card-container, .feature-grid, .team-list, .benefit-grid, .services-list, .insider-tips, .tour-highlights, .benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card, .feature-item {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(23,93,123,0.09);
  padding: 28px 24px;
  transition: box-shadow 0.18s;
}
.card:hover, .feature-item:hover {
  box-shadow: 0 4px 18px rgba(23, 93, 123,0.17);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-wrapper, .content-grid, .feature-grid, .team-list, .services-list, .benefit-grid {
    flex-direction: column;
    gap: 16px;
  }
}

.feature-grid > li, .team-list > li, .benefit-grid > li, .services-list > li, .insider-tips > li, .benefits-list>li, .tour-highlights>li {
  background: #E8F0F8;
  border-radius: 10px;
  padding: 22px 20px 18px 20px;
  min-width: 200px;
  flex: 1 1 210px;
  box-shadow: 0 2px 7px rgba(23, 93, 123, 0.08);
  transition: box-shadow 0.2s;
}
.feature-grid > li:hover, .benefit-grid > li:hover, .services-list > li:hover, .team-list > li:hover {
  box-shadow: 0 4px 18px rgba(23, 93, 123,0.13);
}
.feature-grid img {
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
}

/****************
  Testimonials & Review Cards
*****************/
.testimonials .content-wrapper,
.testimonials .container > .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #F4F8FB;
  padding: 20px 28px;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(23, 93, 123, 0.07);
  margin-bottom: 20px;
  max-width: 380px;
  min-width: 220px;
  flex: 1 1 220px;
}
.testimonial-card p {
  color: #175D7B !important;
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-author {
  font-weight: 400;
  color: #222222;
  font-size: 1rem;
}
.ratings-overview {
  margin-top: 10px;
  color: #175D7B;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
/**** Testimonial highlight block ****/
.testimonial-highlight {
  background: #E8F0F8 !important;
  box-shadow: none;
  border-radius: 12px;
  margin-bottom: 32px;
}
.testimonial-highlight .testimonial-card {
  background: #fff;
  border: 2px solid #E8F0F8;
  color: #175D7B;
  box-shadow: 0 3px 14px rgba(23, 93, 123, 0.05);
  margin: 0 auto;
  min-width: 180px;
  max-width: 500px;
}
.testimonial-highlight h2 {
  text-align: center;
  color: #175D7B;
}

@media (max-width: 880px) {
  .testimonials .content-wrapper {
    gap: 18px;
  }
  .testimonial-card {
    padding: 16px 8vw 16px 8vw;
    min-width: 146px;
  }
}
@media (max-width: 600px) {
  .testimonial-card {
    padding: 16px 12px;
    width: 95%;
    min-width: unset;
    max-width: unset;
  }
}

/****************
  Buttons
*****************/
button, .cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  outline: none;
  border: none;
}
button:active, .cta-btn:active {
  transform: translateY(1px);
}

/****************
  Text & lists in info sections
*****************/
.text-section ul {
  margin: 0 0 18px 15px;
}
.text-section ul li {
  list-style: disc inside;
  margin-bottom: 10px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.04rem;
}

/******* Quick facts, accreditations, map snippet, etc. ******/
.quick-facts ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 8px;
  margin-bottom: 0;
}
.accreditations {
  margin-top: 12px;
  padding-left: 0;
  color: #125073;
  font-size: 1rem;
}
.map-snippet {
  margin-top: 20px;
  border-left: 4px solid #175D7B;
  padding-left: 12px;
  background: #E8F0F8;
  border-radius: 7px;
  color: #175D7B;
  font-size: 0.98rem;
}
.local-highlights, .unique-services, .inclusions {
  background: #E8F0F8;
  border-radius: 8px;
  padding: 18px 16px;
  font-size: 0.98rem;
  margin-top: 10px;
  color: #222222;
}
.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.topic-tags span {
  background: #E8F0F8;
  color: #175D7B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.95em;
  border-radius: 5px;
  padding: 6px 12px;
}

/******* CTA sections *******/
.cta {
  text-align: center;
  padding: 44px 0 44px 0;
  background: #175D7B;
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(23, 93, 123, 0.08);
  margin-bottom: 44px;
}
.cta h2 {
  color: #fff;
  margin-bottom: 18px;
}
.cta .cta-btn {
  background: #F5B047;
  color: #175D7B !important;
  font-weight: 700;
  margin: 0 auto;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(245,176,71,0.07);
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: #e6a235;
  color: #12455d !important;
  box-shadow: 0 4px 14px rgba(245,176,71,0.11);
}
@media (max-width: 600px) {
  .cta {
    padding: 32px 0;
  }
}

/*=======================
  FOOTER
========================*/
footer {
  background: #222222;
  color: #E8F0F8;
  padding: 38px 0 20px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-main {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 12px;
}
.footer-main a img {
  max-width: 48px;
  margin-right: 10px;
}
.footer-links {
  display: flex;
  gap: 22px;
}
.footer-links a {
  color: #E8F0F8;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.18s;
}
.footer-links a:hover {
  color: #F5B047;
}
.footer-contact address {
  color: #E8F0F8;
  font-size: 1rem;
  line-height: 1.6;
}
.footer-note {
  margin-top: 10px;
  color: #a7b3bc;
  font-size: 0.95rem;
}
@media (max-width: 750px) {
  .footer-main, .footer-links, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}


/***** LEGAL - TEXT BLOCKS *****/
.legal-cookie, .legal-privacy, .legal-gdpr, .legal-terms {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 12px rgba(23, 93, 123, 0.09);
  padding: 40px 0 40px 0;
  margin-bottom: 40px;
}
.legal-cookie h1, .legal-privacy h1, .legal-gdpr h1, .legal-terms h1 {
  font-size: 1.6rem;
  color: #175D7B;
  margin-bottom: 22px;
}
.legal-cookie h2, .legal-privacy h2, .legal-gdpr h2, .legal-terms h2 {
  font-size: 1.18rem;
  color: #175D7B;
  margin-bottom: 10px;
}
.text-section {
  max-width: 820px;
}

/* Thank you page */
.thank-you {
  background: #E8F0F8;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(23, 93, 123, 0.09);
  padding: 46px 0 30px 0;
  margin-bottom: 44px;
  text-align: center;
}
.next-steps ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}
.next-steps ul li {
  list-style-type: disc;
  margin-left: 24px;
  color: #175D7B;
  font-size: 1rem;
}

/***** RESPONSIVE =============== *****/
@media (max-width: 1000px) {
  .container {
    max-width: 96vw;
    padding: 0 10px;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 15px;
  }
  .footer-main, .footer-links {
    gap: 8px;
  }
  .testimonial-card {
    padding: 14px 6px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.35rem;
  }
  h2 {
    font-size: 1.05rem;
  }
  .container {
    padding: 0 2vw;
  }
}

/*============================
  COOKIE BANNER & MODAL
==============================*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  max-width: 100vw;
  z-index: 140;
  background: #fff;
  box-shadow: 0 -2px 22px rgba(23,93,123,0.11);
  border-top: 3px solid #175D7B;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px 22px 24px;
  flex-wrap: wrap;
  animation: cookieSlideIn 0.55s cubic-bezier(.56,.07,.33,1) 1;
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); }
  to   { transform: translateY(0%); }
}
.cookie-banner p {
  color: #222222;
  margin: 0;
  font-size: 1rem;
  flex: 1 1 230px;
}
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 8px 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.22s, color 0.18s, box-shadow 0.16s;
  margin-left: 0;
  margin-right: 0;
  display: inline-block;
}
.cookie-btn.accept {
  background: #175D7B;
  color: #fff;
  box-shadow: 0 2px 8px rgba(23,93,123,0.11);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #12455d;
}
.cookie-btn.reject {
  background: #fff;
  color: #175D7B;
  border: 2px solid #175D7B;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #E8F0F8;
  color: #222222;
}
.cookie-btn.settings {
  background: #F5B047;
  color: #12455d;
  margin-left: 8px;
  font-weight: 700;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #e6a235;
  color: #175D7B;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px 10px 22px 10px;
  }
  .cookie-actions {
    gap: 10px;
    margin-top: 5px;
  }
}

/***** Cookie Modal ******/
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(23,93,123,0.18);
  z-index: 160;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: overlayFadeIn 0.28s cubic-bezier(.43,.33,.38,1.16) 1;
}
@keyframes overlayFadeIn {
  from {opacity: 0;}
  to   {opacity: 1;}
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 48px rgba(23, 93, 123, 0.22);
  width: 98vw;
  max-width: 430px;
  padding: 32px 24px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  animation: modalSlideDown 0.40s cubic-bezier(.56,.39,.33,1.10) 1;
}
@keyframes modalSlideDown {
  from { transform: translateY(-36px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.28rem;
  color: #175D7B;
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  background: #E8F0F8;
  border-radius: 7px;
  padding: 12px 10px;
}
.cookie-category.essential {
  background: #c7e3f8;
}
.cookie-category label {
  color: #175D7B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
.cookie-category .toggle {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 42px;
}
.toggle-switch {
  appearance: none;
  background: #ddd;
  border-radius: 18px;
  width: 43px;
  height: 22px;
  transition: background 0.2s;
  position: relative;
  outline: none;
}
.toggle-switch:checked {
  background: #175D7B;
}
.toggle-switch:disabled {
  background: #b7cfdc;
  cursor: not-allowed;
}
.toggle-switch:before {
  content: '';
  position: absolute;
  left: 2.5px;
  top: 2px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 1px 6px rgba(23,93,123,0.06);
}
.toggle-switch:checked:before {
  transform: translateX(20px);
  background: #f5f5f5;
}
.toggle-switch:disabled:before {
  background: #e0e0e0;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 16px; top: 12px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #175D7B;
  cursor: pointer;
}
@media (max-width: 600px) {
  .cookie-modal {
    padding: 16px 4vw 16px 4vw;
    max-width: 98vw;
  }
  .cookie-modal .close-modal {
    right: 6px; top: 4px;
  }
}

/* ======================
   Micro-interactions, Transitions, Animations
   ======================= */
.card, .feature-item, .cta-btn, .cookie-btn, .mobile-menu, .mobile-menu-close, .mobile-nav a {
  transition: box-shadow 0.16s, background 0.18s, color 0.18s, transform 0.16s;
}
.cta-btn, .cookie-btn {
  transition: background 0.20s, color 0.16s, box-shadow 0.15s, transform 0.13s;
}
.card:hover, .feature-item:hover {
  transform: translateY(-3px) scale(1.012);
}

/**** Accessibility focus ring ****/
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus {
  box-shadow: 0 0 0 2px #F5B047;
}

/* Extra: Prevent overlaps, ensure flex wraps correctly */
.card-container, .feature-grid, .team-list, .benefit-grid, .services-list, .content-wrapper {
  flex-wrap: wrap;
  gap: 24px;
}
.card, .feature-item, .testimonial-card {
  min-width: 180px;
}

/* Hide scrollbars on mobile menu for clean look */
.mobile-menu {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  max-height: 100vh;
}

/* ======================
   END OF CSS FILE
   ======================= */
