/* =======================
   CSS RESET & BASE STYLES
======================= */
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 {
  scroll-behavior: smooth;
  background: #f5f7f4;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #343828;
  background-color: #F4F8FB;
  line-height: 1.7;
  min-height: 100vh;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
a {
  color: #25647E;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #7EB86F;
  outline: none;
}
ul, ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* =======================
   BRAND COLOR VARIABLES
======================= */
:root {
  --color-primary: #25647E;
  --color-secondary: #7EB86F;
  --color-accent: #F4F8FB;
  --color-earth: #A6947A;
  --color-bark: #7F674C;
  --color-leaf: #4D9460;
  --color-light: #fff;
  --color-dark: #343828;
}

/* =======================
   TYPOGRAPHY
======================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #25647E;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #4D9460;
}
h3 {
  font-size: 1.25rem;
  color: #7EB86F;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
  color: #A6947A;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
}
strong, b {
  font-weight: bold;
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* =======================
   HEADER & NAVIGATION
======================= */
header {
  background: var(--color-light);
  box-shadow: 0 6px 18px 0 rgba(50, 100, 70, 0.04);
  position: sticky;
  top: 0;
  z-index: 999;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 16px;
}
.logo {
  display: flex;
  align-items: center;
  height: 52px;
}
.logo img {
  height: 44px;
  width: auto;
  border-radius: 12px;
  background: #e6ede7;
  box-shadow: 0 2px 8px rgba(50,80,60,0.05);
}
.main-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #25647E;
  padding: 8px 14px;
  border-radius: 18px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a.active {
  background: #E7F4E4;
  color: #4D9460;
}
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(90deg, #7EB86F 70%, #4D9460 100%);
  color: #fff;
  border-radius: 30px;
  padding: 13px 32px;
  box-shadow: 0 2px 8px 0 rgba(72, 120, 90, 0.09);
  margin-left: 18px;
  letter-spacing: .04em;
  transition: background .2s, box-shadow .2s, transform .15s;
  border: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #4D9460 60%, #7EB86F 100%);
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 6px 24px 2px rgba(50,100,70,0.09);
}
.mobile-menu-toggle {
  font-size: 2rem;
  color: #25647E;
  background: none;
  border: none;
  display: none;
  margin-left: 24px;
}

/* =======================
   MOBILE MENU (SLIDE-IN)
======================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(50, 100, 80, 0.96);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.7,0,.3,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border: none;
  margin: 24px 24px 12px 16px;
  align-self: flex-end;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 12px 2px;
  border-radius: 6px;
  position: relative;
  transition: background .2s, color .2s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: #E7F4E4;
  color: #25647E;
}

@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =======================
   MAIN SECTIONS & LAYOUT
======================= */
main {
  padding-top: 30px;
  padding-bottom: 30px;
}
section {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 16px rgba(128, 174, 133, 0.10);
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

/* =============================
   FLEXBOX CONTAINER UTILITIES
============================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #F4F8FB;
  border-radius: 32px;
  box-shadow: 0 2px 10px rgba(128, 174, 133, 0.07);
  padding: 28px 28px 24px 28px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 10px rgba(50,100,80,0.08);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Feature ("grid") style for icon & description lists */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin: 15px 0 0 0;
}
.feature-grid li, .feature-grid div {
  background: #E7F4E4;
  border-radius: 26px;
  box-shadow: 0 2px 8px rgba(128,174,133,0.10);
  flex: 1 1 235px;
  min-width: 240px;
  max-width: 345px;
  padding: 32px 20px 20px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .15s, transform .17s;
  margin-bottom: 20px;
}
.feature-grid li img, .feature-grid div img {
  height: 38px; width: 38px; margin-bottom: 14px;
}
.feature-grid li:hover, .feature-grid div:hover {
  box-shadow: 0 8px 32px rgba(40,120,90,0.11);
  transform: translateY(-3px) scale(1.03);
}

/* Recommendations grid (wetter-und-empfehlungen) */
.recommendations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 24px;
}
.recommendations-grid > div {
  background: #F4F8FB;
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(100,170,120,0.06);
  padding: 28px 18px 18px 18px;
  flex: 1 1 180px;
  min-width: 230px;
  max-width: 340px;
  margin-bottom: 20px;
}

