/* =========================================================
   OWK HERO
   ========================================================= */

/* =========================================================
   02 HERO
   ========================================================= */

.owk-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.owk-hero-bg,
.owk-hero-overlay {
  position: absolute;
  inset: 0;
}

.owk-hero-bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: owkHeroCrossfade 60s infinite;
  transform: scale(1.02);
}

.owk-hero-bg-1 {
  background-image: url("/wp-content/uploads/2026/04/hero_trachtengruppe.webp");
  animation-delay: -5s;
}

.owk-hero-bg-2 {
  background-image: url("/wp-content/uploads/2026/04/hero_wandergruppe.webp");
  animation-delay: 15s;
}

.owk-hero-bg-3 {
  background-image: url("/wp-content/uploads/2026/04/hero_jugendgruppe.webp");
  animation-delay: 35s;
}

.owk-hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(20, 24, 20, 0.28),
    rgba(20, 24, 20, 0.48)
  );
  z-index: 2;
}

.owk-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 32px 110px;
  color: #ffffff;
}

.owk-hero-kicker {
  margin: 0 0 10px;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.95;
}

.owk-hero h1 {
  margin: 0 0 18px;
  max-width: 760px;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.08;
  color: #ffffff;
}

.owk-hero-text {
  max-width: 800px;
  margin: 0 0 28px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
}

.owk-hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================================================
   03 HERO SCROLL-HINWEIS
   ========================================================= */

.owk-hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 5;
}

.owk-hero-scroll-icon {
  display: block;
  width: 18px;
  height: 18px;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  transform: rotate(45deg);
  animation: owkScrollArrow 2s ease-in-out infinite;
  opacity: 0.95;
}

.owk-hero-scroll:hover .owk-hero-scroll-icon {
  opacity: 1;
}

@keyframes owkScrollArrow {
  0% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 0.65;
  }
  50% {
    transform: rotate(45deg) translate(6px, 6px);
    opacity: 1;
  }
  100% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 0.65;
  }
}

/* =========================================================
   04 HERO BILDWECHSEL
   ========================================================= */

@keyframes owkHeroCrossfade {
  0% { opacity: 0; }
  8.333% { opacity: 1; }
  33.333% { opacity: 1; }
  41.666% { opacity: 0; }
  100% { opacity: 0; }
}

/* =========================================================
   RESPONSIVE HERO
   ========================================================= */

@media (max-width: 768px) {
  .owk-hero {
    min-height: 360px;
    align-items: flex-end;
  }

  .owk-hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(20, 24, 20, 0.18),
      rgba(20, 24, 20, 0.42)
    );
  }

  .owk-hero-content {
    padding: 64px 16px 28px;
  }

  .owk-hero-kicker {
    font-size: 10px;
    margin: 0 0 6px;
    letter-spacing: 0.05em;
  }

  .owk-hero h1 {
    max-width: 100%;
    margin: 0 0 10px;
    font-size: clamp(1.5rem, 6vw, 2rem);
    line-height: 1.1;
  }

  .owk-hero-text {
    max-width: 100%;
    margin: 0 0 14px;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .owk-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }

  .owk-btn {
    width: 100%;
    text-align: center;
    padding: 10px 14px;
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .owk-hero-bg-1 {
    background-image: url("https:///wp-content/uploads/2026/04/hero_trachtengruppe_mobil.webp");
    background-position: center center;
  }

  .owk-hero-bg-2 {
    background-image: url("/wp-content/uploads/2026/04/hero_wandergruppe_mobil.webp");
    background-position: center center;
  }

  .owk-hero-bg-3 {
    background-image: url(""/wp-content/uploads/2026/04/hero_jugendgruppe_mobil.webp");
    background-position: center center;
  }

  .owk-hero-scroll {
    bottom: 14px;
    width: 36px;
    height: 36px;
  }

  .owk-hero-scroll-icon {
    width: 15px;
    height: 15px;
    border-right-width: 2px;
    border-bottom-width: 2px;
  }
}