/* ===============================
   CSS 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;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.5; background: #F6F6F2; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
button { background: none; border: none; padding: 0; cursor: pointer; font: inherit; }

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

:root {
  --brand-primary: #22457F;
  --brand-secondary: #88B04B;
  --brand-accent: #F6F6F2;
  --brand-dark: #2A2C2E;
  --brand-orange: #DF8F44;
  --brand-yellow: #F7C873;
  --brand-red: #D36F4B;
  --brand-bg-light: #FEF7ED;
  --brand-shadow: 0 4px 16px rgba(34, 69, 127, 0.08), 0 1px 2px rgba(0,0,0,0.04);
  --brand-radius: 18px;
  --brand-radius-lg: 30px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  /* Vintage Retro extras */
  --retro-bg: #FEF7ED;
  --retro-border: #E3D2AC;
  --retro-beige: #F3E3C7;
  --retro-brown: #855E42;
  --retro-orange: #DF8F44;
  --retro-red: #D36F4B;
  --retro-muted-blue: #57728C;
  --retro-yellow: #F7C873;
}

body {
  font-family: var(--font-body);
  color: var(--brand-dark);
  background: var(--retro-bg);
  font-size: 16px;
  letter-spacing: .01em;
}
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}

/* ===============================
   TYPOGRAPHY & HEADINGS
   =============================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.5px;
  font-weight: 900;
  color: var(--brand-primary);
  text-shadow: 0 2px 0 var(--retro-yellow), 0 2px 18px #fff4dc90;
  line-height: 1.15;
}
h1 { font-size: 2.6rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; }
h5, h6 { font-size: 1rem; }
p {
  margin-bottom: 16px;
  color: var(--brand-brown, #444);
  font-size: 1.09rem;
  line-height: 1.7;
}
strong, b { font-weight: 700; color: var(--brand-primary); }

/* Emulate vintage/retro headings and text */
h1, h2, h3 {
  text-transform: uppercase;
  letter-spacing: 2.7px;
}

/* Retro pattern bg for hero/wide sections (subtle) */
section.hero,
section:nth-child(even) {
  background: repeating-linear-gradient(
    -45deg, var(--retro-bg), var(--retro-bg) 32px, var(--retro-beige) 36px, var(--retro-bg) 38px
  );
}

/* ===============================
   LAYOUT PATTERNS (Flexbox Only!)
   =============================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Custom wrappers mapped to HTML */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-card {
  background: #fffefa;
  border: 1.5px solid var(--retro-border);
  border-radius: var(--brand-radius);
  box-shadow: 1px 3px 14px 0 rgba(34,69,127,0.06);
  padding: 32px 26px 22px;
  width: 254px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 14px;
  position: relative;
  transition: box-shadow 0.22s cubic-bezier(.42,.04,.38,1.01);
}
.feature-card:hover {
  box-shadow: 1px 8px 32px 0 rgba(34,69,127,0.10), 0 1.5px 6px var(--retro-yellow);
  border-color: var(--retro-yellow);
  z-index: 2;
}
.feature-card img {
  width: 44px;
  height: 44px;
  margin-bottom: 3px;
  filter: drop-shadow(0 1px 0 #BF874A);
}

/* Testimonials */
.testimonial-slider, .testimonial-grid, .testimonial-quotes, .guide-testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.testimonial-card {
  background: #fffefa;
  border: 2.2px dashed var(--retro-yellow);
  border-radius: var(--brand-radius-lg);
  box-shadow: 0 3px 18px 0 rgba(34,69,127,0.05), 0 .5px 5px var(--retro-yellow) inset;
  padding: 28px 26px 17px;
  min-width: 250px;
  flex: 1 1 220px;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  border-color: var(--brand-orange);
  transform: scale(1.025) rotate(-1deg);
}
.testimonial-card p {
  color: #3A2F1A;
  font-size: 1.08rem;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 8px;
  text-shadow: 0px 1.5px 0px #FFF6EE90;
}
.testimonial-card span {
  color: var(--retro-brown);
  font-size: 0.99rem;
  opacity: 0.74;
  font-family: var(--font-display);
}
.star-rating-summary, .featured-destination-review {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  color: var(--brand-orange);
  font-size: 1.13rem;
  margin-top: 8px;
  margin-bottom: 24px;
}
.featured-destination-review strong {
  color: var(--retro-brown);
}

/* Cards/overview */
.destination-overview, .excursion-listing, .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 24px;
}
.destination-card {
  background: #fffefa;
  border: 2px solid var(--retro-border);
  border-radius: var(--brand-radius);
  box-shadow: 0 2px 12px 0 rgba(34,69,127,0.05);
  padding: 22px 14px 18px;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  transition: border-color .21s, box-shadow .21s;
}
.destination-card:hover {
  border-color: var(--brand-yellow);
  box-shadow: 0 7px 18px 0 rgba(34,69,127,0.09);
  z-index: 2;
}
.destination-card img {
  width: 40px;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 0 #F7C873);
}

