/* CSS RESET & 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;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fdfcfa;
  color: #305016;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul,ol {
  list-style-position: inside;
  margin-left: 0;
}
a {
  color: #38761d;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #85a94a;
  outline: none;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Lora:700,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  font-weight: 700;
  color: #305016;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  line-height: 1.12;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #35502a;
  line-height: 1.7;
}
strong {
  font-weight: 700;
  color: #38761d;
}

body, input, textarea, button {
  font-family: 'Roboto', Arial, sans-serif;
}

/* LAYOUT CONTAINER */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 800px;
}
.text-section {
  text-align: center;
}

/* SECTION SPACING & PATTERNS (MANDATORY) */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media (max-width: 640px) {
  section {
    padding: 28px 6px;
    margin-bottom: 36px;
  }
}

/* FLEXBOX LAYOUTS (MANDATORY PATTERNS) */
.card-container,.feature-grid,.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}
.card-container {
  gap: 24px;
}
.card {
  background: #fff9fe;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 3px 14px rgba(140, 180, 120, 0.18);
  padding: 30px 24px 24px 24px;
  position: relative;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 350px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 7px 24px rgba(123,169,140,0.22);
  transform: translateY(-4px) scale(1.03);
  z-index: 1;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    text-align: left;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff7ef;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(120, 180, 120, 0.08);
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.16s;
}
.testimonial-card blockquote {
  font-family: 'Lora', serif;
  font-size: 1.18rem;
  color: #425935;
  margin: 0 0 6px 0;
  quotes: "\201C" "\201D";
  line-height: 1.4;
}
.testimonial-card p {
  font-size: 0.97rem;
  margin: 0;
  font-weight: 500;
  color: #2e4832;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 16px 0;
}

/* Feature icon grid (/: Unsere Versprechen) */
.feature-grid > div  {
  background: #f5fbe8;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(100,170,100,0.07);
  flex: 1 1 230px;
  min-width: 180px;
  padding: 32px 18px 28px 18px;
  text-align: center;
  transition: box-shadow 0.18s, transform 0.16s;
}
.feature-grid > div img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 20px rgba(130,180,110,0.14);
  transform: translateY(-2px) scale(1.025);
}

/* Button Styles */
.btn-primary {
  display: inline-block;
  padding: 13px 38px;
  font-size: 1.15rem;
  font-family: 'Lora', serif;
  font-weight: 700;
  background: #b9ffd0;
  color: #305016;
  border: none;
  border-radius: 40px;
  box-shadow: 0 1px 6px rgba(162, 177, 111, 0.09);
  margin-top: 16px;
  margin-bottom: 5px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.17s, color 0.18s, box-shadow 0.16s, transform 0.13s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #cce9b6;
  color: #38761d;
  box-shadow: 0 4px 22px rgba(130,170,100,0.15);
  transform: translateY(-1px) scale(1.025);
  outline: none;
}

/* Utility & Typography Spacing */
strong {
  font-weight: bold;
}
ul, ol {
  margin-bottom: 18px;
  padding-left: 0;
}
ul li, ol li {
  margin-bottom: 8px;
  padding-left: 0;
}

blockquote {
  font-style: italic;
  color: #458B61;
}

/* HEADER & NAVIGATION */
header {
  background: linear-gradient(90deg,#f9e8ef 0%,#fafff8 75%,#fffbe5 100%);
  box-shadow: 0 2px 12px rgba(78, 150, 86,0.04);
  border-bottom: 3px solid #e5f5d6;
}
header .container {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 18px;
}
header img[alt="BlütenOase"] {
  height: 44px;
}
header nav {
  display: flex;
  gap: 18px;
}
header nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #32663a;
  padding: 6px 14px;
  border-radius: 12px;
  transition: background 0.14s, color 0.13s;
}
header nav a:hover, header nav a.active {
  background: #d2f6ea;
  color: #326622;
}
header .btn-primary {
  font-size: 1.05rem;
  padding: 10px 22px;
  margin: 0 0 0 8px;
}

