/* ==========================================================================
   Header — Header + Hero Variante A (Styleguide Abschnitt 5)
   Transparent, liegt als Overlay auf dem Hero-Bild. Sitzt auf dem weißen
   Teil des Verlaufs (siehe hero.css) — daher dunkle Schrift + Logo für
   hellen Hintergrund, wie bei Variante B.
   ========================================================================== */

.hero-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px var(--gutter-desktop);
  gap: var(--space-6);
}

.hero-logo-link {
  margin-right: auto;
  flex-shrink: 0;
  display: flex;
}

.hero-logo {
  width: 140px;
  height: auto;
  display: block;
}

.hero-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-nav-link {
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-body);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.12s;
}
.hero-nav-link:hover { color: var(--color-primary); }

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .hero-header {
    padding: 16px var(--gutter-mobile);
    flex-wrap: wrap;
    row-gap: var(--space-3);
  }
  .hero-nav { display: none; }
}