/* ===============================
   VINTAGE RETRO SECTION DECOR
   =============================== */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FAF5EA;
  border-radius: var(--brand-radius-lg);
  box-shadow: 0 5px 28px 0 #deb97d11, 0 1.5px 8px 0 #b3987140 inset;
}
section:nth-child(2n) {
  background: #F3E3C7;
}

.highlight-quote, .featured-destination-review {
  background: var(--retro-yellow);
  padding: 20px 26px;
  border-radius: 45px;
  box-shadow: 0 2px 8px 0 #FFF6ED50, 0 1.5px 8px 0 #edd48c40 inset;
  margin: 24px 0 16px 0;
  font-family: var(--font-display);
  color: var(--brand-dark);
  font-style: italic;
  font-size: 1.15rem;
  text-align: center;
}

/* ===============================
   BUTTONS & INTERACTIONS
   =============================== */
.btn-primary, a.btn-primary, button.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--brand-primary);
  color: var(--brand-accent);
  font-family: var(--font-display);
  font-size: 1.13rem;
  font-weight: 900;
  border-radius: 36px;
  padding: 13px 40px 12px;
  border: 0.1px solid var(--brand-primary);
  box-shadow: 0 2px 8px #22536032;
  letter-spacing: .11em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, transform .16s;
  margin: 18px 0 0 0;
}
.btn-primary:hover, a.btn-primary:hover, button.btn-primary:hover {
  background: var(--retro-orange);
  color: var(--brand-dark);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 22px #df8f4435;
}
.btn-secondary, a.btn-secondary, button.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: var(--brand-secondary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  border-radius: 36px;
  padding: 11px 27px;
  border: none;
  box-shadow: 0 1.5px 5px #9AA54338;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s;
}
.btn-secondary:hover {
  background: var(--brand-primary);
  color: var(--brand-accent);
}
/* Cookie consent buttons */
.cookie-btn, .cookie-btn:focus {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.01rem;
  padding: 10px 26px;
  margin: 8px 10px 0 0;
  border-radius: 28px;
  background: var(--brand-primary);
  color: #fff;
  border: none;
  transition: background .12s, color .12s;
  cursor: pointer;
}
.cookie-btn:hover {
  background: var(--retro-brown);
  color: var(--retro-yellow);
}
.cookie-btn.secondary {
  background: var(--brand-secondary);
  color: #fff;
}
.cookie-btn.secondary:hover {
  background: var(--brand-primary);
  color: var(--brand-accent);
}

/* ===============================
   HEADER / NAVIGATION / LOGO
   =============================== */
header {
  background: #F3E3C7;
  border-bottom: 3px dashed var(--retro-yellow);
  box-shadow: 0 2px 10px #deb97d14;
  position: relative;
  padding-top: 3px;
  padding-bottom: 3px;
  z-index: 60;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}
header .container nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 18px;
}
header nav a {
  font-family: var(--font-display);
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 1.01rem;
  margin-right: 3px;
  letter-spacing: 1.3px;
  padding: 5px 4px 6.5px 4px;
  border-radius: 6px 4px 10px 4px;
  transition: background 0.14s, color 0.14s;
}
header nav a:hover, .mobile-nav a:hover {
  background: var(--retro-yellow);
  color: var(--brand-dark);
}
header .btn-primary {
  margin-left: auto;
}
header img[alt="EuropaOntdekking"] {
  max-width: 130px;
  height: auto;
  margin-right: 16px;
}

