/* =====================================================================
   1. CSS Reset and Base Normalize
   ===================================================================== */
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, body {
  height: 100%;
  font-family: 'Roboto', Arial, sans-serif;
  background: #FAFAF6;
  color: #11201A;
}
body {
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: disc inside;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
im g {
  max-width: 100%;
  display: block;
}

/* =====================================================================
   2. Typography
   ===================================================================== */
h1, h2, h3, h4 {
  font-family: 'Merriweather', Georgia, serif;
  color: #386641;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

p, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #11201A;
}
p {
  margin-bottom: 16px;
}
.strong, strong {
  font-weight: 600;
  color: #386641;
}
.subheadline {
  color: #11201A;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

/* =====================================================================
   3. Layout Containers
   ===================================================================== */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(56,102,65,0.06);
}

@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .section {
    margin-bottom: 36px;
    padding: 26px 8px;
    border-radius: 12px;
  }
}

/* =====================================================================
   4. Navigation & Header
   ===================================================================== */
header {
  background: #E9EDC9;
  border-bottom: 1px solid #dde3ce;
  box-shadow: 0 2px 8px 0 rgba(56,102,65,0.02);
  z-index: 1001;
  position: relative;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  padding: 12px 0;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
.main-nav a {
  color: #386641;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.main-nav a:after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 2px;
  background: #386641;
  transition: width 0.22s;
  border-radius: 2px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}

.btn-primary {
  background: #386641;
  color: #FFF;
  border: none;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 8px;
  box-shadow: 0 1px 4px 0 rgba(56,102,65,0.13);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.16s;
  outline: none;
  margin-left: 12px;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #264C2A;
  box-shadow: 0 3px 12px 0 rgba(56,102,65,0.13);
  transform: translateY(-2px) scale(1.03);
}

/* =====================================================================
   5. Mobile Navigation (Burger Menu)
   ===================================================================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.15rem;
  color: #386641;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  z-index: 1201;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF;
  box-shadow: 0 8px 40px rgba(56,102,65,0.20);
  z-index: 1300;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.7,0,.3,1), opacity 0.28s;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 24px 12px 0;
  background: none;
  border: none;
  font-size: 2rem;
  color: #386641;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #11201A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 18px 34px;
  gap: 16px;
}
.mobile-nav a {
  color: #386641;
  font-size: 1.15rem;
  padding: 18px 0 8px 0;
  font-family: 'Roboto', Arial, sans-serif;
  border-bottom: 1px solid #e1e6d0;
  transition: background 0.16s, color 0.17s;
  border-radius: 0;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E9EDC9;
  color: #11201A;
}

@media (max-width: 1060px) {
  .main-nav {
    gap: 18px;
  }
  header .container {
    gap: 8px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0px;
    margin-right: 6px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 480px) {
  .mobile-nav {
    padding: 14px 10px;
    font-size: 1.08rem;
  }
}

/* =====================================================================
   6. Hero Section & Call-To-Action (CTA)
   ===================================================================== */
.hero {
  min-height: 330px;
  background: #E9EDC9;
  border-radius: 0 0 34px 34px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 330px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}
.cta {
  background: #386641;
  color: #FFF;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 6px 30px 0 rgba(56,102,65,0.11);
}
.cta h2 {
  color: #FFF;
}
.cta .btn-primary {
  background: #FFF;
  color: #386641;
}
.cta .btn-primary:hover, .cta .btn-primary:focus {
  background: #E9EDC9;
  color: #11201A;
}

@media (max-width: 900px) {
  .hero {
    min-height: 220px;
  }
  .hero .container {
    min-height: 180px;
    padding-top: 30px;
  }
  .hero .content-wrapper {
    max-width: 100%;
    padding: 0 2vw;
  }
}

/* =====================================================================
   7. Main Content Elements & Patterns
   ===================================================================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FAFAF6;
  border-radius: 14px;
  padding: 26px 20px 23px 20px;
  box-shadow: 0 1px 9px 0 rgba(56,102,65,0.04);
  flex: 1 1 220px;
  min-width: 230px;
  max-width: 320px;
}
.feature-item img {
  width: 42px;
  height: 42px;
  margin-bottom: 2px;
}
.tip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 8px 0 20px 0;
}
.tip-item {
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(56,102,65,0.07);
  padding: 18px 14px 17px 14px;
  min-width: 200px;
  flex: 1 1 200px;
  margin-bottom: 20px;
}
.problem-solution-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.problem-item {
  background: #FAFAF6;
  border-radius: 12px;
  box-shadow: 0 1px 7px 0 rgba(56,102,65,0.04);
  padding: 17px 14px 20px 14px;
  min-width: 180px;
  flex: 1 1 180px;
  margin-bottom: 20px;
}
.inspiration-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 10px 0;
}
.inspiration-card {
  background: #FFF;
  padding: 20px 16px 18px 16px;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(56,102,65,0.04);
  flex: 1 1 220px;
  min-width: 200px;
  margin-bottom: 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(56,102,65,0.07);
  margin-bottom: 20px;
  padding: 20px 16px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin: 20px 0 12px 0;
}

@media (max-width: 900px) {
  .feature-grid,
  .problem-solution-grid,
  .inspiration-cards,
  .card-container,
  .content-grid,
  .tip-list {
    flex-direction: column;
    gap: 18px;
  }
  .card,
  .feature-item,
  .problem-item,
  .inspiration-card,
  .tip-item {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}

/* Lists inside .feature-list, .seasonal-ideas */
.feature-list, .seasonal-ideas {
  margin: 0 0 20px 20px;
  padding-left: 10px;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* FAQ */
.faq {
  background: #FAFAF6;
  border-radius: 10px;
  padding: 15px 18px 18px 18px;
  box-shadow: 0 1px 4px 0 rgba(56,102,65,0.07);
  margin-top: 16px;
  margin-bottom: 16px;
}
.faq ul {
  margin-left: 8px;
  gap: 8px;
}

/* =====================================================================
   8. Testimonials
   ===================================================================== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(56,102,65,0.09);
  margin-bottom: 20px;
  flex-direction: column;
  align-items: flex-start;
  border-left: 6px solid #386641;
}
.testimonial-card strong {
  margin-top: 4px;
  color: #386641;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1rem;
}
.testimonial-card p {
  color: #11201A;
  font-size: 1.08rem;
}
@media (min-width: 700px) {
  .testimonial-card {
    flex-direction: row;
    align-items: center;
  }
  .testimonial-card p {
    flex:1;
  }
}

/* =====================================================================
   9. Footer
   ===================================================================== */
footer {
  background: #E9EDC9;
  color: #11201A;
  border-top: 1px solid #dde3ce;
  padding: 36px 0 16px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 30px;
  margin-bottom: 8px;
}
.footer-menu a {
  color: #386641;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #11201A;
  text-decoration: underline;
}
.contact-short {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  font-size: 1rem;
}
.contact-short img {
  vertical-align: middle;
  margin-right: 8px;
}
.social-media-links {
  display: flex;
  gap: 18px;
  margin: 8px 0;
}
.social-media-links a {
  display: flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #386641;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.social-media-links a:hover, .social-media-links a:focus {
  background: #11201A;
}
.social-media-links img {
  width: 22px;
  height: 22px;
  filter: brightness(100) invert(1);
}
.copyright {
  margin-top: 10px;
  font-size: 0.98rem;
  color: #5a6e63;
  letter-spacing: 0.01em;
  opacity: 0.9;
}
@media (max-width: 700px) {
  footer .container {
    gap: 8px;
    padding-left: 0;
  }
  .footer-menu {
    gap: 12px 18px;
    font-size: 0.99rem;
  }
}

/* =====================================================================
   10. Misc – Forms, Buttons & Effects
   ===================================================================== */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: 1px solid #e1e9d8;
  border-radius: 7px;
  padding: 12px 10px;
  margin-bottom: 14px;
  background: #FBFBF9;
  color: #11201A;
  box-shadow: 0 1px 4px 0 rgba(56,102,65,0.03);
}
input:focus, textarea:focus, select:focus {
  border-color: #386641;
  outline: none;
  background: #FFF;
}
button, .btn {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  cursor: pointer;
  border-radius: 8px;
  border: none;
  padding: 12px 26px;
  background: #386641;
  color: #FFF;
  font-weight: 600;
  transition: background 0.18s, transform 0.14s;
  box-shadow: 0 0.5px 4px 0 rgba(56,102,65,0.11);
}
button:hover, button:focus, .btn:hover, .btn:focus {
  background: #11201A;
  transform: translateY(-1.5px) scale(1.04);
}

/* =====================================================================
   11. Cookie Consent Banner & Modal
   ===================================================================== */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  z-index: 1990;
  background: #F6F7F2;
  color: #11201A;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -4px 24px 0 rgba(123,151,97,0.08);
  padding: 20px 8px 22px 8px;
  gap: 22px;
  border-top: 2px solid #E9EDC9;
  animation: fadeinbanner 0.85s;
}
@keyframes fadeinbanner {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-text {
  max-width: 850px;
  text-align: center;
  font-size: 0.97rem;
  margin-bottom: 8px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  border-radius: 6px;
  padding: 10px 25px;
  background: #386641;
  color: #FFF;
  border: none;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.17s, color 0.11s;
  cursor: pointer;
  margin-bottom: 0;
}
.cookie-banner .cookie-btn.settings {
  background: #E9EDC9;
  color: #386641;
  border: 1.5px solid #386641;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #11201A;
  color: #FFF;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #386641;
  color: #FFF;
}

@media (max-width: 700px) {
  .cookie-banner {
    padding: 15px 2vw 18px 2vw;
    gap: 12px;
  }
}

.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(56,102,65,0.12);
  z-index: 2030;
  opacity: 1;
  transition: opacity 0.28s;
  pointer-events: auto;
}
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(1);
  background: #FFF;
  border-radius: 13px;
  box-shadow: 0 8px 40px rgba(41,54,38,0.15);
  z-index: 2040;
  padding: 38px 32px 26px 32px;
  min-width: 300px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookiemodalfade .33s;
}
@keyframes cookiemodalfade {
  0% { opacity: 0; transform: translate(-50%, -44%) scale(0.9); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.cookie-modal h3 {
  margin-bottom: 8px;
  color: #386641;
  font-size: 1.2rem;
}
.cookie-modal .cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-modal .toggle {
  width: 40px;
  height: 20px;
  border-radius: 11px;
  background: #E9EDC9;
  position: relative;
  cursor: pointer;
  border: 1.5px solid #386641;
  margin-right: 6px;
}
.cookie-modal .toggle input {
  display: none;
}
.cookie-modal .slider {
  position: absolute;
  border-radius: 11px;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  background: #386641;
  transition: left 0.18s, background 0.18s;
}
.cookie-modal .toggle input:checked + .slider {
  left: 22px;
  background: #11201A;
}
.cookie-modal .cookie-category[disabled] {
  opacity: 0.7;
  pointer-events: none;
}
.cookie-modal .cookie-controls {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal .cookie-btn {
  padding: 9px 20px;
  min-width: 93px;
  border-radius: 5px;
}
.cookie-modal .cookie-btn.cancel {
  background: #E9EDC9;
  color: #386641;
  border: 1.2px solid #386641;
}
.cookie-modal .cookie-btn.cancel:hover, .cookie-modal .cookie-btn.cancel:focus {
  background: #386641;
  color: #FFF;
}

@media (max-width: 480px) {
  .cookie-modal {
    padding: 26px 4vw 18px 4vw;
    min-width: 0;
  }
  .cookie-modal .cookie-controls {
    flex-direction: column;
    gap: 10px;
  }
}

/* =====================================================================
   12. Utility Classes & Responsive Adjustments
   ===================================================================== */
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-28 { margin-top: 28px !important; }
.no-scroll {
  overflow: hidden !important;
}

::-webkit-input-placeholder { color: #a1af9e; }
::-moz-placeholder { color: #a1af9e; }
:-ms-input-placeholder { color: #a1af9e; }
::placeholder { color: #a1af9e; }

/* =====================================================================
   13. Micro-interactions and Animations
   ===================================================================== */
a, button, .btn, .btn-primary, input, textarea, select {
  transition: background 0.16s, box-shadow 0.17s, color 0.14s, border 0.14s, transform 0.15s;
}
.section, .card, .testimonial-card, .feature-item, .inspiration-card, .tip-item, .problem-item {
  transition: box-shadow 0.18s, transform 0.14s;
}
.section:hover, .card:hover, .testimonial-card:hover, .feature-item:hover, .inspiration-card:hover, .tip-item:hover, .problem-item:hover {
  box-shadow: 0 4px 24px 0 rgba(56,102,65,0.14);
  transform: translateY(-2px) scale(1.015);
  z-index: 2;
}

/* =============================== END =============================== */
