/* BlitzBote Würzburg – NATURE ORGANIC FLEXBOX CSS THEME */
/* 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: #F5F7F3;
  color: #223355;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
a {
  color: #50C878;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1f7d48;
}
ul, ol {
  margin-left: 1.5em;
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #223355;
  margin-bottom: 16px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #223355;
  margin-bottom: 14px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #223355;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #223355;
}
p, ul, ol {
  font-size: 1rem;
  color: #223355;
  margin-bottom: 10px;
  line-height: 1.7;
}
.subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #2C4622;
  font-weight: 400;
  margin-bottom: 18px;
}
strong {
  font-weight: 700;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* FLEXBOX LAYOUTS (MANDATORY) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px 32px 24px 24px/28px 24px 32px 32px; /* organic shapes */
  box-shadow: 0 4px 28px 0 rgba(40,72,39,0.08);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 24px;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 32px;
    border-radius: 20px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #FAF9F6;
  border-radius: 24px 16px 22px 12px/18px 30px 12px 26px; /* organic */
  box-shadow: 0 2px 12px rgba(80, 200, 120, 0.13);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  min-width: 260px;
  max-width: 360px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(54, 128, 90, 0.24);
  transform: translateY(-3px) 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;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f3f7f2;
  border-radius: 24px 22px 20px 18px/32px 18px 20px 22px;
  box-shadow: 0 2px 12px rgba(34, 51, 85, 0.08);
  margin-bottom: 20px;
  border-left: 5px solid #50C878;
  color: #223355;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px rgba(80,200,120,0.16);
}
.testimonial-details {
  font-size: 0.97rem;
  color: #46614C;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: 12px;
}

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

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  justify-content: flex-start;
}
.feature {
  background: #F5F7F3;
  border-radius: 28px 20px 16px 16px/24px 18px 32px 18px;
  box-shadow: 0 2px 8px rgba(80,200,120, 0.11);
  padding: 24px 20px;
  min-width: 180px;
  max-width: 250px;
  flex: 1 1 190px;
  transition: box-shadow 0.2s;
}
.feature img {
  width: 46px;
}
.feature:hover {
  box-shadow: 0 6px 24px rgba(34, 51, 85, 0.13);
  background: #eef6ec;
}
@media (max-width: 900px) {
  .features-grid {
    gap: 18px;
  }
  .feature {
    min-width: 130px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature {
    min-width: 100px;
    padding: 16px 12px;
  }
}

.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}
.service-highlights li {
  background: #e3efdb;
  color: #2C4622;
  border-radius: 16px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 1rem;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
  align-items: flex-start;
}
.trust-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}
.trust-points img {
  width: 24px;
  height: auto;
}

.text-section {
  margin-bottom: 14px;
}
.map-placeholder {
  background: #f6f3ec;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  border-radius: 20px;
  box-shadow: 0 1px 4px rgba(33,46,42,0.04);
}

/* TABLES */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #FAF9F6;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(80,200,120,0.06);
  margin-bottom: 20px;
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 16px 10px;
  font-size: 1rem;
}
.pricing-table th {
  background: #e3efdb;
  color: #223355;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.pricing-table tr:nth-child(even) td {
  background: #f5f7f3;
}
.pricing-table td {
  color: #2C4622;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #F5F7F3;
  border-radius: 18px;
  padding: 18px 16px 14px 18px;
  box-shadow: 0 2px 8px rgba(80,200,120,0.08);
}
.faq-item h3 {
  color: #223355;
  margin-bottom: 7px;
  font-size: 1.12rem;
}

