/*===========================
  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,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  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;
  font-family: 'Lato', Arial, sans-serif;
  background: #F8FAF9;
  color: #12405E;
  font-size: 1rem;
  line-height: 1.7;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
a {
  color: #28744A;
  text-decoration: underline;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #12405E;
}
ul, ol {
  margin-left: 1.25em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
strong {
  font-weight: bold;
}
main {
  flex: 1 0 auto;
  width: 100%;
}
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/*===========================
  TYPOGRAPHY
===========================*/
h1, .hero h1 {
  font-family: 'Merriweather', 'Georgia', serif;
  font-weight: 700;
  color: #28744A;
  font-size: 2.5rem;
  margin-bottom: 12px;
}
h2 {
  font-family: 'Merriweather', 'Georgia', serif;
  color: #28744A;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 12px;
}
h3 {
  font-family: 'Merriweather', 'Georgia', serif;
  color: #12405E;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: 'Merriweather', 'Georgia', serif;
  color: #28744A;
}
p, li, dd {
  font-family: 'Lato', Arial, sans-serif;
  color: #12405E;
}

/* Responsive Typography */
@media (max-width: 900px) {
  h1, .hero h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}
@media (max-width: 600px) {
  h1, .hero h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
}

/*==========================
  HEADER & NAVIGATION
==========================*/
header {
  width: 100%;
  background: #E7EED9;
  box-shadow: 0 2px 12px rgba(40,116,74,0.06);
  padding: 0;
  position: relative;
  z-index: 50;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 20px;
  gap: 24px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Lato', Arial, sans-serif;
  color: #12405E;
  background: transparent;
  padding: 7px 14px;
  font-size: 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav .primary-cta {
  background: #28744A;
  color: white;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(40,116,74,0.08);
  font-weight: bold;
  letter-spacing: 0.04em;
  padding: 7px 24px;
  margin-left: auto;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #d6e4ca;
  color: #28744A;
}
.main-nav .primary-cta:hover, .main-nav .primary-cta:focus {
  background: #12405E;
  color: #E7EED9;
  box-shadow: 0 4px 16px rgba(40,116,74,0.12);
}
.main-nav img {
  height: 38px;
  width: auto;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 0;
}

/* Hamburger Button */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: #28744A;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  z-index: 102;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #12405E;
  color: #E7EED9;
}

/*==========================
  MOBILE MENU
==========================*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(232,238,217,0.97);
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0;
  box-sizing: border-box;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #28744A;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  width: 42px;
  height: 42px;
  margin: 24px 12px 0 24px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #12405E;
  color: #E7EED9;
}
.mobile-nav {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 0 36px;
}
.mobile-nav a {
  color: #28744A;
  background: transparent;
  padding: 14px 0;
  font-size: 1.25rem;
  text-align: left;
  border-bottom: 1px solid #d8eac2;
  transition: color 0.16s;
  text-decoration: none;
  border-radius: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #12405E;
}
/* Mobile menu overlay disables body scroll when open */
body.menu-open {
  overflow: hidden;
}

