/* Grundlayout */
body {
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  color: #333;
  background: #fafafa;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  color: #2e7d32;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* === Allgemeine Navigation === */
nav {
  background: #2e7d32;
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo */
.nav-logo {
  position: absolute;
  left: 20px;
}
.nav-logo img {
  height: 40px;
  transition: transform 0.3s ease;
}
.nav-logo img:hover {
  transform: scale(1.05);
}

/* Desktop-Links */
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
}
.nav-item {
  position: relative;
}
.nav-item a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  transition: color 0.3s ease;
}
.nav-item a:hover {
  color: #c8e6c9;
}

/* Dropdown-Menü (zentriert unter Link) */
.nav-item .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  list-style: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  min-width: 180px;
  text-align: center;
  padding: 8px 0;
  z-index: 1000;
}
.nav-item .dropdown li a {
  color: #333;
  font-weight: normal;
  padding: 10px 16px;
  display: block;
}
.nav-item .dropdown li a:hover {
  background: #f0f0f0;
  color: #2e7d32;
}
.nav-item:hover .dropdown {
  display: block;
}

/* Burger-Button */
.burger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  position: absolute;
  right: 20px;
}

/* === Mobile Sidebar === */
@media (max-width: 768px) {
  .burger {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    background: #2e7d32;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70vw;
    height: 100vh;
    padding: 40px 20px;
    box-shadow: -4px 0 12px rgba(0,0,0,0.2);
    transition: right 0.3s ease-in-out;
    z-index: 9999;
  }

  .nav-list.show {
    right: 0;
  }

  .nav-item {
    margin: 15px 0;
  }

  .nav-item a {
    color: white;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 8px;
  }

  .nav-item:last-child a {
    border-bottom: none;
  }

  /* Dropdowns mobil: direkt sichtbar als Unterpunkte */
  .nav-item .dropdown {
    position: static;
    background: none;
    box-shadow: none;
    transform: none;
    padding: 0;
  }

  .nav-item .dropdown li a {
    color: #c8e6c9;
    padding: 8px 0 8px 20px;
  }
}


/* Hero-Bereich */
header {
  background: url('garten-banner.jpg') no-repeat center center/cover;
  height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}


/* Modern Hero 
.hero-modern {
  padding: 120px 20px;
  background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero-inner {
  max-width: 900px;
}

.hero-modern h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1b5e20;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-modern h1 span {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  color: #4caf50;
  margin-top: 8px;
}

.hero-sub {
  font-size: 1.25rem;
  color: #2e7d32;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
 /*
.btn-primary,
.btn-secondary {
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Primary Button 
.btn-primary {
  background-color: #43a047;
  color: white;
  box-shadow: 0 4px 10px rgba(67,160,71,0.25);
}

.btn-primary:hover {
  background-color: #2e7d32;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(46,125,50,0.3);
}

/* Secondary Button 
.btn-secondary {
  background-color: white;
  color: #2e7d32;
  border: 2px solid #2e7d32;
}

.btn-secondary:hover {
  background-color: #e8f5e9;
  transform: translateY(-2px);
}
 */ 

 /* Modern Hero */