/* MOBILE MENU BURGER */
.mobile-menu-toggle {
  display: none;
  background: #c1e8ca;
  color: #305016;
  border: none;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.15s, box-shadow 0.14s;
  z-index: 6010;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #b6d7a8;
  box-shadow: 0 2px 12px rgba(130,180,110,0.13);
  outline: none;
}

/* MOBILE NAV OVERLAY */
.mobile-menu {
  position: fixed !important;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(250,255,250,0.97);
  z-index: 6100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  overflow: auto;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.44,.07,.62,1.09);
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  visibility: visible;
}
.mobile-menu-close {
  background: #e7fbe6;
  color: #305016;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2.1rem;
  margin: 18px 18px 0 0;
  align-items: center;
  justify-content: center;
  display: flex;
  cursor: pointer;
  z-index: 6120;
  transition: background 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #c5f4c6;
  outline: 2px solid #b6d7a8;
}
.mobile-nav {
  width: 100vw;
  padding: 24px 18px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.15rem;
  color: #2e4832;
  padding: 14px 0 8px 0;
  border-radius: 8px;
  transition: background 0.14s, color 0.13s;
  margin-left: 8px;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: #edfbe8;
  color: #38761d;
}

@media (max-width: 1024px){
  header nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width:1025px){
  .mobile-menu, .mobile-menu-toggle { display:none !important; }
}

/* MAIN */
main {
  background: none;
  position: relative;
  z-index: 1;
  min-height: 40vh;
  padding-bottom: 40px;
}

/* FOOTER */
footer {
  background: linear-gradient(90deg,#fafff8 65%,#f9e79f 100%);
  border-top: 3px solid #d4edd1;
  color: #35502a;
  padding-top: 40px;
}
footer .container {
  flex-direction: column;
  display: flex;
  gap: 30px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #e2ecd0;
  padding-bottom: 16px;
}
.footer-main nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-main nav a {
  color: #427630;
  font-size: 0.97rem;
  font-weight: 400;
  padding: 3px 0;
  transition: color 0.19s;
}
.footer-main nav a:hover {
  color: #5bb968;
}
footer address {
  font-style: normal;
  font-size: 0.99rem;
  color: #32663a;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer address img {
  width: 18px;
  vertical-align: middle;
  margin-right: 7px;
  margin-bottom: 3px;
}
footer img[alt="BlütenOase"] {
  height: 36px;
}
.footer-bottom {
  text-align: center;
  padding: 16px 0 6px 0;
  color: #3b5840;
  font-size: 0.97rem;
}
@media (max-width: 768px){
  .footer-main { flex-direction: column; gap:14px; align-items: flex-start; }
  footer .container { gap: 14px; }
  .footer-bottom { font-size: 0.95rem; }
}

/* MAP Placeholder (Kontakt) */
.map-placeholder {
  background: #f8fde7;
  border-radius: 13px;
  padding: 18px 16px 14px 16px;
  margin: 14px 0 12px 0;
  box-shadow: 0 2px 13px rgba(153,210,125,0.07);
  color: #005e3d;
  text-align: left;
}
.map-placeholder h3 {
  margin-bottom: 7px;
  font-size: 1.15rem;
  color: #38761d;
}

/* Card example styling */
.card {
  background: #fff9fa;
  border: 1px solid #f2e8ec;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  min-height: 70px;
  background: #fff8f2;
  box-shadow: 0 -4px 20px rgba(145,206,155,0.13);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 5vw 22px 5vw;
  z-index: 7000;
  font-size: 1rem;
  gap: 24px;
  animation: cookieBannerDrop 0.5s cubic-bezier(.51,.38,.6,1.1);
}
@keyframes cookieBannerDrop {
  0% { transform: translateY(80px); opacity:0;} 100%{ transform:translateY(0); opacity:1; }
}
.cookie-banner p {
  margin: 0;
  color: #345e1b;
  font-size: 1rem;
}
.cookie-banner-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  border-radius: 32px;
  background: #b6d7a8;
  color: #35652e;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  padding: 9px 22px;
  border: none;
  cursor: pointer;
  margin: 2px 0;
  transition: background 0.17s, color 0.12s, box-shadow 0.14s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #38761d;
  color: #fff;
  outline: none;
  box-shadow: 0 3px 13px #aad2b9a6;
}
.cookie-btn.cookie-btn-settings {
  background: #ffebbb;
  color: #86741b;
  font-weight: 400;
}
.cookie-btn.cookie-btn-settings:hover, .cookie-btn.cookie-btn-settings:focus {
  background: #fde7a6;
  color: #6e5e0e;
}
@media (max-width: 640px){
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 8px 12px 8px;
    font-size: 0.99rem;
  }
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 9000;
  background: rgba(220, 242, 220, 0.7);
  animation: fadein 0.19s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fffdf8;
  padding: 32px 28px 26px 28px;
  border-radius: 20px;
  box-shadow: 0 2px 42px #b6d7a855, 0 1px 3px #fff;
  width: 96vw;
  max-width: 410px;
  z-index: 9500;
  display: flex;
  flex-direction: column;
  gap: 23px;
  animation: modalSlideIn 0.33s cubic-bezier(.51,.38,.6,1.1);
}
@keyframes modalSlideIn {
  0% { opacity:0; transform:translateY(60px);} 100%{opacity:1;transform:translateY(0);}
}
.cookie-modal-close {
  position: absolute;
  right: 15px;
  top: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #6ea34b;
  cursor: pointer;
  outline: none;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: #38761d;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  margin-bottom: 7px;
  gap: 0.9em;
  font-size: 1rem;
  color: #426623;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #c8e6c9;
  border-radius: 10px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-toggle:checked {
  background: #87d18f;
}
.cookie-toggle:before {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px #32662222;
  transition: left 0.19s;
}
.cookie-toggle:checked:before {
  left: 19px;
}

.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  justify-content: flex-end;
}
@media (max-width: 500px){
  .cookie-modal { padding: 13vw 4vw 10vw 4vw; }
  .cookie-modal-actions { flex-direction: column; gap:8px; }
}

