/* --- CSS RESET & BASE --- */
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background-color: #F2E9E4;
  color: #22223B;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
:focus-visible {
  outline: 2px solid #8DC88E;
}

/* --- CUSTOM PROPERTIES --- */
:root {
  --color-primary: #22223B; /* dark blue/eggplant */
  --color-secondary: #4A4E69; /* soft slate */
  --color-accent: #8DC88E; /* nature green accent */
  --color-bg: #F2E9E4; /* pale earth accent */
  --color-cream: #E9E4DB;
  --color-tan: #B5A68F;
  --color-brown: #88755C;
  --color-green-dark: #43613B;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --radius-card: 20px;
  --shadow-soft: 0 2px 16px 0 rgba(68, 87, 48, 0.08);
  --shadow-card: 0 4px 18px 0 rgba(68, 87, 48, 0.10);
  --shadow-btn: 0 1px 6px 0 rgba(130, 144, 97, 0.18);
}

/* -- GENERAL TYPOGRAPHY -- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  color: var(--color-primary);
}
h1 {
  font-size: 2.4rem;
  line-height: 1.14;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  line-height: 1.18;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 8px;
}
p, ul, ol, li, address {
  font-size: 1rem;
  color: var(--color-secondary);
}
p, ul, ol {
  margin-bottom: 14px;
}
strong, b { color: var(--color-green-dark); }

/* -- CONTAINER & SECTION STYLES -- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-section,
.faq-preview {
  margin-bottom: 20px;
}

/* -- NATURE ORGANIC DESIGN DETAILS -- */
body {
  background-color: var(--color-bg);
  background-image: url('assets/bg-texture-light.png'); /* fallback: subtle soft grainy or leaf pattern */
  background-repeat: repeat;
}

section {
  border-radius: 36px 16px 42px 30px/30px 48px 32px 36px;
  background: #fff8f4;
  box-shadow: var(--shadow-soft);
  margin-bottom: 60px;
  padding: 40px 20px;
}

.hero {
  background: var(--color-bg);
  background-image: url('assets/bg-nature-hero.svg'), url('assets/bg-texture-light.png');
  background-repeat: no-repeat, repeat;
  background-position: right bottom, left top;
  border-radius: 0 0 42px 42px/0 0 32px 32px;
  box-shadow: none;
  padding-top: 64px;
  padding-bottom: 64px;
  margin-bottom: 60px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(191,170,125,0.05);
  position: sticky; top: 0; z-index: 89;
}
header .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}
header img {
  height: 44px;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
header nav a {
  color: var(--color-secondary);
  font-weight: 500;
  font-size: 1rem;
  padding: 4px 10px;
  border-radius: 8px;
  transition: background .18s;
}
header nav a:hover, header nav a:focus {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  background: var(--color-accent);
  color: #fff;
  border-radius: 40px;
  padding: 12px 32px;
  border: none;
  box-shadow: var(--shadow-btn);
  transition: background 0.22s, box-shadow 0.18s, transform 0.12s;
  margin-left: 20px;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-green-dark);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 22px 0 rgba(67,97,59,0.18);
}

/* -- MOBILE NAVIGATION MENU -- */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-btn);
  position: relative;
  z-index: 120;
  transition: background 0.18s, color 0.14s, box-shadow 0.18s;
  border: none;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-green-dark);
}
.mobile-menu-toggle:hover {
  background: var(--color-green-dark);
}
.mobile-menu {
  position: fixed;
  z-index: 1500;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(242,233,228,0.96);
  box-shadow: 0 4px 24px 0 rgba(42,63,31,0.13);
  display: flex; flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 28px 24px 0 24px;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.63,.28,.44,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  border: none;
  background: transparent;
  color: var(--color-secondary);
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 18px;
  transition: color 0.18s;
}
.mobile-menu-close:hover { color: var(--color-green-dark); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 10px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: var(--color-primary);
  padding: 12px 0;
  border-radius: 12px;
  font-weight: 500;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--color-accent);
  color: #fff;
}
@media (max-width: 1000px) {
  header nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1001px) {
  .mobile-menu { display: none!important; }
}

