/* === 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.4;
  background: linear-gradient(132deg, #e3f1e8 50%, #ffffff 100%);
  color: #183327;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
*,*:before,*:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
  color: inherit;
}
a {
  color: #236a3b;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #7cc242;
  text-decoration: underline;
}

/***********************************
* BRAND TOKENS + GRADIENTS
***********************************/
:root {
  --color-primary: #236a3b;
  --color-secondary: #e3f1e8;
  --color-accent: #7cc242;
  --color-dark: #183327;
  --color-light: #fff;
  --color-grey: #ebefea;
  --color-border: #d7e5d2;
  --color-text: #183327;
  --color-shadow: rgba(35,106,59,0.05);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}
.gradient-bg-primary {
  background: linear-gradient(132deg, var(--color-secondary) 0%, var(--color-primary) 100%);
}
.gradient-bg-accent {
  background: linear-gradient(132deg, var(--color-accent) 0%, var(--color-primary) 100%);
}

/***********************************
* TYPOGRAPHY
***********************************/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.17rem;
  margin-bottom: 8px;
}
ul, ol {
  margin: 0 0 16px 20px;
  padding: 0;
}
li {
  padding-left: 0;
  margin-bottom: 8px;
  line-height: 1.6;
}
p, dl, dt, dd {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}

/***********************************
* LAYOUT CONTAINERS & PATTERNS
***********************************/
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--color-light);
  border-radius: 18px;
  box-shadow: 0 2px 10px var(--color-shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(35,106,59,0.12);
  transform: translateY(-4px) scale(1.015);
}
.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: 20px;
  background: var(--color-grey);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px var(--color-shadow);
  color: var(--color-dark);
  min-width: 260px;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: var(--color-dark);
}
.testimonial-card strong {
  color: var(--color-primary);
}
.feature-grid, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.project-summary {
  background: var(--color-light);
  border-radius: 14px;
  box-shadow: 0 1px 6px var(--color-shadow);
  padding: 22px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.article-list > div {
  background: var(--color-light);
  border-radius: 12px;
  box-shadow: 0 1px 8px var(--color-shadow);
  padding: 16px 18px;
  flex: 1 1 240px;
  min-width: 260px;
}
.topic-categories {
  margin: 0 0 16px 0;
  font-size: 1rem;
  display: flex;
  gap: 8px;
}
.map-placeholder {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 1px dashed var(--color-border);
  border-radius: 8px;
  padding: 24px 16px;
  font-family: var(--font-display);
  margin-top: 8px;
  width: 100%;
  text-align: center;
}

/***********************************
* HEADER + NAV
***********************************/
header {
  background: linear-gradient(120deg, var(--color-secondary) 55%, var(--color-light) 100%);
  box-shadow: 0 2px 12px var(--color-shadow);
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: var(--font-body);
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: var(--color-accent);
  color: var(--color-light);
  text-decoration: none;
}
.button.primary, a.button.primary {
  background: var(--color-accent);
  color: var(--color-light) !important;
  border-radius: 24px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  display: inline-block;
  padding: 10px 27px;
  box-shadow: 0px 5px 16px rgba(35,106,59,0.09);
  border: none;
  margin-left: 8px;
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.button, a.button {
  background: var(--color-primary);
  color: var(--color-light) !important;
  border-radius: 24px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
  padding: 9px 24px;
  box-shadow: 0px 2px 8px var(--color-shadow);
  border: none;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.button.primary:hover, a.button.primary:hover,
.button.primary:focus, a.button.primary:focus {
  background: var(--color-primary);
  color: var(--color-accent) !important;
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(35,106,59,0.11);
}
.button:hover, a.button:hover, .button:focus, a.button:focus {
  background: var(--color-accent);
  color: var(--color-light) !important;
  transform: scale(1.03);
}

/***********************************
* MOBILE MENU
***********************************/
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: var(--color-light);
  font-size: 2rem;
  border-radius: 8px;
  border: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  cursor: pointer;
  margin-left: 16px;
  z-index: 101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-primary);
  color: var(--color-accent);
  transform: scale(1.1);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-secondary);
  z-index: 110;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(.79,.21,.06,.81);
  flex-direction: column;
  align-items: flex-start;
  box-shadow: -4px 0 38px rgba(35,106,59,0.18);
  padding: 0 0 0 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: transparent;
  color: var(--color-primary);
  border: none;
  position: absolute;
  top: 24px;
  right: 26px;
  z-index: 112;
  cursor: pointer;
  width: 48px; height: 48px;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 0 36px;
  margin-top: 80px;
  width: 100%;
  gap: 18px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-primary);
  background: none;
  padding: 18px 0 9px 0;
  border-bottom: 1px solid var(--color-grey);
  border-radius: 0;
  transition: background 0.14s, color 0.14s;
  text-align: left;
  min-width: 160px;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--color-light);
  border-radius: 6px 6px 0 0;
}