/* Animations utility */
@keyframes fadein { 0%{ opacity:0;} 100%{ opacity:1; } }

/* RESPONSIVE STYLES */
@media (max-width: 1024px){
  .container {
    max-width: 99vw;
    padding: 0 7vw;
  }
  .content-wrapper {
    max-width: 97vw;
  }
}
@media (max-width: 768px){
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .feature-grid { flex-direction: column; gap: 16px; }
  .card-container, .content-grid { flex-direction: column; gap: 16px; }
  .testimonial-card{ flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px){
  header .container { padding: 0 6px; }
}

/* Soft Pastel Backgrounds */
section {
  background: linear-gradient(120deg, #fdfcfb 80%, #fff8f2 100%);
  border-radius: 27px;
  box-shadow: 0 2px 28px rgba(160,210,201,0.03);
}
section:nth-child(2n) {
  background: linear-gradient(105deg, #f6fcef 75%, #fffbe5 100%);
}

/* Misc elements */
hr {
  border: none;
  border-top: 1.5px solid #eaeec8;
  margin: 20px 0;
}

/* Z-index utility for overlays */
.mobile-menu {
  z-index: 6100 !important;
}

/* Final touch for dreamy, soft look */
body, section, .testimonial-card, .card, .feature-grid > div, header, footer {
  box-shadow: 0 1px 16px 0 rgba(160, 210, 178, 0.05) !important;
}

/* Hide scrollbars in overlays (optional aesthetic) */
.mobile-menu, .cookie-modal-backdrop {
  scrollbar-width: none;
}
.mobile-menu::-webkit-scrollbar, .cookie-modal-backdrop::-webkit-scrollbar { display:none; }

