/* RESET & BASE -------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  background: #F4F1EE;
  color: #184A1C;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
ul, ol {
  list-style-position: inside;
  padding-left: 0;
  margin-left: 0;
}

/* TYPOGRAPHY SCALE & BRAND FONTS */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 2.7rem;
  line-height: 1.13;
  color: #184A1C;
  letter-spacing: -0.5px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.2;
  color: #184A1C;
  margin-bottom: 0.7em;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  color: #184A1C;
  margin-bottom: 0.6em;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #184A1C;
}
.hero h1, .hero .h1 {
  color: #B58336;
  font-size: 2.6rem;
  text-shadow: 0 2px 18px rgba(24,74,28,0.08);
}
p, ul li, ol li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #184A1C;
  margin-bottom: 1em;
}
strong, b {
  font-weight: 700;
  color: #B58336;
}
a:hover, a:focus {
  color: #B58336;
}

/* CONTAINERS & FLEX LAYOUTS */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section {
  margin-bottom: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(24,74,28,0.05);
}

.card-container, .feature_grid, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 280px;
  min-width: 240px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(24,74,28,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px;
}
.card:hover {
  box-shadow: 0 12px 36px rgba(182,131,54,0.16), 0 4px 16px rgba(24,74,28,0.10);
  transform: translateY(-5px) scale(1.01);
  z-index: 2;
}

.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: 16px;
  background: #F4F1EE;
  border-radius: 18px;
  padding: 20px 32px 20px 32px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(24,74,28,0.07);
}

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

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 16px 0 28px 0;
}
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(24,74,28,0.06);
  padding: 14px 20px;
  min-width: 220px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion > div {
  background: #f8f6f2;
  border-radius: 9px;
  padding: 16px 18px;
  box-shadow: 0 2px 8px rgba(24,74,28,0.04);
}
.faq-accordion h3 {
  margin-bottom: 0.4em;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #184A1C;
}

