/* ===========================================================
 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, 
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;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #FFFBF3;
  color: #25415A;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  /* Thin subtle retro pattern background */
  background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" fill="none" opacity="0.03" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="12" width="24" height="12" fill="%239BCBB4"/><rect x="0" y="0" width="12" height="12" fill="%23FDEDA0"/></svg>');
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol {
  padding-left: 1.25em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
a {
  color: #875D36;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #25415A;
  text-decoration: none;
}

strong, b {
  font-weight: 700;
}

hr {
  border: 0;
  border-bottom: 1px dashed #9BCBB4;
  margin: 2.5em 0;
}

/* ===========================================================
 TYPOGRAPHY
=========================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #25415A;
  letter-spacing: 0.01em;
  margin-bottom: 0.7em;
  line-height: 1.1;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 0.6em;
  text-shadow: 2px 3px 0 #FDEDA0;
}
h2 {
  font-size: 2rem;
  margin-bottom: 0.5em;
  text-shadow: 1px 2px 0 #FDEDA0;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4em;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3em;
}
p {
  font-size: 1rem;
  margin-bottom: 1em;
  color: #3a3842;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.07rem;
  }
}

blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  color: #875D36;
  border-left: 5px solid #9BCBB4;
  margin: 20px 0;
  padding: 16px 20px;
  background: #FDEDA0;
  border-radius: 12px;
}
cite {
  font-family: 'Nunito', Arial, sans-serif;
  color: #25415A;
  display: block;
  margin-top: 0.5em;
  font-size: 0.97em;
}

/* ===========================================================
 LAYOUT CONTAINERS & FLEXBOX
=========================================================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  position: relative;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Cards and Flex Grid Containers */
.card-container, .feature-grid, .destination-grid, .journey-snapshots, .package-grid, .team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card, .feature, .destination, .experience, .package {
  background: #FFFBE9;
  border: 2px solid #FDEDA0;
  box-shadow: 0 2px 7px 0 rgba(133, 93, 54, 0.10);
  border-radius: 18px;
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  min-width: 240px;
  max-width: 100%;
  transition: transform 0.16s, box-shadow 0.18s;
}
.card:hover, .feature:hover, .destination:hover, .experience:hover, .package:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 26px 0 rgba(133, 93, 54, 0.12);
  z-index: 2;
}
/* Testimonials */
.testimonials .testimonial-card, .stories-guests .testimonial-card {
  background: #FDEDA0;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(39,65,90,0.085);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  margin-bottom: 20px;
  border: 2px solid #FDEDA0;
  position: relative;
  min-width: 0;
}
.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}
.testimonial-meta {
  color: #25415A;
  font-size: 0.99em;
  margin-top: 3px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.star-rating {
  color: #E7B400;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05em;
  letter-spacing: 1.5px;
}

/* Content grids (features, cards, etc.) */
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Ensuring adequate spacing between all main cards/sections */
.section > *,
.content-wrapper > *,
.card-container > *,
.feature-grid > *,
.destination-grid > *,
.package-grid > *,
.team-bios > *,
.journey-snapshots > *,
.stories-guests > *,
.faq > *,
.cta-wrapper > * {
  margin-bottom: 20px;
}
.section > *:last-child,
.content-wrapper > *:last-child,
.card-container > *:last-child,
.feature-grid > *:last-child,
.destination-grid > *:last-child,
.package-grid > *:last-child,
.team-bios > *:last-child,
.journey-snapshots > *:last-child,
.stories-guests > *:last-child,
.faq > *:last-child,
.cta-wrapper > *:last-child {
  margin-bottom: 0;
}

/* ===========================================================
 HEADER & NAVIGATION (Desktop + Mobile)
=========================================================== */
header {
  background: #25415A;
  position: relative;
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 18px 20px 18px 20px;
  gap: 16px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-family: 'Playfair Display', serif;
  color: #FFFBE9;
  font-size: 1.05em;
  margin: 0;
  letter-spacing: 0.01em;
  padding: 6px 9px;
  transition: color 0.22s, background 0.18s, box-shadow 0.18s;
  border-radius: 10px;
  text-decoration: none;
}
header nav a:hover, header nav a:focus {
  background: #9BCBB4;
  color: #25415A;
  text-decoration: underline;
  box-shadow: 0 2px 8px 0 rgba(157,203,180,0.09);
}
header .cta-primary {
  margin-left: 18px;
}

header img {
  height: 48px;
  width: auto;
}

/* ========== MOBILE NAV ========== */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2.2rem;
  color: #FDEDA0;
  border: none;
  cursor: pointer;
  margin-left: 10px;
  z-index: 1201;
  transition: color 0.18s;
  outline: none;
}
.mobile-menu-toggle:hover {
  color: #9BCBB4;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  background: #25415A;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.46,.03,.52,.96);
  box-shadow: 6px 0 34px rgba(0,0,0,0.17);
  padding: 38px 28px 28px 30px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #FDEDA0;
  font-size: 2rem;
  position: absolute;
  top: 24px; right: 30px;
  cursor: pointer;
  z-index: 1301;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 58px;
}
.mobile-nav a {
  font-size: 1.23rem;
  color: #FFFBE9;
  font-family: 'Playfair Display', serif;
  text-decoration: none;
  padding: 10px 5px;
  border-radius: 8px;
  transition: background 0.18s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FDEDA0;
  color: #25415A;
}
@media (max-width: 1100px) {
  header .container {
    padding-right: 8px;
    padding-left: 8px;
  }
}
@media (max-width: 900px) {
  header nav {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 6px;
    min-height: 62px;
    padding: 10px 5px 10px 5px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===========================================================
 HERO SECTIONS
=========================================================== */
.hero, .contact-hero {
  background: #9BCBB4;
  background-image: none;
  border-bottom: 8px double #FDEDA0;
  padding: 50px 20px 44px 20px;
  min-height: 270px;
}
.hero h1, .contact-hero h1 {
  color: #222C2B;
  text-shadow: 2px 4px #FDEDA0;
}
.hero p, .contact-hero p {
  color: #25415A;
  font-size: 1.09rem;
}

.cta {
  background: #FDEDA0;
  border-radius: 16px;
  box-shadow: 0 1px 5px 0 rgba(133, 93, 54, 0.06);
  padding: 40px 16px;
  text-align: center;
  margin-bottom: 60px;
}
.cta h2 {
  font-size: 2rem;
  color: #25415A;
}
.cta p {
  font-size: 1.09em;
  color: #3a3842;
}
.cta .cta-primary {
  margin-top: 24px;
}

.cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 20px;
}
.cta-primary {
  display: inline-block;
  background: #875D36;
  color: #FFFBE9;
  font-family: 'Playfair Display', serif;
  font-size: 1.13rem;
  font-weight: 700;
  padding: 12px 35px;
  border-radius: 38px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: 0 3px 10px 0 rgba(133, 93, 54, 0.10);
  transition: background 0.19s, color 0.19s, box-shadow 0.18s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #FDEDA0;
  color: #25415A;
  box-shadow: 0 8px 22px 0 rgba(133, 93, 54, 0.13);
}


/* ===========================================================
 FEATURES, PACKAGES, DESTINATIONS, TEAM, ETC.
=========================================================== */
.feature-grid, .features-grid, .destination-grid, .package-grid, .team-bios, .journey-snapshots {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
.feature, .destination, .package, .experience {
  flex: 1 1 290px;
  min-width: 245px;
  margin-bottom: 20px;
}
.feature img, .destination img, .package img, .experience img {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
}

/* Contact Info List */
.contact-info-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 1em;
}
.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.07rem;
  color: #25415A;
}
.contact-info-list img {
  width: 28px;
  height: 28px;
}
/* Quote Snippet in Gallery */
.quote-snippet {
  margin: 22px 0 0 0;
  padding: 22px 16px;
  background: #FFFBE9;
  border-radius: 15px;
  border: 1.5px dashed #9BCBB4;
  font-size: 1.06em;
  font-style: italic;
}