/* --- FLEXBOX LAYOUT UTILITIES --- */
.feature-grid,
.service-list,
.blog-list,
.testimonial-slider,
.testimonial-grid,
.card-container,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card-container { gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.content-grid { gap: 20px; justify-content: space-between; }
.text-image-section { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.testimonial-card {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 20px; padding: 20px; background: #fff;
  border-radius: 22px 16px 30px 20px/18px 28px 32px 20px;
  box-shadow: var(--shadow-card);
  min-width: 260px;
  max-width: 420px;
  margin-bottom: 20px;
}
.feature-item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 15px;
  background: #f7f5ed;
  border-radius: 20px 26px 18px 22px/10px 24px 14px 20px;
  box-shadow: 0 2px 14px 0 rgba(130, 144, 97, 0.08);
  padding: 24px 18px;
  min-width: 220px; flex: 1 1 240px;
}
.course-highlight, .workshop-item {
  background: #e9f6ea;
  padding: 22px 18px;
  border-radius: 20px 20px 14px 22px/18px 24px 10px 20px;
  margin-bottom: 20px;
  box-shadow: 0 1px 10px 0 rgba(150,168,130,0.10);
  flex: 1 1 200px;
}
.article-preview {
  background: #fff;
  padding: 26px 18px;
  border-radius: 18px 16px 22px 20px/10px 20px 16px 16px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  flex: 1 1 300px;
  transition: box-shadow .2s, transform .15s;
  position: relative;
}
.article-preview:hover {
  box-shadow: 0 8px 28px 0 rgba(137, 192, 108, 0.11);
  transform: translateY(-3px) scale(1.015);
}

/* -- TESTIMONIALS CARD ENHANCEMENTS -- */
.testimonial-card {
  background: #fff;
  color: var(--color-primary);
}
.testimonial-info strong {
  color: var(--color-green-dark);
  font-size: 1rem;
}
.star-rating {
  color: #D4B767;
  font-size: 1.2rem;
  margin-left: 8px;
}

/* --- BLOG CARD/LIST --- */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.article-preview h3 a {
  color: var(--color-green-dark);
  text-decoration: underline dotted 2px var(--color-accent);
  transition: color .16s;
}
.article-preview h3 a:hover { color: var(--color-secondary); }
.categories {
  margin: 16px 0 18px 0;
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: center;
}
.categories a {
  color: var(--color-green-dark);
  font-size: 15px;
  background: #e5f3e4;
  padding: 3px 13px;
  border-radius: 17px;
  transition: background 0.20s, color 0.14s;
}
.categories a:hover { color: #fff; background: var(--color-green-dark); }

/* -- SEARCH BAR -- */
.search-bar {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  align-items: center;
}
.search-bar input[type="search"] {
  border-radius: 18px;
  border: 1px solid #CFDBCB;
  padding: 10px 16px;
  font-size: 1rem;
  background: #f7faf7;
  min-width: 180px;
  transition: border .17s;
}
.search-bar input[type="search"]:focus {
  border-color: var(--color-green-dark);
}
.search-bar button {
  background: var(--color-accent);
  color: #fff;
  padding: 10px 22px;
  font-size: 1rem;
  border: none;
  border-radius: 16px;
  box-shadow: 0 1px 7px 0 rgba(130, 144, 97, 0.12);
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.16s;
}
.search-bar button:hover {
  background: var(--color-green-dark);
  box-shadow: 0 5px 16px 0 rgba(130, 144, 97, 0.16);
}

/* --- FOOTER --- */
footer {
  background: #E9E4DB;
  border-radius: 48px 48px 0 0/36px 36px 0 0;
  box-shadow: 0 -3px 22px 0 rgba(210,194,153,0.07);
  padding: 40px 0 20px 0;
  margin-top: 80px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 38px;
}
.footer-menu {
  display: flex; flex-direction: column; gap: 6px;
}
.footer-menu a {
  color: var(--color-brown);
  font-size: 14px;
  transition: color 0.13s;
}
.footer-menu a:hover { color: var(--color-green-dark); }
.contact-info {
  display: flex; flex-direction: column;
  gap: 14px; max-width: 270px;
  font-size: 1rem;
  color: #594e36;
}
.contact-info img:first-child {
  width: 52px; margin-bottom: 8px;
}
.contact-info address {
  font-style: normal; margin-top: 4px; margin-bottom: 8px;
  color: #624B34;
}
.contact-info a {
  color: var(--color-green-dark);
  font-size: 1rem;
  transition: color .14s;
}
.contact-info a:hover { color: var(--color-brown); }
.social-media {
  display: flex; gap: 18px; align-items: center;
  margin-top: 12px;
}
.social-media img {
  width: 36px; height: 36px; border-radius: 50%;
  background: #e9f6ea;
  padding: 6px;
  box-shadow: 0 1px 4px 0 rgba(143, 167, 120, 0.12);
  transition: background .13s;
}
.social-media a:hover img {
  background: var(--color-accent);
}

/* --- FAQ, MAP and TEXT SECTIONS --- */
.faq-preview {
  background: #fff8f4;
  border-radius: 18px 10px 22px 14px/8px 16px 16px 12px;
  padding: 16px 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 9px 0 rgba(150,168,130,0.10);
}
.map-location {
  margin-top: 12px;
  background: #f7f7ef;
  border-radius: 14px 18px 18px 8px/8px 18px 8px 10px;
  padding: 14px 16px;
  font-size: 1rem;
  color: #524a37;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #e3e9d1;
  color: var(--color-primary);
  padding: 18px 16px 18px 16px;
  z-index: 1600;
  box-shadow: 0 -4px 22px 0 rgba(137, 192, 108, 0.15);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  border-radius: 16px 16px 0 0/8px 8px 0 0;
  transition: transform .38s cubic-bezier(0.43,0.84,0.33,1);
}
.cookie-banner.hide {
  transform: translateY(140%);
}
.cookie-banner__txt {
  flex: 1 1 auto;
  font-size: 1rem;
  color: var(--color-primary);
}
.cookie-banner__actions {
  display: flex; gap: 12px;
}
.cookie-btn {
  padding: 8px 22px;
  border-radius: 16px;
  border: none;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  transition: background .17s, color .16s, box-shadow .14s;
  cursor: pointer;
}
.cookie-btn.accept {
  background: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--color-green-dark);
}
.cookie-btn.reject {
  background: #fff;
  color: var(--color-green-dark);
  border: 1px solid var(--color-green-dark);
}
.cookie-btn.reject:hover {
  background: var(--color-green-dark); color: #fff;
}
.cookie-btn.settings {
  background: #B5A68F;
  color: #fff;
}
.cookie-btn.settings:hover { background: var(--color-brown); }

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  z-index: 1700; left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,34,59,0.38);
  display: flex; align-items: center; justify-content: center;
  pointer-events: all;
}
.cookie-modal__dialog {
  background: #fff;
  color: var(--color-primary);
  border-radius: 22px 22px 10px 24px/18px 18px 22px 18px;
  box-shadow: 0 8px 36px 0 rgba(34,34,59,0.14);
  padding: 40px 28px 24px 28px;
  max-width: 98vw;
  min-width: 320px; max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeInModal .38s cubic-bezier(.52,.51,.41,1);
}
@keyframes fadeInModal { from { opacity:0; transform: translateY(60px);} to {opacity:1; transform: none;} }
.cookie-modal .cookie-btn-row {
  margin-top: 12px;
  display: flex; gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-category {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.cookie-modal label {
  color: var(--color-secondary);
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--color-accent);
  width: 18px; height: 18px;
}
.cookie-category .category-label {
  font-weight: 500;
  font-size: 1rem;
}

/* -- TABLES, OL, UL -- */
table {
  width: 100%; border-collapse: collapse; margin-bottom: 18px;
  background: #FAF8F3;
  border-radius: 16px 14px 16px 12px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
th, td {
  padding: 12px; text-align: left;
  font-size: 1rem;
}
ul, ol {
  margin-bottom: 16px;
  padding-left: 22px;
  color: var(--color-green-dark);
}
ul li, ol li {
  margin-bottom: 7px;
  color: var(--color-secondary);
}
ol { list-style-type: decimal; }
ul { list-style-type: disc; }

/* -- ACCESSIBILITY & MICROINTERACTIONS -- */
a, button, .btn-primary, .cookie-btn {
  transition: color .16s, background .14s, box-shadow .16s, transform .13s;
}
a:focus-visible, button:focus-visible, .btn-primary:focus-visible {
  outline: 2px solid var(--color-accent) !important;
  outline-offset: 2px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .content-wrapper { gap: 15px; }
  .feature-grid { gap: 16px; }
}

@media (max-width: 768px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.22rem; }
  .section, section, .hero { padding: 24px 8px; }
  section { border-radius: 24px; }
  .feature-grid, .blog-list, .testimonial-grid, .testimonial-slider, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .footer-menu, .contact-info, .social-media, footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .card-container, .service-list { flex-direction: column; gap: 16px; }
  .text-image-section { flex-direction: column; gap: 18px; align-items: flex-start; }
  .btn-primary { margin-left: 0; }
  .hero { padding-top: 28px; padding-bottom: 38px; }
  header .container { flex-direction: row; gap: 10px; }
  .cookie-modal__dialog { padding: 22px 8px 18px 8px; }
}

@media (max-width: 480px) {
  .container { padding-left: 4px; padding-right: 4px; }
  .section, section, .hero { padding: 13px 2px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 14px; padding: 10px 5px; }
  .cookie-banner__actions { gap: 8px; }
  .cookie-modal__dialog { min-width: 92vw; max-width: 98vw; }
}

/* --- TEXT/ACCESSIBILITY IMPROVEMENTS FOR TESTIMONIALS --- */
.testimonial-card, .testimonial-card p, .testimonial-info {
  color: #172615;
  background: #fff;
  font-family: var(--font-body);
}
.testimonial-info strong { color: var(--color-green-dark); font-weight: 700; }

/* ----- ADD ORGANIC/NATURE BUTTON SHAPES/ELEMENTS ----- */
.btn-primary, .cookie-btn {
  border-radius: 40px 20px 25px 30px/24px 30px 20px 20px;
  box-shadow: var(--shadow-btn);
}

/* ORGANIC CARD SHADOWS */
.feature-item, .course-highlight, .workshop-item {
  border-left: 5px solid var(--color-accent);
  box-shadow: 0 4px 16px 0 rgba(130, 175, 98, 0.08);
}

/* --- ORGANIC ACCENTS (decorative dots/leaves, optional svg backgrounds) --- */
/* Decorative elements could be created by :before/:after with SVGs or pngs, but to minimize code, expect background images to be available under assets/...
*/

/* --- PRINT STYLES (improves for accessibility/clean print) --- */
@media print {
  nav, .mobile-menu-toggle, .btn-primary, .cookie-banner, .cookie-modal, .search-bar, .social-media { display: none!important; }
  header, footer { box-shadow: none !important; }
  section, .container, main { box-shadow: none !important; background: #fff!important; }
}