/*==========================
  HERO SECTION
==========================*/
.hero {
  background: linear-gradient(105deg, #E7EED9 40%, #f1dcea 100%);
  padding: 60px 0 40px 0;
  margin-bottom: 60px;
  position: relative;
}
.hero .container {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero h1 {
  color: #28744A;
  font-size: 2.6rem;
}
.hero p {
  margin: 14px 0 30px 0;
  color: #12405E;
  font-size: 1.15rem;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #28744A;
  color: #fff;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: bold;
  padding: 12px 34px;
  border-radius: 26px;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(40,116,74,0.09);
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, transform 0.14s;
}
.cta-button:hover, .cta-button:focus {
  background: #12405E;
  color: #e7eed9;
  box-shadow: 0 8px 24px rgba(40,116,74,0.11);
  transform: translateY(-2px) scale(1.04);
}

/*==========================
  SECTIONS, CARDS & LISTS
==========================*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FCFDFB;
  border-radius: 24px;
  box-shadow: 0 4px 30px 0 rgba(202,217,189,0.07);
  display: flex;
  flex-direction: column;
}
.features, .about, .tours, .faq, .contact, .cta, .testimonials, .footer {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
}
ul.feature-list, ul.tour-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  list-style: none;
  margin: 0 0 8px 0;
  padding: 0;
}
ul.feature-list li,
ul.tour-list li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(56,56,68,0.05);
  padding: 26px 24px 24px 24px;
  flex: 1 0 228px;
  min-width: 200px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  transition: box-shadow 0.22s, transform 0.18s;
}
ul.feature-list li:hover, ul.tour-list li:hover {
  box-shadow: 0 8px 34px 0 rgba(40,116,74,0.14);
  transform: translateY(-3px) scale(1.01);
}
ul.feature-list img {
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
}

/* Main content lists */
ul, ol {
  margin-bottom: 16px;
}
ul li, ol li {
  padding-left: 0;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(40,116,74,0.07);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.19s;
}
.card:hover {
  box-shadow: 0 10px 36px rgba(40,116,74,0.14);
  transform: translateY(-3px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 20px 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

/*============================
  TESTIMONIALS & CARDS
============================*/
.testimonials {
  padding: 40px 20px;
  margin-bottom: 60px;
  background: #f9fbe9;
  border-radius: 24px;
}
.testimonials h2 {
  color: #28744A;
  margin-bottom: 28px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 24px 26px;
  background: #ffffff;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 4px 30px 0 rgba(56,56,68,0.10);
  border-left: 6px solid #E7EED9;
  color: #12405E;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  transition: box-shadow 0.2s, border-color 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 38px 0 rgba(40,116,74,0.14);
  border-left: 6px solid #28744A;
}
.testimonial-card p {
  font-style: italic;
  color: #12405E;
  margin-bottom: 8px;
}
.testimonial-card strong {
  color: #28744A;
  font-weight: bold;
}
.testimonial-card div:last-child {
  font-size: 1rem;
  color: #28744A;
}
.testimonial-card div:first-of-type:not(:only-of-type) {
  color: #FFD700;
  font-size: 1.2rem;
  letter-spacing: 0.09em;
}


/*==========================
  CTA / CALL TO ACTION
==========================*/
.cta {
  background: linear-gradient(105deg, #e7eed9 58%, #f1dcea 100%);
  padding: 38px 20px 34px 20px;
  border-radius: 24px;
  text-align: center;
  margin-bottom: 60px;
  box-shadow: 0 6px 32px 0 rgba(40,116,74,0.07);
}
.cta h2, .cta h1 {
  color: #28744A;
  margin-bottom: 18px;
}

/*============================
  FAQ / DL-LISTS
============================*/
.faq dl {
  margin: 0 0 24px 0;
}
.faq dt {
  font-weight: bold;
  color: #28744A;
  margin-top: 18px;
  margin-bottom: 4px;
  font-size: 1.1rem;
}
.faq dd {
  padding-left: 0.7em;
  margin-bottom: 8px;
}

/* SECTION SPACING */
.section,
.features, .about, .tours, .faq, .testimonials,
.cta, .contact, .footer {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/*============================
  FOOTER
============================*/
footer {
  background: #E7EED9;
  padding: 36px 0 14px 0;
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #28744A;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  padding: 5px 14px;
  transition: background 0.17s, color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #28744A;
  color: #fff;
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  color: #12405E;
  font-size: 1rem;
}
.footer-info img {
  height: 38px;
  margin-bottom: 6px;
  border-radius: 0;
}
.footer-info a {
  color: #12405E;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-info a:hover, .footer-info a:focus {
  color: #28744A;
}

/*============================
  COOKIE CONSENT BANNER
============================*/
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 5000;
  background: #fff;
  color: #12405E;
  box-shadow: 0 -6px 24px 0 rgba(40,116,74,0.10);
  border-radius: 24px 24px 0 0;
  padding: 24px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  animation: cookieSlideIn 0.65s cubic-bezier(0.67,0,0.29,1);
}
@keyframes cookieSlideIn {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 6px;
}
.cookie-consent-banner button {
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 18px;
  border: none;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(40,116,74,0.07);
  cursor: pointer;
  background: #E7EED9;
  color: #12405E;
  transition: background 0.16s, color 0.16s;
}
.cookie-consent-banner button.accept {
  background: #28744A;
  color: #fff;
}
.cookie-consent-banner button.accept:hover,
.cookie-consent-banner button.accept:focus {
  background: #12405E;
  color: #E7EED9;
}
.cookie-consent-banner button.reject {
  background: #d2ebed;
  color: #28744A;
}
.cookie-consent-banner button.reject:hover,
.cookie-consent-banner button.reject:focus {
  background: #D2D8ED;
  color: #12405E;
}
.cookie-consent-banner button.settings {
  background: #fff8f2;
  color: #12405E;
  border: 1px solid #E7EED9;
}
.cookie-consent-banner button.settings:hover,
.cookie-consent-banner button.settings:focus {
  background: #F9EFE3;
  color: #28744A;
}

/*--------------------------
 Cookie Modal Overlay
--------------------------*/
.cookie-modal-overlay {
  position: fixed;
  z-index: 5100;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18,64,94,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal 0.25s cubic-bezier(0.67,0,0.29,1);
}
@keyframes fadeInCookieModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 36px 0 rgba(40,116,74,0.14);
  padding: 36px 26px 24px 26px;
  max-width: 480px;
  width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: popInCookieModal 0.25s cubic-bezier(0.67,0,0.29,1);
}
@keyframes popInCookieModal {
  from { transform: scale(0.97) translateY(60px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  color: #28744A;
  font-size: 1.2rem;
}
.cookie-modal ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.cookie-modal li {
  margin-bottom: 10px;
  color: #12405E;
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 10px;
}
.cookie-modal .toggle-switch {
  margin-left: auto;
}
.cookie-modal .save-btn {
  margin-top: 12px;
  background: #28744A;
  color: #fff;
}
.cookie-modal .save-btn:hover,
.cookie-modal .save-btn:focus {
  background: #12405E;
  color: #E7EED9;
}

.toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #E7EED9;
  border-radius: 20px;
  transition: background 0.2s;
}
.toggle-switch input:checked + .toggle-slider {
  background: #28744A;
}
.toggle-slider:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(18,64,94,0.10);
  transition: transform 0.18s;
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(17px);
}
.toggle-slider {
  cursor: pointer;
}

/*============================
  RESPONSIVE DESIGN
============================*/
@media (max-width: 1100px) {
  .main-nav {
    gap: 14px;
    padding: 8px 10px;
  }
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 900px) {
  ul.feature-list li, ul.tour-list li {
    flex: 1 0 160px;
    min-width: 140px;
  }
}
@media (max-width: 820px) {
  .main-nav {
    gap: 8px;
    font-size: 0.98rem;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cookie-consent-banner {
    max-width: 98vw;
    padding: 18px 6px 8px 6px;
  }
  ul.feature-list, ul.tour-list {
    flex-direction: column;
    gap: 18px;
  }
  .cta {
    padding: 34px 10px 28px 10px;
  }
}
@media (max-width: 600px) {
  .features, .about, .tours, .faq, .testimonials,
  .cta, .contact, .footer, .section {
    padding: 24px 4px;
    margin-bottom: 32px;
    border-radius: 16px;
  }
  .footer-info {
    font-size: 0.97rem;
  }
  .testimonial-card {
    padding: 17px 10px;
  }
  .cookie-modal {
    padding: 17px 6px 14px 6px;
    border-radius: 15px;
  }
}

/*============================
  MICROINTERACTIONS & ANIMATIONS
============================*/
button, .cta-button, a {
  transition: background 0.15s, color 0.15s, box-shadow 0.18s, transform 0.13s;
}

/*==============
  PRINT STYLES
==============*/
@media print {
  *, *:before, *:after { background: transparent !important; color: #000 !important; box-shadow: none !important; text-shadow: none !important; }
  header, .main-nav, .footer-nav, .footer-info, .mobile-menu, .cookie-consent-banner { display: none !important; }
}

/*===================================
  CUSTOM SCROLLBAR (PASTEL FLAVOR)
===================================*/
::-webkit-scrollbar { width: 12px; background: #F8FAF9; }
::-webkit-scrollbar-thumb { background: #E7EED9; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #d2eac2; }

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