/***********************************
* FOOTER
***********************************/
footer {
  background: linear-gradient(125deg, var(--color-secondary) 65%, var(--color-light) 100%);
  border-top: 1px solid var(--color-border);
  padding: 40px 0 12px 0;
}
footer .container {
  padding: 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer nav a {
  color: var(--color-primary);
  font-size: 1rem;
  font-family: var(--font-body);
  opacity: 0.88;
  transition: color 0.2s;
  margin-bottom: 2px;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-accent);
  opacity: 1;
}
footer img[alt="Breezelight Naturpflege"],
footer img[alt="Breezelight Naturpflege"] + span {
  display: inline-block;
  vertical-align: middle;
}
footer span {
  font-size: 1rem;
  color: var(--color-dark);
  font-family: var(--font-display);
  opacity: 0.82;
  margin-left: 12px;
}
footer div:last-child {
  font-size: 1rem;
  color: var(--color-dark);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/***********************************
* COOKIE BANNER & MODAL
***********************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--color-light);
  border-top: 2px solid var(--color-accent);
  box-shadow: 0 -2px 24px rgba(35,106,59,0.09);
  z-index: 1200;
  width: 100vw;
  padding: 22px 18px 15px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: transform 0.22s;
}
.cookie-banner.hide {
  transform: translateY(130%);
}
.cookie-banner .cookie-text {
  flex: 1 1 220px;
  color: var(--color-primary);
  max-width: 500px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-banner .cookie-btn {
  background: var(--color-primary);
  color: var(--color-light);
  border-radius: 24px;
  padding: 7px 20px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, transform 0.16s;
}
.cookie-banner .cookie-btn:focus, .cookie-banner .cookie-btn:hover {
  background: var(--color-accent);
  color: var(--color-light);
}
.cookie-banner .cookie-settings-btn {
  background: var(--color-accent);
  color: var(--color-light);
  padding: 7px 18px;
}
.cookie-banner .cookie-settings-btn:focus, .cookie-banner .cookie-settings-btn:hover {
  background: var(--color-primary);
}

.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 1300;
  top: 0; left:0; width: 100vw; height: 100vh;
  background: rgba(35,106,59,0.16);
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.cookie-modal-overlay.open {
  display: flex;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--color-light);
  border-radius: 18px;
  box-shadow: 0 10px 32px rgba(35,106,59,0.13);
  padding: 32px 24px 26px 24px;
  min-width: 290px;
  max-width: 96vw;
  width: 400px;
  color: var(--color-primary);
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: fadeInModal 0.22s;
}
@keyframes fadeInModal {
  from { transform: translateY(60px) scale(0.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-family: var(--font-display);
  margin-bottom: 4px;
  font-size: 1.15rem;
  color: var(--color-primary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 600;
  color: var(--color-primary);
}
.cookie-category input[type="checkbox"][disabled] {
  accent-color: var(--color-accent);
  background: var(--color-grey);
}
.cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 16px;
}
.cookie-modal .cookie-btn {
  flex: 1 1 0%;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 12px; right: 16px;
  background: transparent;
  font-size: 1.4rem;
  color: var(--color-primary);
  border: none;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-close:hover, .cookie-close:focus {
  color: var(--color-accent);
}

/***********************************
* SPECIFIC / COMPONENT STYLES
***********************************/
.feature-grid > div {
  background: var(--color-light);
  border-radius: 13px;
  box-shadow: 0 1px 7px var(--color-shadow);
  padding: 20px 16px;
  min-width: 210px;
  max-width: 100%;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: box-shadow 0.14s, transform 0.14s;
}
.feature-grid > div:hover {
  box-shadow: 0 4px 22px rgba(35,106,59,0.12);
  transform: translateY(-3px) scale(1.021);
}
.feature-grid img, .feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
}

