/*! Warded Gärten Vibrant Energetic CSS | Mobile-First | Only Flexbox */
/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F2F6EE;
  color: #151A1E;
  line-height: 1.6;
  min-height: 100vh;
}
a {
  color: #256031;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover, a:focus {
  color: #8FBF45;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1em;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  outline: none;
  border: none;
  cursor: pointer;
  background: none;
}
:focus {
  outline: 2px solid #8FBF45;
  outline-offset: 2px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 0.03em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #256031;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #256031;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #204824;
}
p {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #242f35;
}

/* Brand Colors */
:root {
  --primary: #256031;
  --secondary: #8FBF45;
  --accent: #F2F6EE;
  --vibrant-1: #19D47C;
  --vibrant-2: #FF9700;
  --vibrant-3: #F50057;
  --dark: #151A1E;
  --white: #fff;
  --shadow: 0 6px 16px rgba(37, 96, 49, 0.09), 0 1.5px 6px rgba(31, 168, 109, 0.06);
}

/* Layout Containers (Flexbox Only) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0px 10px 28px rgba(37, 96, 49, 0.18), 0 4px 12px rgba(255, 151, 0, 0.09);
  transform: translateY(-4px) scale(1.03);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(37, 96, 49, 0.13);
  border-left: 5px solid var(--secondary);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.testimonial-card p {
  color: var(--dark);
  font-style: italic;
  font-size: 1.1rem;
}
.testimonial-card span {
  color: var(--primary);
  font-weight: bold;
  font-size: 1rem;
}
.testimonial-card:hover {
  border-left-color: var(--vibrant-1);
  box-shadow: 0 8px 28px rgba(37, 96, 49, 0.24);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* HEADER & NAVIGATION */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 8px 16px;
}
header nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: 0.02em;
  border-radius: 10px;
  padding: 7px 14px;
  transition: background .15s, color .15s, box-shadow .15s;
}
header nav a:hover, header nav a:focus {
  background: var(--secondary);
  color: var(--white);
}
header a img {
  height: 48px;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  padding: 13px 28px;
  border-radius: 18px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.12s;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 10px rgba(31, 168, 109, 0.08);
  margin-top: 8px;
  display: inline-block;
}
.btn-primary {
  background: linear-gradient(90deg, #8FBF45 0%, #256031 100%);
  color: var(--white);
}
.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(90deg, #19D47C 0%, #8FBF45 80%);
  color: #151A1E;
  box-shadow: 0 4px 18px rgba(25, 212, 124, 0.15);
  transform: translateY(-2px) scale(1.035);
}
.btn-secondary {
  background: #fff;
  border: 2px solid var(--secondary);
  color: var(--primary);
}
.btn-secondary:hover,
.btn-secondary:focus {
  border-color: #19D47C;
  background: #19D47C;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(25, 212, 124, 0.10);
  transform: translateY(-2px) scale(1.03);
}

/* LISTS & ICONS */
ul li, ol li {
  font-size: 1rem;
  color: #284020;
  margin-bottom: 8px;
  line-height: 1.6;
  list-style: disc inside;
  display: flex;
  align-items: center;
  gap: 13px;
}
ul li img, .footer-contact img {
  width: 26px;
  height: 26px;
  margin-right: 7px;
  vertical-align: middle;
  flex-shrink: 0;
}


/* FOOTER */
footer {
  background: #256031;
  color: #fff;
  padding: 40px 0 14px 0;
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
footer nav a {
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 6px;
  padding: 5px 9px;
  transition: background .15s, color .12s;
}
footer nav a:hover, footer nav a:focus {
  background: #8FBF45;
  color: #151A1E;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  font-size: 1rem;
  color: #DAF5DA;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
}
footer img {
  height: 46px;
  width: auto;
}
footer span {
  opacity: 0.90;
  font-size: 0.95rem;
  margin-top: 10px;
}

/* TEXT SECTION */
.text-section {
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.text-section h3 {
  color: #8FBF45;
  margin-bottom: 4px;
  font-size: 1.1rem;
}
.text-section ul li {
  color: #256031;
  font-size: 1rem;
}

/* SPECIAL CLASSES */
.confirmation-message {
  color: #256031;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 10px 0;
}

/* MOBILE MENU (Burger Navigation) */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 1501;
  background: var(--secondary);
  color: #fff;
  padding: 13px 17px;
  border-radius: 50%;
  font-size: 2.1rem;
  box-shadow: 0 4px 16px rgba(37, 96, 49, 0.22);
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.14s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #19D47C;
  color: #151A1E;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 320px;
  max-width: 84vw;
  background: #256031;
  color: #fff;
  z-index: 2000;
  padding: 32px 28px 32px 24px;
  transform: translateX(-120%);
  transition: transform 0.35s cubic-bezier(.5,1.5,.72,1.01);
  box-shadow: 4px 0 32px rgba(31,168,109,0.22);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--vibrant-1);
  font-size: 2rem;
  color: var(--primary);
  border-radius: 8px;
  margin-bottom: 18px;
  padding: 7px 14px;
  border: none;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff;
  color: var(--vibrant-3);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 13px 7px;
  border-radius: 10px;
  color: #fff;
  transition: background .12s, color .13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #19D47C;
  color: #151A1E;
}

/* OVERLAY for mobile menu (when open) */
body.mobile-menu-open::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(31,168,109, 0.18);
  z-index: 1999;
  pointer-events: auto;
}