/* BUTTONS */
.button {
  display: inline-flex;
  align-items: center;
  background-color: #50C878;
  color: #FAF9F6;
  border: none;
  border-radius: 100px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 30px;
  margin-top: 12px;
  box-shadow: 0 2px 12px rgba(59,99,80,0.10);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.13s;
  outline: none;
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
}
.button.primary {
  background: #50C878;
  color: #FAF9F6;
}
.button.primary:hover, .button.primary:focus {
  background: #419a61;
  color: #fff;
  box-shadow: 0 4px 20px rgba(80,200,120,0.22);
  transform: translateY(-2px) scale(1.025);
}
.button.secondary {
  background: #fff;
  color: #50C878;
  border: 1.5px solid #50C878;
}
.button.secondary:hover, .button.secondary:focus {
  background: #f2f7ea;
  color: #193519;
}
.button:active {
  transform: scale(0.97);
}

/* HEADER & DESKTOP NAVIGATION */
header {
  background: #FAF9F6;
  box-shadow: 0 2px 18px rgba(32,44,11,0.06);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 70px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #223355;
  font-size: 1.09rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 24px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: #e3efdb;
  color: #329a52;
}
header nav a.button.primary {
  margin-left: 8px;
}
.mobile-menu-toggle {
  background: #50C878;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(80,200,120,0.10);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.16s;
  z-index: 1021;
}
.mobile-menu-toggle:active {
  transform: scale(0.93);
}
.mobile-menu-toggle:focus {
  outline: 2px solid #223355;
  background: #419a61;
}

@media (max-width: 950px) {
  header .container {
    gap: 10px;
  }
  header nav {
    gap: 11px;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 4px;
  }
}
@media (max-width: 820px) {
  header nav a.button.primary {
    padding-left: 14px;
    padding-right: 14px;
    font-size: 0.99rem;
  }
}

/* MOBILE NAVIGATION */
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34, 51, 85, 0.76);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.61,-0.17,.19,1.04);
  z-index: 1100;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: #50C878;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  margin: 20px 24px 0 0;
  align-self: flex-end;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(80,200,120,0.12);
  transition: background 0.2s, transform 0.16s;
  z-index: 1101;
}
.mobile-menu-close:active {
  transform: scale(0.93);
}
.mobile-menu-close:focus {
  outline: 2px solid #FAF9F6;
  background: #419a61;
}
.mobile-nav {
  background: #fff;
  width: 92vw;
  max-width: 340px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding: 30px 0 0 0;
  box-shadow: -8px 0 28px rgba(34,51,85,0.14);
  z-index: 1110;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #223355;
  padding: 18px 30px;
  font-size: 1.2rem;
  font-weight: 500;
  border-bottom: 1px solid #e3efdb;
  transition: background 0.16s, color 0.18s;
  display: flex;
  width: 100%;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #e3efdb;
  color: #50C878;
}

/* FOOTER */
footer {
  background: #f0efe9;
  border-top: 2px solid #e2edd5;
  padding: 40px 0 10px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
}
.footer-logo {
  margin-bottom: 10px;
}
.footer-nav {
  color: #46614C;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #46614C;
  text-decoration: underline;
  margin-right: 8px;
  transition: color 0.15s;
}
.footer-nav a:hover {
  color: #329a52;
  text-decoration: none;
}
.footer-contact {
  color: #46614C;
  font-size: 0.97rem;
}