.hero-clean {
  padding: 90px 20px 120px;
  background: linear-gradient(135deg, #e8f5e9 0%, #fff8e1 100%);
  display: flex;
  justify-content: center;
}


.hero-container {
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* Left Side */
.hero-left {
  flex: 1 1 500px;
}

.hero-clean h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #1b5e20;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-clean h1 span {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  color: #4caf50;
  margin-top: 8px;
}

.hero-sub {
  font-size: 1.25rem;
  color: #2e7d32;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px; 
}

.btn-primary,
.btn-secondary {
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Primary Button */
.btn-primary {
  background-color: #43a047;
  color: white;
  box-shadow: 0 4px 10px rgba(67,160,71,0.25);
}

.btn-primary:hover {
  background-color: #2e7d32;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(46,125,50,0.3);
}

/* Secondary Button */
.btn-secondary {
  background-color: white;
  color: #2e7d32;
  border: 2px solid #2e7d32;
}

.btn-secondary:hover {
  background-color: #e8f5e9;
  transform: translateY(-2px);
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.stat strong {
  font-size: 1.8rem;
  color: #1b5e20;
  display: block;
}

.stat span {
  font-size: 0.95rem;
  color: #4caf50;
}

/* Right Side Image */
.hero-right {
  flex: 1 1 450px;
}

.hero-image {
  width: 100%;
  height: 380px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-image: url('/images/tomas-martinez-5oI-7VXVapo-unsplash.jpg'); /* eigenes Bild */
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-clean h1 {
    font-size: 2.2rem;
  }
  .hero-image {
    height: 300px;
  }
}


header button {
  margin-top: 20px;
  background: #f57c00;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
header button:hover {
  background: #ef6c00;
  transform: scale(1.05);
}

/* Sektionen */
section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}
section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #2e7d32;
}

/* Leistungen */
.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service {
  flex: 1 1 250px;
  background: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.service:hover {
  transform: translateY(-5px);
}

/* Galerie */
.slider img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Team */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.member {
  flex: 1 1 200px;
  text-align: center;
}
.member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.member p {
  font-weight: bold;
}

/* FAQ */
details {
  margin: 10px 0;
  padding: 15px;
  background: #f4f4f4;
  border-radius: 5px;
  cursor: pointer;
}
details summary {
  font-weight: bold;
  color: #2e7d32;
}

/* Kontaktformular */
form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: auto;
}
form input, form textarea {
  margin: 10px 0;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}
form input:focus, form textarea:focus {
  border-color: #66bb6a;
  outline: none;
}
form button {
  background: #2e7d32;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
form button:hover {
  background: #1b5e20;
}

/* Footer */
footer {
  background: #2e7d32;
  color: white;
  padding: 40px 20px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-around;
}
.footer-section h3 {
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin: 5px 0;
}
.footer-section a {
  color: #c8e6c9;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section a:hover {
  color: #fff176;
}
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 15px;
  font-size: 0.9rem;
}

.footer-h3 {
    color: #ccc;
}

/* Formular-Container */
form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 40px auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Labels */
form label {
  font-weight: bold;
  margin-bottom: 5px;
  color: #2e7d32;
  font-family: 'Montserrat', sans-serif;
}

/* Eingabefelder */
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form select,
form textarea {
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Fokus-Effekt */
form input:focus,
form select:focus,
form textarea:focus {
  border-color: #66bb6a;
  box-shadow: 0 0 5px rgba(102,187,106,0.5);
  outline: none;
}

/* Checkbox DSGVO */
form input[type="checkbox"] {
  margin-right: 10px;
}

.checkbox-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: normal;
  color: #333;
}


/* Absenden-Button */
form input[type="submit"],
form button {
  background: #2e7d32;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

form input[type="submit"]:hover,
form button:hover {
  background: #1b5e20;
  transform: scale(1.05);
}

/* Bestätigungsmeldung */
#confirmation-message {
  margin-top: 20px;
  padding: 15px;
  background: #c8e6c9;
  border: 1px solid #2e7d32;
  border-radius: 5px;
  color: #2e7d32;
  font-weight: bold;
  text-align: center;
}

.info-box {
  background: #f1f8e9;
  border-left: 5px solid #2e7d32;
  padding: 20px;
  margin: 40px auto;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-family: 'Roboto', sans-serif;
}
.info-box h3 {
  margin-top: 0;
  color: #2e7d32;
  font-family: 'Montserrat', sans-serif;
}
.info-box ul {
  padding-left: 20px;
}
.info-box li {
  margin-bottom: 10px;
}

.wp-close-area {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 40px auto;
  padding: 20px 30px;
  background: linear-gradient(135deg, #f57c00, #ef6c00);
  color: white;
  font-size: 1.1rem;
  font-family: 'Roboto', sans-serif;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: left;
  line-height: 1.6;
  cursor: default;
  transition: transform 0.3s ease;
}

.wp-close-area strong {
  font-weight: bold;
  text-decoration: underline;
}

.wp-close-area:hover {
  transform: scale(1.01);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}


/* Job Grid */
.job-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin: 40px auto;
  max-width: 1200px;
}

.job-card {
  flex: 1 1 300px;
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.job-card h3 {
  color: #2e7d32;
  font-family: 'Montserrat', sans-serif;
}

.apply-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  background: #2e7d32;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.apply-btn:hover {
  background: #1b5e20;
  transform: scale(1.05);
}

/* Grundlayout */
.flatpickr-calendar {
  font-family: 'Roboto', sans-serif;
  background-color: #f6fff6;
  border: 1px solid #4CAF50;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* Monatsüberschrift */
.flatpickr-months .flatpickr-month {
  color: #2e7d32;
  font-weight: bold;
  font-size: 16px;
}

/* Wochentage */
.flatpickr-weekday {
  color: #388e3c;
  font-weight: 600;
}

/* Tage */
.flatpickr-day {
  color: #333;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.flatpickr-day:hover {
  background-color: #c8e6c9;
}

/* Ausgewählter Tag */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background-color: #4CAF50;
  color: white;
}

/* Deaktivierte Tage */
.flatpickr-day.disabled {
  color: #ccc;
  background-color: #f0f0f0;
  cursor: not-allowed;
}

/* Heute */
.flatpickr-day.today {
  border: 1px solid #4CAF50;
  font-weight: bold;
}

/* Uhrzeit-Dropdown */
#uhrzeit {
  font-family: 'Roboto', sans-serif;
  padding: 8px;
  border: 1px solid #4CAF50;
  border-radius: 6px;
  background-color: #f6fff6;
  color: #2e7d32;
  font-size: 14px;
}

.banner { 
  position: relative; 
  width: 100%; 
  height: 300px; /* nicht zu hoch */ 
  overflow: hidden; 
} 
.banner img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

.service-card {
  text-decoration: none;
}

/* Cookie-Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(46,125,50,0.95);
  color: white;
  padding: 1rem;
  text-align: center;
  font-size: 0.95rem;
  display: none; /* erst unsichtbar */
  z-index: 2000;
}