/***********************************
* FAQ DL Section (Ratgeber)
***********************************/
dl {
  margin-bottom: 24px;
  font-family: var(--font-body);
  color: var(--color-dark);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
dl dt {
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2px;
}
dl dd {
  margin-left: 14px;
  margin-bottom: 9px;
  color: var(--color-dark);
}

/***********************************
* MODERN MICRO-INTERACTIONS
***********************************/
.button:active, .button.primary:active {
  transform: scale(0.97);
  box-shadow: 0 2px 5px rgba(35,106,59,0.11);
}
.card:active {
  transform: scale(0.98);
  box-shadow: 0 2px 6px var(--color-shadow);
}

/***********************************
* RESPONSIVE DESIGN
***********************************/
@media (max-width: 1180px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 100%;
  }
  .feature-grid, .features, .card-container, .article-list, .content-grid, .footer .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .container, main .container, .footer .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    padding: 30px 8px;
  }
  .content-wrapper {
    gap: 18px;
  }
  h1 {font-size: 1.85rem;}
  h2 {font-size: 1.3rem;}
  h3 {font-size: 1.08rem;}
  .content-grid, .feature-grid, .features, .card-container, .article-list, .footer .content-wrapper {
    flex-direction: column;
    gap: 16px 0;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  header .container {
    flex-direction: row;
    gap: 8px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .testimonial-card {min-width: 0;}
}
@media (max-width: 520px) {
  h1 {font-size: 1.18rem;}
  h2 {font-size: 1rem;}
  .section {padding: 18px 1vw;}
}

/***********************************
* ACCESSIBILITY & INTERACTIVE STATES
***********************************/
button:focus, .button:focus, .cookie-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
::-webkit-input-placeholder, ::-moz-placeholder, :-ms-input-placeholder, ::placeholder {
  color: #8ab894;
  opacity: 1;
}

/***********************************
* Z-INDEX
***********************************/
.mobile-menu, .cookie-banner, .cookie-modal-overlay { z-index: 1000; }

/***********************************
* OVERRIDES FOR REMOTE/THIRD PARTY ELEMENTS
***********************************/
@media (max-width: 400px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 2vw 8px 2vw;
    font-size: 0.95rem;
  }
  .cookie-banner .cookie-actions {
    gap: 8px;
  }
}

/***********************************
* UTILITY CLASSES
***********************************/
.mt-0 {margin-top:0!important;} .mb-0{margin-bottom:0!important;}
.mt-1 {margin-top:8px!important;} .mb-1{margin-bottom:8px!important;}
.mt-2 {margin-top:16px!important;} .mb-2{margin-bottom:16px!important;}
.mt-3 {margin-top:24px!important;} .mb-3{margin-bottom:24px!important;}
.mt-4 {margin-top:32px!important;} .mb-4{margin-bottom:32px!important;}

/***********************************
* BRAND FONTS EMBED (GOOGLE FONTS)
***********************************/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600;700&display=swap');