/* COOKIE CONSENT BANNER + MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: #fff;
  color: #151A1E;
  box-shadow: 0 -2px 24px rgba(37,96,49,0.13);
  padding: 22px 14px 18px 22px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  animation: bannerIn 0.35s cubic-bezier(.5,1.75,.55,1);
}
@keyframes bannerIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner strong {
  color: var(--primary);
  font-weight: 700;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  padding: 11px 24px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
}
.cookie-banner .accept-cookies {
  background: var(--vibrant-1);
  color: #fff;
}
.cookie-banner .accept-cookies:hover { background: #8FBF45; color: #151A1E; }
.cookie-banner .reject-cookies {
  background: #F50057;
  color: #fff;
}
.cookie-banner .reject-cookies:hover { background: #151A1E; color: #fff; }
.cookie-banner .cookie-settings {
  background: #256031;
  color: #fff;
}
.cookie-banner .cookie-settings:hover { background: #8FBF45; color: #151A1E; }

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(37,96,49,0.25);
  z-index: 3050;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalIn 0.36s cubic-bezier(.5,1.3,.7,1);
}
@keyframes modalIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 38px 28px 28px 28px;
  max-width: 98vw;
  width: 390px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 3100;
  color: var(--primary);
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal h2 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  color: var(--vibrant-2);
}
.cookie-modal .modal-close {
  align-self: flex-end;
  background: #F50057;
  color: #fff;
  border-radius: 8px;
  border: none;
  font-size: 1.25rem;
  padding: 3px 15px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background .12s, color .13s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #151A1E;
}
.cookie-modal label {
  font-size: 1rem;
  color: #151A1E;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
}
.cookie-modal input[type=checkbox] {
  accent-color: var(--secondary);
  width: 19px; height: 19px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

/* =========== RESPONSIVE ========= */
@media (max-width: 1024px) {
  .container { max-width: 99vw; }
}
@media (max-width: 900px) {
  .section, .footer, .content-wrapper { padding: 24px 8px; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.4rem; }
  .testimonial-card, .card { padding: 18px 10px; }
}
@media (max-width: 768px) {
  /* Burger menu visible */
  .mobile-menu-toggle { display: block; }
  header nav, header .btn-primary { display: none !important; }
  .container, .footer .container { padding: 0 6vw; }
  .section { padding: 28px 8px; }
  .content-wrapper { gap: 12px; }
  .footer-contact { flex-direction: column; gap: 10px; align-items: flex-start; }
  .card-container, .content-grid {
    flex-direction: column !important;
    gap: 18px;
    justify-content: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
  }
  .testimonial-card, .card {
    width: 100%;
    font-size: 0.96rem;
    min-width: 0;
  }
  footer {
    padding: 22px 0 10px 0;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.45rem; }
  .section { padding: 17px 3vw; }
  .card, .testimonial-card { padding: 10px 4px; }
  .btn-primary, .btn-secondary { font-size: 0.97rem; padding: 10px 10vw; }
}

/* VIBRANT/ENERGETIC MICROINTERACTIONS */
.btn-primary, .btn-secondary {
  will-change: transform, box-shadow;
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.98);
  background: #FF9700;
  color: #fff;
}
.testimonial-card, .card {
  transition: box-shadow 0.22s, border-color 0.16s, transform 0.18s;
}
.testimonial-card:active {
  transform: scale(0.99) skew(-1deg,1deg);
  box-shadow: 0 6px 36px rgba(255, 151, 0, 0.11);
  border-left-color: #F50057;
}

/* FORMS, TABLES, MISC */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid #8FBF45;
  border-radius: 8px;
  padding: 10px 8px;
  margin-bottom: 14px;
  transition: border .13s;
}
input:focus, textarea:focus, select:focus {
  border-color: #19D47C;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(37, 96, 49, 0.11);
  margin-bottom: 22px;
}
th, td {
  border-bottom: 1px solid #E4E9E0;
  padding: 9px 10px;
  text-align: left;
}
th {
  background: #DDF5E8;
}

/* Accessibility for focus visible */
:focus-visible {
  outline: 2.5px solid #FF9700 !important;
  outline-offset: 2px;
}

/* Vibrant Icon Round BG for icons in lists if desired */
ul li img, .footer-contact img {
  background: #DDF5E8;
  border-radius: 50%;
  padding: 3px;
}

/* Util classes */
.hide-desktop { display: none !important; }
.hide-mobile { display: inline-block !important; }
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .hide-desktop { display: inline-block !important; }
}
