/* =====================================================================
   CSS RESET + NORMALIZE (MOBILE-FIRST)
   ===================================================================== */
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 {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: #F0EDEA; /* Muted background */
}
body {
  background: #F0EDEA;
  color: #28335B;
  font-family: 'Open Sans', 'Georgia', serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #A88946;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #89681e;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
button, input, select, textarea {
  font: inherit;
}
button {
  border: none;
  background: none;
  cursor: pointer;
}
h1, h2, h3, h4, h5, h6 {
  color: #28335B;
  font-family: 'Montserrat', 'Georgia', serif;
  margin-bottom: 16px;
  font-weight: 700;
}
h1 {
  font-size: 2.3rem;
  line-height: 1.1;
}
h2 {
  font-size: 1.8rem;
  line-height: 1.2;
}
h3 {
  font-size: 1.3rem;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p {
  margin-bottom: 1.1em;
}
strong {
  font-weight: 700;
  color: #28335B;
}
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
}

/* =====================================================================
   LAYOUT WRAPPERS & FLEXBOX
   ===================================================================== */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(51, 45, 24, 0.07);
}
@media (max-width: 900px) {
  .section {
    padding: 28px 8px;
  }
}

.card-container, .feature-grid, .service-list, .workshop-list, .cooking-class-list, .personal-growth-list, .trip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card, .service-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 15px 0 rgba(51, 45, 24, 0.08);
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 260px;
  min-width: 240px;
  padding: 26px 22px 20px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid #ece8e4;
}
.card:hover, .service-card:hover {
  box-shadow: 0 4px 32px 0 rgba(40, 51, 91, 0.13);
  transform: translateY(-4px) scale(1.01);
  z-index: 1;
}
.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;
    gap: 18px;
    align-items: flex-start;
  }
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* =====================================================================
   BRAND/SECTION THEMING
   ===================================================================== */
.hero {
  background: #28335B;
  color: #fff;
  padding: 48px 0 44px 0;
  border-radius: 0 0 36px 36px;
  margin-bottom: 44px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  background: transparent !important;
  box-shadow: none;
  border: none;
}
.hero h1 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.hero p {
  color: #F0EDEA;
  font-size: 1.12rem;
}
.hero .cta-primary {
  margin-top: 20px;
  background: #A88946;
  color: #fff;
}

/* =====================================================================
   NAVIGATION & HEADER
   ===================================================================== */