/* ===============================
   MOBILE NAV (BURGER & MENU)
   =============================== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 23px;
  top: 21px;
  font-size: 2.1rem;
  color: var(--brand-primary);
  background: none;
  border: none;
  z-index: 103;
  padding: 4px 10px;
  border-radius: 7px;
  transition: background .18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--retro-yellow);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #FFF9EDEE;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.4, .1, .37, 1.07);
  overflow-y: auto;
  box-shadow: 1px 0 35px #dcc39483;
  padding: 38px 26px 38px 38px;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 4px 0 34px #a4752e99;
}
.mobile-menu-close {
  font-size: 2rem;
  color: var(--brand-primary);
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px 7px;
  z-index: 124;
  border-radius: 7px;
  transition: background .11s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--retro-yellow);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 23px;
  margin-top: 50px;
  margin-right: 38px;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 1.21rem;
  letter-spacing: 1.8px;
  padding: 11px 10px 7px 4px;
  border-radius: 11px 5px 22px 8px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:active {
  background: var(--retro-orange);
  color: var(--brand-accent);
}
@media (max-width: 1000px) {
  header .container nav,
  header .container .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 1000px) {
  .mobile-menu {
    padding-left: 16px;
    padding-right: 8px;
  }
}

/* ===============================
   FOOTER STYLE
   =============================== */
footer {
  padding: 34px 0 18px 0;
  background: #F3E3C7;
  border-top: 3px dashed var(--retro-yellow);
  font-family: var(--font-display);
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
footer nav a {
  color: var(--brand-primary);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 6px;
  padding: 3.5px 7.5px;
  transition: background 0.13s, color 0.13s;
}
footer nav a:hover {
  background: var(--retro-yellow);
  color: #392a07;
}
.footer-info {
  color: var(--retro-brown);
  font-size: 0.99rem;
  opacity: .63;
}

/* ===============================
   LISTS & ICON-LISTS
   =============================== */
ul, ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 14px;
}
ul li, ol li {
  padding-left: 0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
  color: var(--brand-brown);
}
ul li img, ol li img {
  width: 22px;
  height: 22px;
  margin-right: 6px;
}
.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 1.3px;
  margin-bottom: 14px;
}
.city-list li {
  background: var(--brand-accent);
  border-radius: 20px;
  padding: 8px 18px;
  border: 1.2px solid var(--retro-border);
  color: var(--brand-primary);
  font-weight: 900;
}

/* ===============================
   CTA & HIGHLIGHTS, BLOG, NEWSLETTER
   =============================== */
.service-highlights, .city-highlights, .excursion-highlights {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: center;
  margin: 20px 0 16px 0;
  font-family: var(--font-display);
  font-size: 1.01rem;
}
.service-highlights img, .city-highlights img {
  width: 28px; height: 28px; margin-right: 8px;
}
.excursion-highlights ul {
  gap: 16px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.latest-posts-list ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-topics-overview ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.blog-topics-overview li {
  background: var(--retro-yellow);
  color: #3a2f1a;
  border-radius: 16px;
  padding: 6px 14px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
}

/* Guide bios */
.guide-bio {
  background: #fffefa;
  border: 1.5px solid var(--retro-border);
  border-radius: var(--brand-radius);
  box-shadow: 1px 2px 10px 0 rgba(34,69,127,0.07);
  padding: 26px 18px 17px;
  width: 265px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
  font-family: var(--font-display);
}
.guide-bio h2 {
  font-size: 1.32rem;
  margin-bottom: 6px;
  color: var(--brand-secondary);
}
.guide-bio span {
  font-style: italic;
  font-size: 0.99rem;
}


/* ===============================
   MISC.
   =============================== */
.address-details {
  margin-left: 22px;
  max-width: 460px;
  font-size: 1.01rem;
}
.trust-icons {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}
.trust-icons img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 0 #F7C87345);
}


/* ===============================
   RESPONSIVE DESIGN
   =============================== */
