:root {
  --green: #2f8a44;
  --green-dark: #1f5f2d;
  --light-bg: #f9f9f9;
  --section-bg: #ffffff;
  --footer-bg: #0f0f0f;
  --text-light: #e5e5e5;
}

/* --- Grundlayout --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: ;
  background: var(--light-bg);
  color: #0f1724;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.nav-container {
  background: rgba(240, 240, 240, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 42px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  width: 99%;
  max-width: 1300px;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- Logo-Bereich --- */
.logo-area {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
    
  gap: 14px;
}

.logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
    border-radius: 32px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-top {
  font-size: 13px;
  color: var(--green-dark);
  text-transform: uppercase;
  font-weight: 600;
}

.brand-bottom {
  font-size: 18px;
  font-weight: 700;
}

/* --- Navigationslinks --- */
.nav-links {
  list-style: none;
  display: flex;
  gap: 42px; /* mehr Abstand zwischen den Links */
  margin-left: 50px; /* größerer Abstand zum Logo */
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 1.05rem;
  white-space: nowrap; /* verhindert Zeilenumbruch bei "Über uns" */
}

.nav-links a:hover {
  color: var(--green);
}
.hero {
  position: relative;
  height: 100vh; /* volle Höhe, rutscht nicht weg */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero-slides .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  filter: brightness(70%);
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slides .hero-bg.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
  backdrop-filter: brightness(90%) blur(2px);
}

/* Hero-Content */
.hero-content {
  position: relative;
  z-index: 2; /* bleibt über den Bildern */
  max-width: 800px;
  padding: 2rem 1.5rem; /* mehr Abstand oben/unten */
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem; /* Abstand zwischen h1, h2, p, buttons */
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0; /* entfernt default margin */
  line-height: 1.15;
  font-weight: 700;
  word-break: keep-all;
}

.hero h2 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  margin: 0; /* entfernt default margin */
  opacity: 0.9;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin: 0; /* entfernt default margin */
  line-height: 1.6;
  opacity: 0.9;
  text-align: center;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem; /* extra Abstand oben */
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2; /* über den Bildern */
}

.hero-dots .dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.hero-dots .dot.active {
  background-color: white;
}

/* Hover-Zoom bleibt optional */
.hero:hover .hero-bg {
  transform: scale(1.03);
}

/* Mobile */
@media (max-width: 600px) {
  .hero-content {
    max-width: 95%;
    padding: 0 1rem;
  }

  .hero {
    height: 90vh;
  }

  .hero h1 {
    letter-spacing: -0.5px;
  }
}
/* ---------- BUTTONS ---------- */
.btn {
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background: var(--green);
  color: white;
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-outline {
  border: 1px solid white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: var(--green-dark);
}


/* ---------- FOOTER ---------- */
.footer {
  background: #1e1e1e;
  color: var(--text-light);
  padding: 50px 20px;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-content h4 {
  color: white;
}

.footer-content a {
  color: var(--green);
  text-decoration: none;
}

.footer-content a:hover {
  text-decoration: underline;
}
/* Standard: Hamburger auf Desktop unsichtbar */
.hamburger {
  display: none;
}
/* Standard: Hamburger auf Desktop unsichtbar */
.hamburger {
  display: none;
}
/* Smartphones (max-width: 600px) */
@media (max-width: 600px) {
  .hamburger {
    display: block;
    font-size: 52px;
    background: none;
    border: none;
    cursor: pointer;
    color: #111;
    z-index: 200;
    line-height: 1;
    margin-left: 6px;
    position: relative;
    top: -3px; /* leicht angehoben */
    padding: 0;
  }

  .nav-container {
    padding: 1.2rem 1.8rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    gap: 10px;
  }

  .logo-area {
    display: flex;
    align-items: center;
  }

  /* Dropdown-Menü unterhalb der Navbar */
  .nav-links {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-68%); /* weiter nach links geschoben */
    width: 230px;
    padding: 18px 15px;
    border-radius: 18px;
    background: rgba(240,240,240,0.96);
    backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
  }

  .nav-links.active {
    display: flex;
    animation: fadeIn 0.25s ease forwards;
  }

  .nav-links a {
    font-size: 1rem;
    color: #111;
    font-weight: 500;
    width: 100%;
    text-align: center;
    transition: color 0.3s ease;
  }

  .nav-links a:hover {
    color: #2f8a44;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translate(-68%, -8px);
    }
    to {
      opacity: 1;
      transform: translate(-68%, 0);
    }
  }
}







.footer {
  background: #0f0f0f;
  color: #e5e5e5;
  padding: 50px 20px 20px 20px;
  overflow: hidden;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

/* Footer Spalten */
.footer-left, .footer-center, .footer-right {
  flex: 1 1 300px;
}

/* Social Icons Desktop rechts */
.footer-right {
  position: relative;
}

.social-icons {
  display: flex;
  gap: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.social-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

/* Footer-Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 25px;
  padding: 15px 20px 25px 20px;
  border-top: 1px solid #222;
  font-size: 0.85rem;
  color: #999;
  background: #0f0f0f;
}

/* ===== Responsiv für Mobile ===== */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  .footer-left, .footer-center, .footer-right {
    flex: 1 1 100%;
  }

  .footer-right .social-icons {
    position: static;
    transform: none;
    justify-content: center;
    margin-top: 15px;
  }

  .social-icon {
    width: 70px;
    height: 70px;
  }

  .footer-bottom {
    font-size: 0.9rem;
    padding: 20px 15px 25px 15px;
  }
}
/* Kontaktdaten (Telefon & Email) */
.footer-center a {
  color: #e5e5e5; /* hellgrau */
  text-decoration: none;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.footer-center a:hover {
  color: #16a34a; /* grün */
  border-bottom: 2px solid #16a34a;
}

/* Rechtliches / Impressum / Datenschutz */
.footer-right a {
  color: #16a34a; /* grün */
  text-decoration: none;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.footer-right a:hover {
  color: #16a34a;
  border-bottom: 2px solid #16a34a;
}

/* Social Media Icons bleiben unverändert */
.social-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

/* Responsiv für Mobile bleibt unverändert */
@media (max-width: 900px) {
  .footer-center a,
  .footer-right a {
    border-bottom: none; /* optional: keine Linie auf Mobile, nur Hover-Farbe */
  }

  .social-icon {
    width: 70px;
    height: 70px;
  }
}
<style>
.seo-map-container {
    position: absolute;
    left: -10000px; /* Schiebt die Karte weit aus dem linken Bildschirmrand */
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
</style>