/* HERO */
.hero {
  background: linear-gradient(80deg,#184a1c 67%, #B58336 100%);
  color: #fff;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 8px 36px rgba(24,74,28,0.08);
  margin-bottom: 40px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 48px 20px 56px 20px;
}
.hero h1 {
  color: #fff;
  font-size: 2.55rem;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.12;
}
.hero p {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1em;
  color: #fff;
  text-shadow: 0 1px 6px rgba(24,74,28,0.10);
}
.hero .cta {
  margin-top: 12px;
}

/* MAIN NAVIGATION HEADER */
header {
  background: #fff;
  box-shadow: 0 4px 24px rgba(24,74,28,0.07);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 18px;
}
.logo {
  display: flex;
  align-items: center;
  height: 56px;
  margin-right: 18px;
}
.logo img {
  max-height: 48px;
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  color: #184A1C;
  letter-spacing: 0.3px;
  position: relative;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #fff;
  background: #B58336;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
  text-transform: uppercase;
  background: #B58336;
  color: #fff;
  letter-spacing: 0.6px;
  box-shadow: 0 4px 16px rgba(24,74,28,0.07);
  border: none;
  transition: background 0.22s, color 0.22s, transform 0.2s;
  cursor: pointer;
  margin-left: 18px;
}
.cta.primary {
  background: #184A1C;
  color: #fff;
}
.cta.secondary {
  background: #B58336;
  color: #fff;
}
.cta:hover,
.cta:focus {
  background: #B58336;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
.cta.primary:hover,
.cta.primary:focus {
  background: #0f3413;
}
.cta.secondary:hover,
.cta.secondary:focus {
  background: #955d18;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border-radius: 12px;
  font-size: 2rem;
  line-height: 1;
  padding: 4px 10px;
  color: #184A1C;
  border: 2px solid #B58336;
  transition: background 0.2s, border 0.2s, color 0.2s;
  margin-left: 12px;
  cursor: pointer;
  z-index: 1201;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #B58336;
  color: #fff;
  border-color: #184A1C;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 100vw;
  height: 100%;
  width: 100vw;
  background: #184A1C;
  box-shadow: -2px 0 32px rgba(24,74,28,0.19);
  z-index: 2000;
  transition: transform 0.4s cubic-bezier(.8,.1,.35,1), left 0s 0.4s;
  pointer-events: none;
}
.mobile-menu.open {
  left: 0;
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(.8,.1,.35,1);
  pointer-events: all;
}

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2em;
  margin: 16px 24px 12px 0;
  cursor: pointer;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #B58336;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 10vh auto;
  align-items: center;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  transition: background 0.18s, color 0.16s;
  letter-spacing: 0.8px;
  width: 82vw;
  text-align: center;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #B58336;
  color: #fff;
}

/* SHARED UTILITIES */
.star-rating {
  font-size: 1.25rem;
  color: #B58336;
  letter-spacing: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 0.2em;
}
input[type="search"] {
  width: 100%;
  background: #fff;
  border-radius: 14px;
  border: 2px solid #B58336;
  padding: 12px 18px;
  font-size: 1.08rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  margin-top: 18px;
  margin-bottom: 12px;
  color: #184A1C;
}
input[type="search"]:focus {
  border-color: #184A1C;
  box-shadow: 0 0 0 2px #B58336;
}

/* ICONS & DECORATIVE IMAGES */
.contact-details img,
.card img,
.feature_grid img {
  height: 32px;
  width: 32px;
  margin-right: 8px;
  flex-shrink: 0;
}

/* FOOTER -------------------- */
footer {
  background: #184A1C;
  color: #fff;
  padding: 30px 0 18px 0;
  border-radius: 32px 32px 0 0;
  margin-top: 60px;
  box-shadow: 0 -4px 32px rgba(24,74,28,0.10);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.footer-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #B58336;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  background: none;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background 0.16s, color 0.18s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #fff;
  color: #184A1C;
}
.footer-contact {
  font-size: 0.97rem;
  color: #F4F1EE;
  opacity: 0.93;
  margin-top: 4px;
  text-align: center;
}

/* BUTTONS, GENERAL CTA & LINKS */
button, .cta {
  cursor: pointer;
  user-select: none;
  border: none;
  text-decoration: none;
}

/* COOKIE CONSENT BANNER -------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #184A1C;
  color: #fff;
  z-index: 2500;
  box-shadow: 0 -2px 30px rgba(24,74,28,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 12px 18px 12px;
  gap: 16px;
  font-size: 1rem;
  animation: cookie-slide-in 0.5s;
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); opacity: .35; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cookie-banner button {
  border-radius: 24px;
  font-size: 1rem;
  padding: 10px 24px;
  background: #B58336;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.4px;
  border: none;
  box-shadow: 0 2px 8px rgba(24,74,28,0.10);
  transition: background 0.16s, color 0.16s;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: #184A1C;
  font-weight: 700;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #184A1C;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,74,28,0.80);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2600;
  animation: fadeIn 0.18s;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  color: #184A1C;
  border-radius: 18px;
  box-shadow: 0 8px 48px rgba(24,74,28,0.22);
  min-width: 320px;
  max-width: 94vw;
  padding: 36px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: popIn 0.12s;
}
@keyframes popIn {
  from { transform: scale(0.96); opacity: .1; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  border: none;
  background: none;
  font-size: 1.7em;
  color: #B58336;
  border-radius: 50%;
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F4F1EE;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  margin: 12px 0;
  font-size: 1.04rem;
}
.cookie-modal .cookie-category strong {
  color: #184A1C;
  min-width: 120px;
  margin-right: 12px;
  font-weight: 700;
}
.cookie-modal .cookie-toggle {
  margin-left: auto;
  pointer-events: auto;
  accent-color: #B58336;
  width: 22px;
  height: 22px;
}

/* ENSURE MIN SPACING BETWEEN ALL FLEX CHILDREN */
.card-container > *, .feature_grid > *, .content-grid > *, .testimonial-card > *,
.contact-details > *, .footer-nav > *, .cookie-banner .cookie-actions > *,
.faq-accordion > * {
  margin: 0;
}

/* MODERN BOLD STYLE EXTRAS -------------------- */
h1, h2, h3, h4, .cta, .main-nav a, .footer-nav a, .star-rating {
  /* strong geometric, sharp baseline */
  text-transform: none;
  letter-spacing: 0px;
}
h1, h2, h3 {
  margin-top: 0.6em;
  margin-bottom: 0.2em;
}
h1 {
  margin-top: 0;
  margin-bottom: 0.6em;
}

/* TESTIMONIAL CARD CONTRAST (accessibility) */
.testimonial-card {
  color: #184A1C;
  background: #fff;
  border-left: 5px solid #B58336;
  box-shadow: 0 2px 18px rgba(24,74,28,0.07);
}
.testimonial-card p {
  color: #184A1C;
}

/* LISTS & SPACING */
ul {
  margin-bottom: 1em;
  margin-left: 0;
  padding-left: 0;
  list-style-type: disc;
  color: #184A1C;
  font-size: 1rem;
}
ul li {
  padding-left: 1em;
  margin-bottom: 0.5em;
}
.section ul {
  margin-top: 0.5em;
  list-style: disc inside;
  padding-left: 0;
}
.section ul li {
  margin-bottom: 0.4em;
}

/* SPECIAL GRIDS (index page feature) */
.feature_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 16px 0;
}
.feature_grid > div {
  background: #F4F1EE;
  border-radius: 15px;
  flex: 1 1 230px;
  min-width: 200px;
  padding: 22px 20px 18px 20px;
  box-shadow: 0 2px 12px rgba(182,131,54,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-left: 5px solid #B58336;
  transition: box-shadow 0.21s, border-color 0.17s;
}
.feature_grid > div:hover {
  box-shadow: 0 4px 20px rgba(182,131,54,0.17);
  border-color: #184A1C;
}

/* MAP EMBED STYLE (kontakt) */
.map-embed {
  background: #F4F1EE;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(24,74,28,0.06);
  padding: 16px 18px;
  font-weight: 600;
  color: #184A1C;
  margin-bottom: 16px;
  margin-top: 10px;
}
.cta-info {
  font-weight: 700;
  color: #B58336;
  margin-top: 18px;
}

/* SPECIAL: Hide main nav/cta on mobile, show burger */
@media (max-width: 1024px) {
  header .container {
    gap: 10px;
  }
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 850px) {
  header .container {
    gap: 6px;
  }
  .logo {
    height: 46px;
  }
}
@media (max-width: 768px) {
  .main-nav,
  .cta.primary {
    display: none;
  }
  .logo {
    height: 40px;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }

  .container {
    padding: 0 10px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .section {
    margin-bottom: 34px;
    padding: 26px 8px;
    border-radius: 16px;
  }
  .hero .container {
    padding: 30px 8px 36px 8px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  .card {
    padding: 18px 10px;
    border-radius: 13px;
  }
  .feature_grid {
    gap: 13px;
    flex-direction: column;
  }
  .feature_grid > div {
    min-width: 0;
    width: 100%;
    border-radius: 10px;
    padding: 16px 10px;
  }
  .card-container, .content-grid, .contact-details {
    flex-direction: column;
    gap: 18px;
  }
  .map-embed {
    padding: 10px;
    font-size: 0.97rem;
  }
  .footer-nav {
    gap: 12px;
    font-size: 0.98rem;
  }
  .testimonial-card {
    padding: 16px 10px;
    border-radius: 11px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .hero .container {
    padding: 16px 2vw 26px 2vw;
  }
  .section {
    padding: 14px 2vw;
    border-radius: 8px;
  }
  .cookie-modal .cookie-modal-content {
    padding: 20px 8px 18px 8px;
    border-radius: 11px;
    min-width: 0;
  }
}

/* PRINT SAFETY */
@media print {
  .hero, .main-nav, .mobile-menu, .mobile-menu-toggle, .footer-nav, .cta, .cookie-banner, .cookie-modal {
    display: none !important;
  }
}