#cookie-banner button {
  margin-left: 1rem;
  padding: 0.4rem 1rem;
  border: none;
  background: #c8e6c9;
  color: #2e7d32;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

#cookie-banner button:hover {
  background: white;
}

/* Container */
.slider {
  position: relative;
  width: min(800px, 100%);
  aspect-ratio: 16 / 9;           /* Anpassen, falls andere Bildproportionen */
  overflow: hidden;
  border-radius: 12px;
  background: #111;               /* Fallback-Hintergrund */
}

/* Bilder */
.slider-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-img.before {
  z-index: 0;
}

.slider-img.after {
  z-index: 1;
  /* Start: 50% des Nachher-Bildes sichtbar */
  clip-path: inset(0 50% 0 0);    /* oben rechts unten links */
  transition: clip-path 0.35s ease;
}

/* Interaktion (Hover/Fokus zeigt mehr vom Nachher-Bild) */
.slider:hover .slider-img.after,
.slider:focus-within .slider-img.after {
  clip-path: inset(0 0 0 0);      /* vollständig sichtbar */
}

/* Optionaler visueller Griff in der Mitte */
.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(1px);
  transition: left 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}

.slider:hover .slider-handle,
.slider:focus-within .slider-handle {
  left: 100%;
  opacity: 0;
}

/* Barrierefreiheit: sichtbarer Fokus, wenn per Tastatur fokussiert */
.slider:focus-visible {
  outline: 3px solid #5aa9ff;
  outline-offset: 4px;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; /* Abstand zwischen den Bildern */
  align-items: start;
}