@media (min-width: 700px) {
  footer .container {
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
  }
  .footer-logo {
    margin-bottom: 0;
  }
  .footer-nav {
    margin-bottom: 0;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: #f4f8f2cc;
  box-shadow: 0 -2px 18px rgba(44,100,52,0.07);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: center;
  padding: 22px 10px 22px 20px;
  width: 100%;
}
.cookie-banner p, .cookie-banner span {
  color: #223355;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-banner .button {
  margin-top: 0;
  padding: 9px 20px;
  font-size: 1rem;
  border-radius: 24px;
}
.cookie-settings-btn {
  background: #fff;
  color: #223355;
  border: 1.5px solid #50C878;
  transition: background 0.18s, color 0.14s;
}
.cookie-settings-btn:hover { background: #e3efdb; color: #329a52; }
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 9px 16px 13px;
  }
  .cookie-banner-buttons {
    gap: 10px;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(44,100,52,0.23);
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 0 32px rgba(44,100,52,0.15);
  padding: 38px 28px 28px 28px;
  max-width: 420px;
  min-width: 260px;
  width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
  position: relative;
  animation: cookieModalAppear 0.33s cubic-bezier(.61,-0.17,.19,1.04);
}
@keyframes cookieModalAppear { 0% { transform: translateY(48px); opacity: 0.1; } 100% { transform: none; opacity: 1; } }
.cookie-modal h2 {
  margin-bottom: 10px;
  color: #223355;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: space-between;
  padding: 9px 0 8px 0;
}
.cookie-category span {
  font-size: 1rem;
  color: #223355;
}
.cookie-switch {
  appearance: none;
  width: 38px; height: 20px;
  border-radius: 22px;
  background: #e3efdb;
  outline: none;
  position: relative;
  box-shadow: inset 0 2px 6px #c2d9bb;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-switch:checked {
  background: #50C878;
}
.cookie-switch:before {
  content: '';
  position: absolute;
  left: 4px; top: 4px;
  width: 12px; height: 12px;
  background: #fff;
  border-radius: 100%;
  transition: transform 0.17s;
  box-shadow: 0 1px 4px #b4c7b9;
}
.cookie-switch:checked:before {
  transform: translateX(15px);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
  margin-top: 10px;
}
.cookie-modal-actions .button {
  min-width: 110px;
  border-radius: 20px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: #3d4e3d;
  cursor: pointer;
  transition: color 0.14s;
  z-index: 5;
}
.cookie-modal .modal-close:hover {
  color: #50C878;
}
@media (max-width: 420px) {
  .cookie-modal {
    padding: 18px 4vw 16px 4vw;
  }
}

/* MICRO-INTERACTIONS & ORGANIC SHAPES */
.button, .card, .feature, .testimonial-card, .faq-item, .service-highlights li {
  transition: box-shadow 0.18s, background 0.18s, transform 0.11s, color 0.13s;
}
footer, header, .section, .feature, .testimonial-card, .faq-item, .card, .cookie-banner, .cookie-modal {
  border-radius: 32px 32px 24px 24px / 28px 24px 32px 32px;
}
@media (max-width: 600px) {
  .section { padding: 12px 0; }
}
@media (max-width: 480px) {
  .content-wrapper { padding: 0 3%; }
}

/* FORM BASICS, MODALS, ETC. (if needed) */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  background: #f5f7f3;
  border: 1.5px solid #e3efdb;
  border-radius: 12px;
  padding: 10px 14px;
  color: #223355;
  margin-bottom: 18px;
  transition: border 0.16s, box-shadow 0.13s;
}
input:focus, textarea:focus, select:focus {
  border-color: #50C878;
  outline: none;
  box-shadow: 0 2px 14px rgba(80,200,120,0.11);
}

/* GENERAL SPACING & VISUAL HIERARCHY */
main {
  margin-top: 0;
  min-height: 60vh;
}
section {
  width: 100%;
}

/* Z-INDEX FOR INTERACTIVES */
.mobile-menu,
.mobile-menu-close,
.cookie-banner,
.cookie-modal-overlay { z-index: 2000; }

/* ACCESSIBILITY FOCUS */
a:focus, button:focus {
  outline: 2px solid #2C4622!important;
  outline-offset: 2px;
}

/* Hide visually but keep for screen readers */
.sr-only {
  position: absolute;
  left: -10000px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* UTILITIES */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 8px!important; }
.mt-2 { margin-top: 16px!important; }
.mb-1 { margin-bottom: 8px!important; }
.mb-2 { margin-bottom: 16px!important; }
.text-center { text-align: center!important; }

/* SPECIAL CLASSES for content blocks */

@media (max-width: 425px) {
  h1, .h1 { font-size: 1.6rem; }
  h2, .h2 { font-size: 1.25rem; }
  .mobile-nav a { font-size: 1.05rem; }
}

/* END OF FILE */