/* =======================
   CARDS & HIGHLIGHT BLOCKS
======================= */
.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E7F4E4;
  border-radius: 18px;
  padding: 32px 0;
  margin: 20px 0 0 0;
}

/* =======================
   LISTS & ICON LISTS
======================= */
ul {
  margin-bottom: 16px;
  margin-top: 0;
}
ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 32px;
  line-height: 1.7;
}
ul li img {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  height: 22px; width: 22px;
}
ul li strong {
  color: #25647E;
}

/* Accent lines for FAQ, Datenschutzerklaerung, etc. */
section ul, section ol {
  margin-bottom: 16px;
}
section ul li, section ol li {
  padding-left: 0;
  margin-bottom: 11px;
}

/* =======================
   FOOTER
======================= */
footer {
  background: #E7F4E4;
  padding: 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  padding: 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  padding: 40px 20px;
  justify-content: space-between;
}
.logo-footer img {
  height: 38px;
  border-radius: 12px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #25647E;
  padding: 4px 0;
  font-weight: 500;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 6px;
  transition: background .17s;
}
.footer-nav a:hover {
  background: #C6DEB6;
  color: #25647E;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact div {
  display: flex;
  align-items: center;
  color: #4D9460;
  font-size: .98rem;
}
.footer-contact img {
  width: 18px; height: 18px; margin-right: 9px;
  filter: grayscale(.2) contrast(.92) brightness(1.2);
}

/* =======================
   BUTTONS & INTERACTIVE
======================= */
button, .cta-btn, .mobile-menu-close {
  transition: box-shadow .17s, background .15s, color .13s, transform .15s;
}
button:hover, .cta-btn:hover, button:focus, .cta-btn:focus {
  outline: none;
}

