/* =========================================================
   CSS RESET & BASE STYLES
   ========================================================= */
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #18321A;
  background-color: #F8F6F3;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
}
img, svg {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #1A6F4F;
  text-decoration: underline;
  transition: color .2s;
}
a:hover, a:focus {
  color: #F5C063;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
li {
  margin-bottom: 8px;
}
strong {
  font-weight: 700;
}
.container {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #134A2E;
  margin-bottom: 18px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.325rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, label {
  font-size: 1rem;
  margin-bottom: 16px;
}
.text-section {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.38rem;
  }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Typography scale: 14, 16, 18, 24, 32, 48px used above */


/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */
header {
  background: #F3EEE7;
  box-shadow: 0 1px 10px rgba(30,50,40,0.04);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 18px;
}
.logo img {
  height: 40px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-right: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #18321A;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background .18s, color .18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E7EFE3;
  color: #134A2E;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  padding: 13px 35px;
  font-size: 1rem;
  text-decoration: none;
  transition: background .19s, color .19s, box-shadow .18s;
  margin-left: 10px;
  box-shadow: 0 4px 12px rgba(31, 72, 54, 0.04);
}
.btn-primary {
  background: #134A2E;
  color: #F8F6F3;
  box-shadow: 0 3px 14px rgba(19,74,46,0.09);
}
.btn-primary:hover, .btn-primary:focus {
  background: #1A6F4F;
  color: #ffffff;
  box-shadow: 0 5px 18px rgba(19,74,46,0.16);
}
.btn-secondary {
  background: #F5C063;
  color: #134A2E;
  border: 2px solid #F5C063;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #E8B142;
  color: #1A6F4F;
  border-color: #E8B142;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #134A2E;
  cursor: pointer;
  margin-left: 8px;
  transition: color.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #F5C063;
}

@media (max-width: 980px) {
  header .container {
    flex-direction: row;
    align-items: center;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* =====================
   MOBILE MENU OVERLAY
   ===================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21,35,25,0.93);
  z-index: 99;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.5,.28,.2,1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #F8F6F3;
  font-size: 2rem;
  padding: 24px 24px 8px 0;
  cursor: pointer;
  margin-bottom: 24px;
  transition: color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F5C063;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 0 28px;
}
.mobile-nav a {
  color: #F8F6F3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 16px 0;
  text-decoration: none;
  border-radius: 6px;
  transition: background .15s, color .15s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #18321A;
  color: #F5C063;
}

@media (max-width: 980px) {
  .main-nav {
    display: none !important;
  }
}

/* Hide hamburger button on desktop */
@media (min-width: 981px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* =========================================================
   SECTIONS & FLEXBOX SPACING
   ========================================================= */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 36px;
  box-shadow: none;
}
section:last-of-type {
  margin-bottom: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card-container, /* Generic card containers */
.feature-grid, .service-list, .service-card-grid,
.value-list, .workshop-benefits, .post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card, .service-item, .service-card, .value-item, .blog-post, .benefit-item {
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.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;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F3EFE7;
  border-radius: 24px 30px 18px 24px;
  box-shadow: 0 2px 12px rgba(30,50,40,.06);
  padding: 28px 22px 20px 22px;
  min-width: 240px;
  flex: 1 1 210px;
}
.value-item, .benefit-item {
  background: #F8F6F3;
  border-radius: 30px 22px 30px 18px;
  box-shadow: 0 2px 10px rgba(30,50,40,.07);
  padding: 26px 18px 18px 20px;
  flex: 1 1 220px;
  min-width: 210px;
}

/* Cards padding & shadow for modern organic look */
.service-item, .service-card, .blog-post {
  background: #FAF9F6;
  border-radius: 22px 34px 18px 24px;
  box-shadow: 0 2px 10px rgba(32,80,40,0.07);
  padding: 24px 18px 18px 18px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  color: #134A2E;
  background: #E7EFE3;
  border-radius: 16px;
  padding: 6px 16px;
  align-self: flex-start;
  margin-top: 10px;
  font-weight: 600;
}


/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-card {
  background: #F1F8F4;
  border-radius: 30px 22px 30px 20px;
  box-shadow: 0 5px 30px rgba(19,74,46,0.10);
  color: #134A2E;
  flex: 1 1 280px;
  max-width: 420px;
  min-width: 240px;
  transition: box-shadow .18s;
}
.testimonial-card p {
  font-size: 1.08rem;
  margin-bottom: 10px;
  color: #1A3324;
}
.testimonial-meta {
  font-size: 0.98rem;
  font-style: italic;
  color: #57977D;
}
.testimonial-card:hover {
  box-shadow: 0 8px 40px rgba(19,74,46,0.16);
}

/* =========================================================
   BLOG POSTS / POSTS
   ========================================================= */
.blog-post {
  transition: box-shadow 0.19s;
}
.blog-post:hover {
  box-shadow: 0 12px 30px rgba(32,80,40,0.14);
}
.post-list {
  gap: 32px;
}
.featured-posts {
  background: #F3EEE7;
  border-radius: 18px;
  padding: 18px 16px;
  margin-top: 18px;
}
.featured-posts ul {
  padding-left: 20px;
}
.featured-posts h4 {
  font-size: 1.12rem;
  color: #1A6F4F;
  margin-bottom: 7px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item h3 {
  margin-bottom: 6px;
  color: #1A6F4F;
}
.faq-item {
  background: #F8F6F3;
  border-radius: 22px 22px 16px 18px;
  box-shadow: 0 2px 10px rgba(32,80,40,0.06);
  padding: 14px 20px 14px 18px;
}

/* Misc content blocks */
.address-info,
.opening-hours,
.email-info {
  margin-bottom: 10px;
}

/* Section - confirmation message */
.confirmation-message {
  color: #1A6F4F;
  background: #E7EFE3;
  border-radius: 12px;
  padding: 12px 18px;
  margin: 16px 0 20px 0;
}

/* =========================================================
   CTA & ORGANIC DECORATIVE EFFECTS
   ========================================================= */
section {
  /* Add subtle natural shape via box-shadow */
  box-shadow: 0 10px 34px -16px rgba(19,74,46,0.13);
  background-image: url('../assets/organic-texture-light.svg'); /* fallback: to be replaced with real asset */
  background-repeat: repeat-x;
  background-position: bottom right;
}
@media (max-width: 650px) {
  section {
    border-radius: 22px;
    padding: 28px 4px;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: #134A2E;
  color: #F8F6F3;
  padding-top: 34px;
  padding-bottom: 28px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #F5C063;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  padding: 2px 8px;
  border-radius: 4px;
  transition: background .18s, color .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F5C063;
  color: #134A2E;
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.footer-info img {
  height: 38px;
  margin-bottom: 8px;
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 980px) {
  .card-container, .feature-grid, .service-list, .service-card-grid, .value-list, .workshop-benefits, .post-list {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .content-wrapper,
  .content-grid,
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .service-item, .service-card, .value-item, .benefit-item, .blog-post {
    min-width: 0;
    width: 100%;
    flex: unset;
  }
  .testimonial-card {
    max-width: 100%;
    flex: unset;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
  }
}

/* Mobile - less padding for main nav button */
@media (max-width: 480px) {
  .btn-primary, .btn-secondary {
    width: 100%;
    padding: 12px 8px;
    font-size: 1rem;
    margin-left: 0;
  }
}

/* =========================================================
   HOVER STATES, TRANSITIONS
   ========================================================= */
.btn-primary, .btn-secondary, .main-nav a, .mobile-nav a, .footer-nav a,
.card, .service-item, .service-card, .value-item, .benefit-item, .blog-post, .testimonial-card {
  transition: box-shadow 0.18s, background 0.18s, color 0.18s;
}
.card:hover, .service-card:hover, .service-item:hover, .value-item:hover, .benefit-item:hover {
  box-shadow: 0 10px 36px rgba(19,74,46,0.15);
  background: #F1F8F4;
}

/* =========================================================
   COOKIE CONSENT BANNER
   ========================================================= */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #18321A;
  color: #F8F6F3;
  padding: 22px 20px 22px 20px;
  z-index: 199;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  box-shadow: 0 -4px 28px rgba(19,74,46,0.22);
  font-size: 0.97rem;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-left: 28px;
}
.cookie-btn {
  border-radius: 24px;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.99rem;
  border: 0;
  cursor: pointer;
  margin-right: 4px;
  transition: background .16s, color .16s;
}
.cookie-btn.accept {
  background: #1A6F4F;
  color: #fff;
}
.cookie-btn.accept:hover {
  background: #F5C063;
  color: #18321A;
}
.cookie-btn.reject {
  background: #F4E6B9;
  color: #134A2E;
}
.cookie-btn.reject:hover {
  background: #F5C063;
  color: #134A2E;
}
.cookie-btn.settings {
  background: transparent;
  color: #F5C063;
  border: 2px solid #F5C063;
}
.cookie-btn.settings:hover {
  background: #F5C063;
  color: #134A2E;
}
@media (max-width: 670px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 14px 26px 14px;
    gap: 15px;
  }
  .cookie-buttons {
    margin-left: 0;
    gap: 9px;
  }
}

/* Cookie Modal Popup */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(19,74,46,0.35);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #F8F6F3;
  color: #134A2E;
  border-radius: 22px 18px 26px 18px;
  box-shadow: 0 12px 38px rgba(19,74,46,0.17);
  padding: 38px 32px 32px 32px;
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: cookieModalPop .37s .05s cubic-bezier(.4,1.2,.3,1) backwards;
}
@keyframes cookieModalPop {
  0% { transform: scale(.65); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  margin-top: 0;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  background: none;
  color: #1A6F4F;
  border: none;
  font-size: 1.65rem;
  cursor: pointer;
  transition: color .15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #F5C063;
}
.cookie-category {
  margin-bottom: 16px;
}
.cookie-category label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #134A2E;
}
.cookie-toggle {
  appearance: none;
  width: 40px;
  height: 20px;
  border-radius: 14px;
  background: #E7EFE3;
  outline: none;
  transition: background .15s;
  position: relative;
}
.cookie-toggle:checked {
  background: #1A6F4F;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 4px; top: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: left .14s;
}
.cookie-toggle:checked:before {
  left: 22px;
}

/* Category disabled: faded out switch */
.cookie-toggle[disabled] {
  background: #E7EFE3;
  opacity: .55;
}

/* =========================================================
   VISUALS & ORGANIC TOUCHES
   ========================================================= */
.feature-item img,
.value-item img,
.benefit-item img {
  height: 38px;
  width: 38px;
  margin-bottom: 10px;
}

.value-list, .workshop-benefits {
  gap: 24px;
}

.instructor-highlights {
  background: #F1F8F4;
  border-radius: 13px 20px 19px 14px;
  padding: 16px 16px 14px 18px;
  margin-top: 18px;
}
.instructor-highlights h3 {
  margin-bottom: 7px;
}

/******* Utility ******/
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 14px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 14px; }
.text-center { text-align: center; }

/******* Hide visually but accessible ******/
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); border: 0; }

/* Ensure NO grid properties or columns used anywhere. Only Flexbox! */
