/* RESET & NORMALIZE */
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, 
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F7F7F7;
  color: #222;
  min-height: 100vh;
}
ol, ul {
  list-style: none;
  padding-left: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

/* BRAND COLORS & FONTS (Luxury Premium) */
:root {
  --primary: #004B7F;
  --secondary: #68A691;
  --accent: #F7F7F7;
  --gold: #C9A349;
  --deep-navy: #1A202C;
  --offwhite: #F7F7F7;
  --lux-black: #181A1B;
  --lux-gray: #F4F3EF;
  --lux-gray-text: #33342E;
  --transition: 0.35s cubic-bezier(.68,-0.55,.27,1.55);
  --shadow: 0 6px 24px rgba(0,0,0,0.09);
  --radius: 16px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

body {
  font-family: var(--font-body);
  background: var(--accent);
  color: var(--lux-gray-text);
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
}
h1 { font-size: 2.75rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; position: relative; }
h3 { font-size: 1.25rem; color: var(--lux-black); margin-bottom: 16px; }
h4, h5, h6 { font-size: 1.15rem; }
p, ul, li, blockquote {
  font-size: 1rem;
  color: var(--lux-gray-text);
}
ul, ol { margin-bottom: 14px; }

/* Gold accent under h2 headings */
h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background: var(--gold);
  margin-top: 10px;
}

/* LAYOUT SPACING & CONTAINERS */
.container {
  width: 100%;
  max-width: 1072px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--offwhite);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  max-width: 760px;
  margin: 0 auto;
}

/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover {
  box-shadow: 0 10px 32px rgba(0,0,0,0.13);
  transform: translateY(-2px) scale(1.02);
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #fff;
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.testimonial-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* CUSTOM GRIDS */
.feature-grid, .benefit-grid, .destination-teasers, .service-list, .destination-list, .experience-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature-grid > div, .benefit-grid > div, .destination-teasers > div, .service-list > div, .destination-list > div, .experience-grid > div {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 20px 24px 20px;
  flex: 1 1 240px;
  min-width: 250px;
  margin-bottom: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.3s, transform 0.3s;
}
.feature-grid > div:hover, .benefit-grid > div:hover, .destination-teasers > div:hover, .service-list > div:hover,
.destination-list > div:hover, .experience-grid > div:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  transform: translateY(-3px) scale(1.015);
}
.feature-grid img, .benefit-grid img, .destination-teasers img, .experience-grid img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 12px;
}

/* Region filter (Bestemmingen) */
.region-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 16px;
  gap: 8px;
  color: var(--primary);
}
.region-filters a {
  color: var(--secondary);
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 12px;
  transition: background 0.25s, color 0.25s;
}
.region-filters a:hover {
  background: var(--gold);
  color: #fff;
}

.quick-links {
  margin-top: 18px;
  font-size: 1rem;
  text-align: right;
}
.quick-links a {
  color: var(--gold);
  text-decoration: underline;
  font-weight: bold;
  transition: color .2s;
}
.quick-links a:hover { color: var(--primary); }

/* USP Icons */
.usp-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.usp-icons span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 700;
  background: var(--lux-gray);
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 1rem;
}
.usp-icons img {
  width: 24px; height: 24px;
}

/* FAQ Styles */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-list li {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 20px 18px 20px;
}
.faq-list strong {
  display: block;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 8px;
}

/* Teambox */
.team-overview {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team-overview ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* CTA BUTTONS */
.cta-button {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 16px 34px;
  border-radius: 32px;
  background: var(--primary);
  color: #fff;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 20px rgba(0,10,30,0.18);
  border: none;
  outline: none;
  transition: background var(--transition), color var(--transition), transform .2s;
  margin-top: 12px;
  margin-bottom: 6px;
}
.cta-button:hover, .cta-button:focus {
  background: var(--gold);
  color: #181A1B;
  transform: translateY(-2px) scale(1.045);
}

/* NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 18px 12px 18px;
  font-family: var(--font-display);
  font-size: 1rem;
}
.main-nav > a {
  padding: 7px 18px;
  color: var(--primary);
  font-weight: 600;
  border-radius: 18px;
  transition: background .18s,color .18s;
  position: relative;
}
.main-nav > a:hover, .main-nav > a:focus {
  background: var(--gold);
  color: #fff;
}
.main-nav img {
  width: 122px;
  min-width: 68px;
  margin-right: 32px;
  margin-left: 0;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: inline-flex;
  position: absolute;
  right: 24px;
  top: 20px;
  font-size: 2rem;
  color: var(--primary);
  background: var(--accent);
  border: 2px solid var(--gold);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  z-index: 201;
  transition: background .18s,border-color .18s, color .18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--gold);
  color: #fff;
  border-color: var(--primary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,26,27,0.93);
  z-index: 210;
  transform: translateX(-100%);
  transition: transform var(--transition);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2rem;
  color: #fff;
  align-self: flex-end;
  margin: 18px 24px 10px 0;
  padding: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  margin-top: 36px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 12px 32px;
  color: #fff;
  border-radius: 20px;
  background: none;
  width: 90vw;
  text-align: center;
  transition: background .17s, color .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--gold);
  color: var(--primary);
}

@media (min-width: 950px) {
  .mobile-menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
}
@media (max-width: 949px) {
  .main-nav {
    flex-wrap: wrap;
    gap: 12px;
    padding-right: 57px;
  }
  .main-nav > a:not(:first-child) { display: none; }
  .main-nav > a:first-child { margin-right: auto; }
}

/* FOOTER */
footer {
  background: var(--deep-navy);
  color: #fff;
  padding: 42px 0 24px 0;
  margin-top: 64px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.05rem;
  transition: color .17s, text-decoration .13s;
  text-decoration: underline dotted rgba(200,180,79,0.1);
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0;
}
.footer-contact address,
.footer-contact a { color: #fff; }
.footer-contact strong { color: var(--gold); }
.footer-contact a:hover { color: var(--gold); }

/* Address spacing */
address {
  font-style: normal;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* GENERAL LIST/SPACING */
ul, ol {
  margin-bottom: 20px;
  margin-top: 8px;
  padding-left: 18px;
}
ul li, ol li { margin-bottom: 10px; }

/* Decorative Details */
.card, .testimonial-card,
.feature-grid > div,
.benefit-grid > div,
.destination-teasers > div,
.service-list > div,
.destination-list > div,
.experience-grid > div {
  border: 1px solid rgba(200,180,79,0.07);
}

/* BLOCKQUOTE */
blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}
blockquote:before {
  content: '“';
  color: var(--gold);
  font-size: 2.4rem;
  position: absolute;
  left: 0;
  top: -12px;
  line-height: 1;
  font-style: normal;
}
blockquote:after {
  content: '';
}

/* INLINE LINKS */
a {
  color: var(--primary);
  text-decoration: underline dashed rgba(0,75,127,0.1);
  transition: color .14s, text-decoration .14s;
}
a:hover, a:focus {
  color: var(--gold);
  text-decoration: underline solid var(--gold);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: rgba(30,34,36,0.97);
  color: #fff;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 18px 28px 18px;
  gap: 36px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.18);
  font-size: 1rem;
  transition: transform .4s cubic-bezier(.73,.03,.31,1.115), opacity .18s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}
.cookie-banner .cookie-text {
  flex: 1 1 340px;
  max-width: 600px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}
.cookie-btn {
  padding: 12px 30px;
  border-radius: 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background .17s, color .17s, box-shadow .15s;
  box-shadow: 0 2px 12px rgba(200,163,73,0.17);
  margin-bottom: 2px;
}
.cookie-btn.accept {
  background: var(--gold);
  color: #181A1B;
}
.cookie-btn.accept:hover { background: var(--primary); color: #fff; }
.cookie-btn.reject {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--lux-gray);
  color: var(--primary);
  border: 1.5px solid var(--gold);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--gold);
  color: #fff;
}