/* ===========================================================
 FOOTER
=========================================================== */
footer {
  background: #25415A;
  color: #FFFBE9;
  padding: 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 20px 28px 20px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 8px;
}
footer nav a {
  color: #FDEDA0;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.03rem;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #9BCBB4;
  text-decoration: underline;
}
.footer-contact {
  font-size: 0.96em;
  color: #FFFBE9;
  font-family: 'Nunito', Arial, sans-serif;
  margin-top: 12px;
  text-align: left;
}
.footer-contact a {
  color: #FDEDA0;
}
footer img {
  width: 47px;
  height: auto;
  margin-bottom: 9px;
}
@media (max-width: 820px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 12px 26px 12px;
  }
}

/* ===========================================================
 COOKIE CONSENT BANNER & MODAL
=========================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #FFFBE9;
  color: #25415A;
  font-family: 'Nunito', Arial, sans-serif;
  z-index: 9999;
  box-shadow: 0 -4px 30px rgba(39, 65, 90, 0.22);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  border-top: 4px solid #FDEDA0;
  animation: cookie-fade-in 0.6s;
}
@keyframes cookie-fade-in {
  from {opacity:0; transform: translateY(45px)}
  to {opacity:1; transform: translateY(0)}
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Playfair Display', serif;
  background: #9BCBB4;
  color: #25415A;
  border: none;
  padding: 9px 19px;
  border-radius: 8px;
  font-size: 1rem;
  margin: 0;
  cursor: pointer;
  transition: background 0.18s, color 0.16s;
  box-shadow: 0 2px 6px rgba(133, 93, 54, 0.07);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #875D36;
  color: #FFFBE9;
}
.cookie-banner button.cookie-settings {
  background: #FDEDA0;
  color: #875D36;
  border: 1.2px solid #9BCBB4;
}
.cookie-banner button.cookie-settings:hover {
  background: #9BCBB4;
  color: #25415A;
}

.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-60%) scale(0.9);
  background: #FFFBE9;
  color: #25415A;
  border: 2.5px solid #9BCBB4;
  border-radius: 18px;
  z-index: 10000;
  box-shadow: 0 10px 40px rgba(39,65,90,.25);
  max-width: 98vw;
  width: 400px;
  padding: 36px 28px 22px 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h2 {
  font-size: 1.43rem;
  margin-bottom: 0.7em;
  color: #25415A;
  text-shadow: none;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 7px;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: #9BCBB4;
}
.cookie-modal .close-cookie-modal {
  background: #FDEDA0;
  color: #25415A;
  border: 1.5px solid #9BCBB4;
  padding: 7px 18px;
  border-radius: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.16s, color 0.14s;
}
.cookie-modal .close-cookie-modal:hover {
  background: #9BCBB4;
  color: #25415A;
}
@media (max-width: 550px) {
  .cookie-modal {
    width: 95vw;
    padding: 17px 7vw 10px 7vw;
    min-width: 0;
  }
}

/* ===========================================================
 RESPONSIVE LAYOUT ADJUSTMENTS
=========================================================== */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .feature-grid, .features-grid, .destination-grid, .package-grid, .team-bios, .journey-snapshots {
    flex-direction: column;
    gap: 18px 0;
  }
  .card, .feature, .destination, .package, .experience {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 800px) {
  .section, section {
    padding: 28px 6vw;
  }
  .cta {
    padding: 30px 5vw;
  }
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 13px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 4vw;
  }
  .section, section, .cta {
    padding: 22px 2vw;
  }
  .hero, .contact-hero {
    padding: 36px 2vw 28px 2vw;
  }
}

/* ===================== End of CSS ===================== */