.compare img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.baumzucht-p {
  color: #111;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px; 
  background-color: #2e7d32;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 4px rgba(0,0,0,0.15); 
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #1b5e20;
  transform: translateY(-2px);
  box-shadow: 0 6px rgba(0,0,0,0.2);
}

.kontakt-box {
  background-color: #f0fdf4;
  border-left: 4px solid #22c55e;
  padding: 1rem 1.5rem;
  margin: 2rem auto;
  max-width: 600px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  font-family: sans-serif;
}

.kontakt-box h3 {
  margin-top: 0;
  color: #166534;
}

.kontakt-box a {
  color: #166534;
  text-decoration: underline;
  font-weight: bold;
}
.kontakt-box a:hover {
  color: #22c55e;
}

.baumzucht {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 1rem;
  font-family: sans-serif;
}

.baumzucht h2 {
  color: #166534;
  margin-bottom: 1rem;
}

.baum-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.baumkarte {
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 1rem;
  flex: 1 1 300px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: center;
}

.baumkarte img {
  max-width: 100%;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.baumkarte h3 {
  color: #166534;
  margin: 0.5rem 0;
}

.button {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background: #f97316;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

.button:hover {
  background: #ea580c;
}

.leistungen {
  margin-top: 2rem;
  background: #f0fdf4;
  border-left: 4px solid #22c55e;
  padding: 1rem;
  border-radius: 6px;
}
.leistungen h3 {
  margin-top: 0;
  color: #166534;
}

.p-rasenmaehen {
  color: #111;
}

.galerie-thumb {
  width: 250px;
  margin: 10px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.galerie-thumb:hover {
  transform: scale(1.05);
}

.galerie-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.galerie-thumb {
  width: 300px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.galerie-thumb:hover {
  transform: scale(1.05);
}

.info-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #2c7a7b;
  text-decoration: none;
  background-color: #e6f3f1;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.info-hlink:hover {
  background-color: #cdeae5;  
}

.legal-hint {
  background-color: #f2f9c3; 
  border: 1px solid #fde047; 
  color: #788350; 
  padding: 1rem; 
  border-radius: 8px; 
  font-size: 0.95rem; 
  margin-top: 2rem; 
}
.legal-hint a {
  color: #78350f; 
  text-decoration: underline; 
}

.ueber-uns-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Falls du eine feste Maximalhöhe willst */
.ueber-uns-image {
  max-width: 400px;   /* Bildbereich begrenzen */
}

.fade-in {
  opacity: 0;
  transition: opacity .5s ease-out, transform .5s ease-out;
  transition-delay: 0.3s;
}
.fade-in-left  { transform: translateX(-20px); }
.fade-in-right { transform: translateX(20px); }
.fade-in.visible {
  opacity: 1;
  transform: translate(0,0);
}
/*
.testimonial-slider-wrapper {
  overflow: hidden;
  max-width: 100%;
  position: relative;
}

.testimonial-slider {
  display: flex;
  gap: 20px;
  animation: slide 25s infinite linear;
  width: max-content;
}

.testimonial {
  flex: 0 0 300px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  font-style: italic;
}

.testimonial span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #2e7d32;
}

.stars {
  color: #ff9800;       /* Orange-Gelb für Sterne 
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-align: center;
}



@keyframes slide {
  0%   { transform: translateX(0); }
  20%  { transform: translateX(0); }
  40%  { transform: translateX(-320px); }
  60%  { transform: translateX(-640px); }
  80%  { transform: translateX(-960px); }
  100% { transform: translateX(0); }
}

.testimonial-slider-wrapper {
  overflow: hidden;
  max-width: 100%;
  position: relative;
}

.testimonial-slider {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.testimonial {
  flex: 0 0 300px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  font-style: italic;
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #2e7d32;
}

.stars {
  color: #ff9800;
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-align: center;
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* Hälfte der Breite, dann wiederholt 
}
*/

 /*#kundenstimmen {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

#kundenstimmen h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.rating-box {
  font-size: 1.2rem;
  margin-bottom: 40px;
  display: inline-block;
  background: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.testimonial-slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: auto;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial {
  flex: 0 0 300px;
  background: #fff;
  margin: 0 15px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: left;
}

.stars {
  color: #ff9800;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.testimonial blockquote {
  font-style: italic;
  color: #555;
  margin: 0 0 12px;
}

.testimonial footer {
  font-size: 0.9rem;
  color: #2e7d32;
  font-weight: bold;
}

/* Buttons 
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #2e7d32;
  color: #fff;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.4rem;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.prev { left: -50px; }
.next { right: -50px; }

.prev:hover, .next:hover {
  background: #1b5e20;
}

/* Responsive: mehrere Cards nebeneinander 
@media (min-width: 768px) {
  .testimonial-slider-wrapper {
    max-width: 1000px;
  }
  .testimonial {
    flex: 0 0 280px;
  }
}

.testimonial .author {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #2e7d32;
  font-size: 0.9rem;
} 

#kundenstimmen {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

#kundenstimmen h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.rating-box {
  font-size: 1.2rem;
  margin-bottom: 40px;
  display: inline-block;
  background: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.testimonial-slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: auto;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial {
  flex: 0 0 300px;
  background: #fff;
  margin: 0 15px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: left;
}

.stars {
  color: #ff9800;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.testimonial blockquote {
  font-style: italic;
  color: #555;
  margin: 0 0 12px;
}

.testimonial .author {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #2e7d32;
  font-size: 0.9rem;
}

/* Buttons 
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #2e7d32;
  color: #fff;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.4rem;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.prev { left: -50px; }
.next { right: -50px; }

.prev:hover, .next:hover {
  background: #1b5e20;
}

/* Responsive 
@media (min-width: 768px) {
  .testimonial {
    flex: 0 0 280px;
  }
}*/



/* === Allgemeine Navigation === */
nav {
  background: #2e7d32;
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo */
.nav-logo {
  position: absolute;
  left: 20px;
}
.nav-logo img {
  height: 40px;
  transition: transform 0.3s ease;
}
.nav-logo img:hover {
  transform: scale(1.05);
}

/* Desktop-Links */
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
}
.nav-item {
  position: relative;
}
.nav-item a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  transition: color 0.3s ease;
}
.nav-item a:hover {
  color: #c8e6c9;
}

/* Dropdown-Menü (zentriert unter Link) */
.nav-item .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  list-style: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  min-width: 180px;
  text-align: center;
  padding: 8px 0;
  z-index: 1000;
}
.nav-item .dropdown li a {
  color: #333;
  font-weight: normal;
  padding: 10px 16px;
  display: block;
}
.nav-item .dropdown li a:hover {
  background: #f0f0f0;
  color: #2e7d32;
}
.nav-item:hover .dropdown {
  display: block;
}

/* Burger-Button */
.burger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  position: absolute;
  right: 20px;
}

/* === Mobile Sidebar === */
@media (max-width: 768px) {
  .burger {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    background: #2e7d32;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70vw;
    height: 100vh;
    padding: 40px 20px;
    box-shadow: -4px 0 12px rgba(0,0,0,0.2);
    transition: right 0.3s ease-in-out;
    z-index: 9999;
  }

  .nav-list.show {
    right: 0;
  }

  .nav-item {
    margin: 15px 0;
  }

  .nav-item a {
    color: white;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 8px;
  }

  .nav-item:last-child a {
    border-bottom: none;
  }

  /* Dropdowns mobil: direkt sichtbar als Unterpunkte */
  .nav-item .dropdown {
    position: static;
    background: none;
    box-shadow: none;
    transform: none;
    padding: 0;
  }

  .nav-item .dropdown li a {
    color: #c8e6c9;
    padding: 8px 0 8px 20px;
  }
}