@media (max-width: 1200px) {
  .container {
    max-width: 97vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .feature-grid, .destination-overview, .content-wrapper {
    justify-content: flex-start;
  }
}
@media (max-width: 900px) {
  .feature-grid,
  .destination-overview,
  .excursion-listing,
  .testimonial-slider, .testimonial-quotes, .testimonial-grid, .guide-testimonials,
  .card-container, .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .feature-card, .destination-card, .guide-bio {
    width: 100%;
  }
  .section, section {
    padding: 30px 8px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .container { padding: 0 6px; }
  .section, section { padding: 22px 2px; }
  .content-wrapper, .feature-grid, .destination-overview, .testimonial-grid {
    gap: 14px;
  }
}
@media (max-width: 600px) {
  .content-wrapper,
  .feature-grid,
  .destination-overview,
  .excursion-listing,
  .testimonial-slider, .testimonial-quotes, .testimonial-grid, .guide-testimonials,
  .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section { flex-direction: column; gap: 16px; }
  .section, section { margin-bottom: 38px; padding: 13px 0 13px 0; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.37rem; }
  h2 { font-size: 1.1rem; }
  h3 { font-size: 1.01rem; }
}


/* ===============================
   MICROINTERACTIONS & TRANSITIONS
   =============================== */
.card, .card-container .card, .testimonial-card, .feature-card, .destination-card, .guide-bio {
  transition: box-shadow 0.19s, border-color 0.17s, transform 0.2s;
}
a, .btn-primary, .btn-secondary, .mobile-nav a, header nav a {
  transition: color .17s, background .17s, text-shadow .16s;
}

/* ===============================
   COOKIE BANNER & CONSENT MODAL
   =============================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 9999;
  background: var(--retro-brown);
  color: #fffefa;
  box-shadow: 0 -2px 22px 0 #855E4240;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 36px;
  padding: 20px 10vw 20px 6vw;
  font-family: var(--font-display);
  font-size: 1.11rem;
  letter-spacing: .02em;
  border-top: 4px solid var(--retro-yellow);
  transition: transform 0.30s cubic-bezier(.52,.2,.45,.81), opacity 0.23s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-btn {
  margin-right: 10px;
}

@media (max-width: 750px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.01rem;
    padding: 16px 7vw 16px 5vw;
  }
}

.cookie-modal {
  position: fixed;
  z-index: 10500;
  left: 50%;
  top: 50%;
  background: #FEF7ED;
  color: #292920;
  min-width: 340px;
  max-width: 97vw;
  min-height: 240px;
  border-radius: 36px;
  box-shadow: 0 15px 60px #b3963f44, 0 2px 10px #e6e0d3aa;
  padding: 56px 40px 30px 40px;
  transform: translate(-50%,-50%) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity .23s, transform .28s;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h3 {
  font-family: var(--font-display);
  color: var(--brand-primary);
  margin-bottom: 14px;
  font-size: 1.17rem;
}
.cookie-modal p {
  color: #4C4431;
  font-size: 1rem;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
}
.cookie-category .toggle {
  width: 46px;
  height: 26px;
  border-radius: 16px;
  background: #decea8;
  position: relative;
  transition: background .18s;
  margin-left: 9px;
  flex-shrink: 0;
}
.cookie-category .toggle.enabled {
  background: var(--brand-secondary);
}
.cookie-category .toggle-ball {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 3px; top: 2.2px;
  transition: left .19s;
  box-shadow: 0 1px 5px #ad900533;
}
.cookie-category .toggle.enabled .toggle-ball {
  left: 20px;
  background: #e7f0cf;
}
.cookie-category .required {
  color: var(--brand-primary);
  font-size: .98em;
  font-weight: bold;
}
.cookie-modal .cookie-btn {
  margin-right: 8px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px; right: 20px;
  font-size: 1.7rem;
  color: var(--brand-brown);
  background: none;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  transition: background .15s;
  z-index: 12002;
}
.cookie-modal .close-modal:hover {
  background: var(--brand-yellow);
}
@media (max-width: 500px) {
  .cookie-modal {
    min-width: 96vw;
    max-width: 98vw;
    padding: 36px 7vw 25px 7vw;
  }
}