/* Cookie Preference Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(30,30,32,0.74);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s ease;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-overlay.hide { opacity: 0; pointer-events: none; }
.cookie-modal {
  background: #fff;
  color: var(--lux-black);
  border-radius: 22px;
  padding: 38px 30px 24px 30px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.27);
  width: 98vw;
  max-width: 440px;
  min-width: 248px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10003;
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.5rem;
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid #eee;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category input[type='checkbox'] {
  width: 24px; height: 24px;
  accent-color: var(--gold);
}
.cookie-modal .cookie-category span {
  font-size: 1rem;
  font-weight: 600;
}
.cookie-modal .category-essential {
  color: var(--primary);
  font-weight: 700;
}
.cookie-modal .category-toggle {
  margin-left: auto;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 18px;
}
.cookie-modal .close-modal-btn {
  position: absolute;
  right: 18px;
  top: 18px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.65rem;
  cursor: pointer;
  transition: color .18s;
}
.cookie-modal .close-modal-btn:hover { color: var(--gold); }

/* RESPONSIVE DESIGN */
@media (max-width: 1150px) {
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 950px) {
  .feature-grid > div, .benefit-grid > div, .service-list > div,
  .destination-teasers > div, .destination-list > div, .experience-grid > div {
    min-width: 200px;
    flex: 1 1 100%;
    margin-bottom: 0;
  }
  .feature-grid, .benefit-grid, .service-list, .destination-teasers,
  .destination-list, .experience-grid {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
    max-width: 100vw;
  }
  .main-nav {
    font-size: 1rem;
    padding: 12px 12px 12px 6px;
    gap: 8px;
  }
  .section {
    padding: 22px 4px;
    margin-bottom: 38px;
  }
  .card-container, .feature-grid, .benefit-grid, .service-list, .destination-teasers,
  .destination-list, .experience-grid {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card,
  .feature-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .region-filters{
    font-size:0.95rem;
    gap: 3px;
    margin-bottom: 10px;
  }
  .usp-icons {
    gap: 14px;
  }
  .footer-nav { gap: 8px; }
  .footer-contact { font-size: 0.95rem; }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 18px 6px;
    font-size: 0.96rem;
  }
  .cookie-banner .cookie-actions {
    width: 100%; align-items: stretch;
    flex-direction: row;
    gap: 9px;
  }
  .cookie-modal {
    padding: 18px 8px;
    min-width: 170px;
    max-width: 97vw;
  }
}

/* MICROINTERACTIONS & HOVER */
.cta-button,
.main-nav > a,
.card,
.feature-grid > div,
.benefit-grid > div,
.destination-teasers > div,
.service-list > div,
.destination-list > div,
.experience-grid > div,
.quick-links a,
.usp-icons span,
.mobile-nav a,
.footer-nav a,
.cookie-btn {
  transition: background .23s, color .2s, box-shadow .19s, border-color .19s, transform .2s;
}

/* Hide scroll when mobile menu is open */
body.mobile-menu-open {
  overflow-y: hidden;
  position: fixed;
  width: 100vw;
}

/* UTILITIES */
.d-none { display: none !important; }
.mtb-10 { margin-top: 10px; margin-bottom: 10px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mb-16 { margin-bottom: 16px; }

/* ACCESSIBILITY FOCUS */
:focus-visible {
  outline: 2.5px solid var(--gold);
  outline-offset: 3px;
}

/* PRINT OPTIMIZATION */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  .section, .container, .content-wrapper { background: none; box-shadow: none; }
}