/* =======================
   RESPONSIVE DESIGN
======================= */
@media (max-width: 1300px) {
  .container {
    max-width: 95vw;
  }
}
@media (max-width: 1023px) {
  section {
    padding: 30px 8px;
    margin-bottom: 45px;
  }
  .feature-grid {
    gap: 18px;
  }
  .footer-contact {
    font-size: .92rem;
  }
  .content-wrapper, .footer .content-wrapper {
    gap: 10px;
  }
  footer .content-wrapper {
    flex-wrap: wrap;
    gap: 16px;
    padding: 32px 10px;
    font-size: .98rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .content-wrapper, .footer .content-wrapper {
    gap: 10px;
    padding: 22px 7px;
  }
  .feature-grid, .content-grid, .card-container, .recommendations-grid {
    flex-direction: column;
  }
  .feature-grid li, .feature-grid div,
  .recommendations-grid > div {
    max-width: 100%;
    min-width: unset;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
  h1 {
    font-size: 1.65rem;
  }
  h2 {
    font-size: 1.1rem;
    margin-bottom: 11px;
  }
  section {
    border-radius: 18px;
    padding: 18px 4vw;
    margin-bottom: 27px;
  }
  footer .content-wrapper {
    gap: 14px;
    padding: 18px 5vw 12px 5vw;
    flex-direction: column;
  }
}

/* =======================
   ORGANIC SHAPES & NATURAL FEEL
======================= */
section, .card, .feature-grid li, .feature-grid div, .recommendations-grid > div, .testimonial-card {
  border-radius: 32px 20px 34px 18px/26px 26px 38px 34px;
  /* Subtle irregular corners for 'organic' feel */
  box-shadow: 0 3px 17px 1px rgba(111,140,87,0.10);
}
.card, .feature-grid li, .feature-grid div, .recommendations-grid > div {
  background: #F4F8FB;
  border: 1.5px solid #E7F4E4;
}

/* Decorative subtle organic backgrounds for hero */
section:first-of-type {
  background: linear-gradient(150deg, #f4f8fb 80%, #E7F4E4 110%);
}

/* ================
   MICRO-ANIMATIONS
================== */
.cta-btn, .feature-grid li, .feature-grid div, .card, .recommendations-grid > div, .testimonial-card {
  will-change: transform, box-shadow;
}
.cta-btn:active {
  transform: scale(.97);
}
.feature-grid li:active, .feature-grid div:active {
  transform: scale(.98);
  box-shadow: 0 2px 6px rgba(70,120,80,0.08);
}

/* =======================
   COOKIE CONSENT BANNER
======================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #25647E;
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  box-shadow: 0 -2px 18px rgba(75,108,81,0.13);
  z-index: 5000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 16px 18px 16px;
  gap: 16px;
  animation: bannerSlideUp .45s cubic-bezier(.7,0,.3,1);
}
@keyframes bannerSlideUp {
  0% { transform: translateY(120%); opacity: 0; }
  90% {opacity:1;}
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  font-size: .98rem;
  margin-bottom: 0;
  line-height: 1.5;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 6px;
}
.cookie-banner button {
  padding: 11px 24px;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: #7EB86F;
  color: #fff;
  border: none;
  margin: 0;
  box-shadow: 0 1px 8px rgba(40,80,45,0.10);
  transition: background .19s, color .18s, box-shadow .17s;
}
.cookie-banner button.cookie-reject {
  background: #A6947A;
}
.cookie-banner button.cookie-settings {
  background: #fff;
  color: #25647E;
  border: 2px solid #7EB86F;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #4D9460;
  color: #fff;
}
.cookie-banner button.cookie-reject:hover {background: #7F674C;}
.cookie-banner button.cookie-settings:hover {
  background: #7EB86F;
  color: #fff;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  z-index: 5100;
  left:0; right:0; top:0; bottom:0;
  background: rgba(36,60,20,0.51);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s cubic-bezier(.7,0,.3,1);
}
.cookie-modal.open {
  opacity: 1;
  visibility: visible;
}
.cookie-modal-content {
  background: #F4F8FB;
  color: #25647E;
  border-radius: 28px;
  min-width: 320px; max-width: 94vw;
  max-height: 94vh;
  box-shadow: 0 8px 40px rgba(70,110,70,0.13);
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 28px 26px 20px 26px;
  animation: modalPop .5s cubic-bezier(.5,.9,.5,1.2);
}
@keyframes modalPop {
  0% {transform: scale(.8) translateY(80px);opacity: 0;}
  80% {opacity:1;}
  100% {transform: scale(1) translateY(0);opacity:1;}
}
.cookie-modal-content h2 {
  color: #25647E;
  margin-bottom: 8px;
  font-size: 1.27rem;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin: 5px 0 9px 0;
}
.cookie-modal-content .cookie-toggle {
  width: 38px; height: 22px;
  border-radius: 14px;
  background: #C6DEB6;
  display: inline-block;
  position: relative;
  transition: background .21s;
  cursor: pointer;
}
.cookie-modal-content .cookie-toggle input[type=checkbox] {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
.cookie-modal-content .cookie-toggle::before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform .19s, background .16s;
  box-shadow: 0 1px 4px rgba(56,105,55,0.09);
}
.cookie-modal-content .cookie-toggle input[type=checkbox]:checked + span {
  background: #7EB86F;
}
.cookie-modal-content .cookie-toggle input[type=checkbox]:checked + span::before {
  transform: translateX(16px);
  background: #4D9460;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  border-radius: 26px;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.cookie-modal-close {
  background: none;
  color: #25647E;
  border: none;
  font-size: 1.5rem;
  position: absolute;
  right: 22px; top: 18px;
  cursor: pointer;
}

@media (max-width: 728px) {
  .cookie-modal-content {
    min-width: 99vw;
    padding: 14px 6vw 18px 6vw;
  }
}

/* =======================
   SELECTION
======================= */
::selection {
  background: #C6DEB6;
  color: #25647E;
}

/* =======================
   UTILITIES
======================= */
.hide {
  display: none!important;
}

/* Prevent unwanted text overlap in all cards and sections */
section, .card, .feature-grid li, .feature-grid div, .recommendations-grid > div {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* =======================
   DARK TEXT FOR READABILITY (TESTIMONIALS, ETC)
======================= */
.testimonial-card, .feature-grid li, .feature-grid div {
  color: #343828;
  background: #fff;
}

/* =======================
   MISC
======================= */
::-webkit-scrollbar {
  width: 8px;
  background: #E7F4E4;
}
::-webkit-scrollbar-thumb {
  background: #A6947A;
  border-radius: 8px;
}

/* Scroll for modal overlay only if needed */
.cookie-modal {
  overflow-y: auto;
}

/* ================
   END OF FILE
================ */
