/* =============================================
   HERO CINEMATIC (Startseite)
   Zugehörig zu: _includes/hero-home.njk
   ============================================= */

.hero-cinematic {
  position: relative;
  min-height: 80vh;
  background-image: url("/assets/img/hero-picture.png");
  background-size: cover;
  background-position: 70% center;
  overflow: hidden;
  padding: 0 !important;
  margin-top: -82px;
  padding-top: 82px;
}

.hero-cinematic::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 24, 60, 0.92) 0%,
    rgba(0, 24, 60, 0.75) 38%,
    rgba(0, 10, 30, 0.25) 65%,
    rgba(0, 0, 0, 0.05) 100%
  );
  z-index: 1;
}

.hero-glass-card {
  background: rgba(0, 20, 55, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  padding: 2.5rem;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 500;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  line-height: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
}

@media (max-width: 768px) {
  .hero-cinematic {
    min-height: auto;
  }
  .hero-glass-card {
    padding: 1.5rem;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(0, 30, 70, 0.72);
  }
}