header {
  background: #fff;
  border-bottom: 1px solid #edeaea;
  position: relative;
  z-index: 110;
  box-shadow: 0 1px 8px 0 rgba(40,51,91,0.03);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 16px 0;
  gap: 24px;
}
header img {
  height: 48px;
  width: auto;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
header nav a {
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  color: #28335B;
  padding: 6px 12px;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.01em;
}
header nav a:hover, header nav a:focus {
  background: #F0EDEA;
  color: #A88946;
  text-decoration: none;
}
.cta-primary {
  background: #A88946;
  color: #fff !important;
  font-family: 'Montserrat', serif;
  padding: 10px 28px;
  border-radius: 23px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-left: 14px;
  box-shadow: 0 3px 16px 0 rgba(168,137,70,0.06);
  transition: background 0.2s, color 0.2s, box-shadow 0.21s;
  display: inline-block;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: #89681e;
  color: #fff;
  box-shadow: 0 7px 22px 0 rgba(168,137,70,0.14);
  text-decoration: none;
}

/* Hide mobile menu by default; show burger */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #28335B;
  border-radius: 6px;
  font-size: 2rem;
  padding: 2px 16px;
  margin-left: 10px;
  border: 1px solid #ece8e4;
  box-shadow: 0 2px 8px rgba(40,51,91,.05);
  z-index: 120;
  transition: background 0.23s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #E6DFD7;
}
@media (max-width: 900px) {
  header .container nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 2px 38px 0 rgba(40,51,91,0.12);
  z-index: 150;
  transition: transform 0.34s cubic-bezier(0.66,0.02,0.43,0.98), opacity 0.29s;
  transform: translateX(-100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 22px 18px 0;
  font-size: 2.1rem;
  color: #A88946;
  background: transparent;
  border-radius: 6px;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F0EDEA;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 36px;
  width: 100%;
}
.mobile-nav a {
  color: #28335B;
  font-family: 'Montserrat', serif;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 12px 6px 12px 0;
  border-bottom: 1px solid #ece8e4;
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #A88946;
  background: #F0EDEA;
}
/* Only show hamburger + mobile when screen is small */
@media (max-width: 900px) {
  .mobile-menu {
    display: flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* =====================================================================
   FOOTER
   ===================================================================== */
footer {
  background: #28335B;
  color: #fff;
  padding: 38px 0 0 0;
  border-radius: 36px 36px 0 0;
  position: relative;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-bottom: 16px;
}
footer img {
  height: 46px;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
footer nav a {
  color: #A88946;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-decoration: underline dotted #eadfbf 2px;
  transition: color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
  text-decoration: underline solid #A88946 2px;
}
footer .text-section {
  text-align: center;
  color: #ece8e4;
  font-size: 0.98em;
}

/* =====================================================================
   FEATURE CARDS & VISUAL SECTIONS
   ===================================================================== */
.feature-grid, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
}
.feature {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(51,45,24,0.09);
  padding: 20px 20px 16px 20px;
  min-width: 185px;
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  border-left: 4px solid #A88946;
  position: relative;
  transition: box-shadow 0.20s, transform 0.18s;
}
.feature img {
  width: 36px;
  height: 36px;
  margin-bottom: 7px;
}
.feature h3 {
  margin-bottom: 2px;
  font-size: 1.1rem;
}
.feature p {
  font-size: 0.99rem;
  color: #555;
  margin-bottom: 0;
}

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: #FAF9F7;
  border-radius: 13px;
  box-shadow: 0 2px 12px 0 rgba(40, 51, 91, 0.08);
  min-width: 275px;
  flex: 1 1 340px;
  margin-bottom: 20px;
  border: 1px solid #ece8e4;
  transition: box-shadow 0.16s;
  color: #28335B;
  font-size: 1.0em;
}
.testimonial-card p strong {
  display: inline-block;
  margin-top: 8px;
  color: #A88946;
  font-weight: bold;
}
.testimonial-card .user-avatar {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: #e8e5e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #A88946;
  overflow: hidden;
}
.testimonial-card img {
  width: 28px; height: 28px;
}
@media (max-width: 900px) {
  .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
}

/* =====================================================================
   CARD AND LIST ELEMENTS
   ===================================================================== */
.service-card {
  display: flex;
  flex-direction: column;
  gap: 9px;
  border-left: 5px solid #A88946;
}
.service-card h3 {
  font-size: 1.13rem;
}
.service-card span {
  color: #A88946;
  font-weight: 700;
  font-size: 1.0rem;
}

.instructor-bios, .chef-bios, .expert-bios, .trip-leader-bios, .trip-itinerary-preview {
  background: #f9f7f4;
  border-radius: 10px;
  padding: 16px 18px;
  margin: 14px 0 20px 0;
  box-shadow: 0 1px 8px 0 rgba(168,137,70,0.09);
}
.instructor-bios h3, .chef-bios h3, .expert-bios h3, .trip-leader-bios h3, .trip-itinerary-preview h3 {
  font-size: 1.09em;
  color: #28335B;
  margin-bottom: 12px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
  color: #222;
  margin-bottom: 14px;
}
.text-section ul {
  list-style: none;
  margin-bottom: 0;
  padding: 0;
  margin-top: 6px;
}
.text-section li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 0.98em;
  color: #383838;
}
.text-section img {
  width: 22px; height: 22px;
  margin-right: 5px;
}

ul li img {
  margin-right: 9px;
  vertical-align: middle;
}
@media (max-width: 700px) {
  .container {
    padding: 0 2vw;
  }
  .card, .service-card { min-width: 170px; }
}

/* ---------------------------------------------------------------------
   Feature Items (For .feature-item, could be extended)
   --------------------------------------------------------------------- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 14px;
}

/* =====================================================================
   BUTTONS & FORM ELEMENTS
   ===================================================================== */
button, .button, input[type="submit"], .cta-secondary {
  font-family: 'Montserrat', serif;
  font-size: 1.0rem;
  padding: 10px 24px;
  border-radius: 22px;
  background: #F0EDEA;
  color: #28335B;
  transition: background 0.19s, color 0.19s, box-shadow 0.17s;
  box-shadow: 0 2px 12px 0 rgba(40, 51, 91, 0.03);
  border: 1px solid #ece8e4;
  cursor: pointer;
}
button:hover, .button:hover, input[type="submit"]:hover, .cta-secondary:hover,
button:focus, .button:focus, input[type="submit"]:focus, .cta-secondary:focus {
  background: #A88946;
  color: #fff;
  border-color: #A88946;
  outline: none;
}
input, textarea, select {
  border: 1px solid #ddd7d1;
  padding: 10px 15px;
  font-size: 0.99rem;
  border-radius: 10px;
  margin: 8px 0 18px 0;
  width: 100%;
  background: #fff;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #A88946;
  outline: none;
}

/* =====================================================================
   RESPONSIVE DESIGN
   ===================================================================== */
@media (max-width: 700px) {
  .container {
    max-width: 100%;
    padding: 0 6px;
  }
  .section {
    padding: 19px 2vw;
    margin-bottom: 40px;
    border-radius: 8px;
  }
  .hero {
    padding: 30px 0 31px 0;
    border-radius: 0 0 12px 12px;
  }
  footer {
    padding: 28px 0 0 0;
    border-radius: 12px 12px 0 0;
  }
  footer .container {
    gap: 12px;
    padding-bottom: 6px;
  }
  .feature, .card, .service-card {
    min-width: 95vw;
    padding: 16px 10px 14px 14px;
  }
  .testimonial-list {
    gap: 10px;
  }
  .testimonial-card {
    padding: 16px 8px;
    font-size: 0.97em;
  }
}

/* =====================================================================
   COOKIE CONSENT BANNER & MODAL
   ===================================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 2px solid #A88946;
  box-shadow: 0 -2px 20px 0 rgba(40,51,91,0.07);
  padding: 18px 18px 18px 22px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: transform 0.37s cubic-bezier(0.68,0.01,0.28,1.01), opacity 0.22s;
  font-size: 1.01rem;
}
.cookie-banner.hide {
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  gap: 13px;
  margin-top: 7px;
  flex-wrap: wrap;
}
.cookie-banner button {
  min-width: 108px;
  font-size: 1.0em;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.cookie-banner .accept {
  background: #A88946; color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #89681e; color: #fff;
}
.cookie-banner .reject {
  background: #fff;
  color: #A88946;
  border: 1.5px solid #A88946;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #A88946;
  color: #fff;
}
.cookie-banner .settings {
  background: #E6DFD7;
  color: #28335B;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #efd780;
  color: #28335B;
}
@media (max-width: 600px) {
  .cookie-banner { padding: 13px 4vw; font-size: 0.99em; }
  .cookie-banner .cookie-banner-buttons { flex-direction: column; gap: 7px; }
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 10001;
  background: rgba(40,51,91,0.21);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 44px 0 rgba(40,51,91,0.17);
  padding: 38px 32px 30px 32px;
  min-width: 320px;
  max-width: 92vw;
  z-index: 10002;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal h2 {
  font-size: 1.27rem;
  color: #28335B;
  margin-bottom: 10px;
  font-family: 'Montserrat', serif;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}
.cookie-modal .category label {
  font-size: 1.0em;
  color: #232323;
  cursor: pointer;
}
.cookie-modal .category input[type="checkbox"] {
  width: 19px; height: 19px;
}
.cookie-modal .category .essential {
  color: #A88946;
  font-weight: bold;
}
.cookie-modal .cookie-modal-buttons {
  margin-top: 18px;
  display: flex;
  gap: 12px;
}
.cookie-modal button {
  min-width: 102px;
}
.cookie-modal .close-btn {
  position: absolute;
  right: 18px;
  top: 12px;
  background: transparent;
  color: #28335B;
  font-size: 1.8rem;
  border-radius: 6px;
  transition: background 0.14s;
}
.cookie-modal .close-btn:hover, .cookie-modal .close-btn:focus {
  background: #F0EDEA;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 21px 6vw 18px 6vw;
    min-width: 0;
  }
}

/* =====================================================================
   MICRO-ANIMATIONS & TRANSITIONS
   ===================================================================== */
.card, .feature, .service-card, .testimonial-card {
  transition: box-shadow 0.23s, transform 0.22s;
}
.card:hover, .feature:hover, .service-card:hover {
  box-shadow: 0 8px 28px 0 rgba(40,51,91,0.14);
  transform: scale(1.024);
}
.cta-primary, button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.12s, color 0.12s, box-shadow 0.14s, opacity 0.13s, transform 0.11s;
}
.mobile-menu {
  transition: transform 0.34s cubic-bezier(0.66,0.02,0.43,0.98), opacity 0.19s;
}

/* =====================================================================
   UTILITIES & HELPERS
   ===================================================================== */
.d-none { display: none !important; } /* for js toggle */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.gap-xs { gap: 8px; }
.gap-s { gap: 16px; }
.gap-m { gap: 24px; }
.gap-l { gap: 38px; }

/* =====================================================================
   PRINT & DARK MODE - for future extension
   ===================================================================== */
@media print {
  *, *:before, *:after { background: #fff !important; color: #000 !important; box-shadow: none !important; }
  a, a:visited { color: #000 !important; text-decoration: underline; }
}
