.hero-wave {
  line-height: 0;
  position: relative;
  margin-top: -120px; /* Zieht die Welle genau um ihre Höhe nach oben ins Bild */
  z-index: 3;         /* Sorgt dafür, dass sie über dem Hero-Overlay liegt */
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 120px;
}

.hero {
      background: url('header.jpg') center center / cover no-repeat;
      height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
      position: relative;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.5);
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .small-hero {
  height: 35vh;
  padding-bottom: 60px; /* Schafft Platz für die Welle am unteren Rand */
}
.site-header {
  padding: 70px 0 30px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4f6f8 100%);
}

.hero {
  background: url('/img/header.png') center center / cover no-repeat;
  height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.site-title {
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.site-subtitle {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 0;
}
.site-title-link {
  text-decoration: none;
  color: inherit;
}

.navbar-nav .nav-link {
  padding: 0.8rem 1.5rem;
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  color: #0d6efd;
}



footer a:hover {
  text-decoration: underline;
  opacity: 0.8;
}