/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background: white;
  color: #222;
  min-height: 100vh;
}
/* HEADER */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  width: 100%;
  height: 110px;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  z-index: 999;
  padding: 0 60px;
}
.logo {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #222;
  text-align: center;
  margin: 0 auto;
  white-space: nowrap;
}
.nav-left, .nav-right {
  display: flex;
  gap: 25px;
  min-width: 220px;
}
.nav-left {
  align-items: center;
}
.nav-right {
  align-items: flex-end; /* sorgt für gleiche Grundlinie */
}
.nav-left a, .nav-right a {
  text-decoration: none;
  color: #444;
  font-size: 18px;
  transition: 0.2s;
  display: flex;
  align-items: center;
  height: 56px; /* gleiche Höhe wie die Icons */
}
.nav-left a:hover, .nav-right a:hover:not(.icon-btn) {
  color: #ff8800;
}

/* Social Icon Buttons */
.icon-btn {
  width: 56px;
  height: 56px;
  border: none;
  background: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  padding: 0;
  box-sizing: border-box;
  transition: transform 0.18s;
}
.icon-btn img.whatsapp {
  width: 44px;
  height: 44px;
  transition: transform 0.18s;
}
.icon-btn img.instagram {
  width: 36px; /* ca. 20% kleiner als WhatsApp */
  height: 36px;
  transition: transform 0.18s;
}
.icon-btn:hover img {
  transform: scale(1.15);
}

/* STARTSEITE */
.home-container {
  padding-top: 140px; /* Mehr Abstand zum Header */
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
/* BILD-ANIMATION */
.image-marquee-viewport {
  width: 66.666vw; /* 4/6 der Breite */
  margin: 0 auto 24px auto; /* Weniger Abstand nach unten */
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow-x: hidden;
  overflow-y: visible;
}
.image-marquee {
  display: flex;
  gap: 25px;
  width: max-content;
  will-change: transform;
}
.marquee-img-link {
  display: block;
  position: relative;
  z-index: 1;
  overflow: visible;
}
.marquee-img-link img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.12);
  display: block;
  transition:
    transform 0.18s cubic-bezier(.4,2,.3,1),
    box-shadow 0.18s,
    margin 0.18s;
}
.marquee-img-link:hover {
  z-index: 10;
}
.marquee-img-link:hover img {
  transform: scale(1.12);
  box-shadow: 0 12px 32px rgba(255,136,0,0.18), 0 5px 20px rgba(0,0,0,0.12);
  margin: 0;
}
/* BUTTON */
.primary-btn {
  margin-top: 24px;
  background: #fff;
  color: #111;
  border: 2px solid #111;
  padding: 20px 48px;
  border-radius: 10px;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition:
    background 0.2s,
    color 0.2s,
    border 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
  display: inline-block;
}
.primary-btn:hover {
  background: #ff8800;
  color: #fff;
  border: 2px solid #ff8800;
  box-shadow: 0 8px 24px rgba(255,136,0,0.18);
  transform: translateY(-4px) scale(1.03);
}
/* FOOTER */
footer {
  position: relative;
  text-align: center;
  padding: 30px 0;
  margin-top: 30px;
  font-size: 14px;
  color: #777;
}
.footer-btn {
  position: absolute;
  left: 30px;
  bottom: 30px;
  background: #fff;
  color: #111;
  border: 2px solid #111;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s, transform 0.15s;
  display: inline-block;
}
.footer-btn:hover {
  background: #ff8800;
  color: #fff;
  border: 2px solid #ff8800;
  box-shadow: 0 8px 24px rgba(255,136,0,0.18);
  transform: translateY(-2px) scale(1.03);
}
.footer-zucht-btn {
  position: absolute;
  right: 30px;
  bottom: 30px;
  background: #fff;
  color: #111;
  border: 2px solid #111;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s, transform 0.15s;
  display: inline-block;
}
.footer-zucht-btn:hover {
  background: #ff8800;
  color: #fff;
  border: 2px solid #ff8800;
  box-shadow: 0 8px 24px rgba(255,136,0,0.18);
  transform: translateY(-2px) scale(1.03);
}

.logo {
  text-decoration: none;      /* Unterstreichung entfernen */
  color: #222;                /* Standardfarbe wie bisher */
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 1px;
  text-align: center;
  margin: 0 auto;
  white-space: nowrap;
  display: block;
  transition: color 0.2s;
}

.logo:hover {
  color: #ff8800;             /* Orange beim Hover */
  cursor: pointer;
}

footer {
  position: relative; /* NICHT fixed oder absolute! */
  text-align: center;
  padding: 30px 0;
  margin-top: 30px;
  font-size: 14px;
  color: #777;
  z-index: 1;
}

.services-hero {
  position: relative;
  width: 100%;
  height: 480px; /* Bild deutlich höher */
  overflow: visible; /* Bild kann nach unten rausgehen */
  margin-bottom: 0px; /* Weniger Abstand, damit das Bild weiter unten ist */
  display: flex;
  align-items: flex-end; /* Überschrift weiter nach unten */
  justify-content: center;
  padding-bottom: 40px; /* Überschrift nicht am unteren Rand kleben */
}

.services-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.services-hero-title {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
  text-align: center;
}

.seminar-section .footer-btn {
  margin-top: 18px;
}

.seminar-btn {
  background: #fff;
  color: #111;
  border: 2px solid #111;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s, transform 0.15s;
  display: inline-block;
  margin-top: 18px;
}
.seminar-btn:hover {
  background: #ff8800;
  color: #fff;
  border: 2px solid #ff8800;
  box-shadow: 0 8px 24px rgba(255,136,0,0.18);
  transform: translateY(-2px) scale(1.03);
}
.marquee-img-link {
  cursor: none; /* Versteckt den normalen Cursor beim Hover */
  position: relative;
}

.abo-card .abo-title {
  color: #c8f5c0;
}

.abo-main-card h1 {
  color: #c8f5c0;
}



/* Hover-Effekt für Karten und Button */
.abo-card:hover,
.abo-btn:hover {
  background: #c8f5c0;
  color: #222;
  box-shadow: 0 12px 32px rgba(255,136,0,0.10), 0 5px 20px rgba(0,0,0,0.12);
  border-color: #c8f5c0;
  transform: scale(1.04);
}

/* Hover-Effekt für die Produktkarte rechts */
.abo-product-card.blog:hover {
  background: #c8f5c0;
  border-color: #c8f5c0;
}