/**
 * navigation.css - Header und Navigation (V2-Vorlage index_v17)
 */
.base-header,
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  box-shadow: var(--shadow-sm);
  overflow-x: clip;
  overflow-y: visible;
}

.base-header-nav {
  display: flex;
  gap: 40px;
}

.base-link-header-nav {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-anthracite);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

.base-link-header-nav::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-orange);
  transition: width var(--transition-fast);
}

.base-link-header-nav:hover {
  color: var(--color-orange);
}

.base-link-header-nav:hover::after {
  width: 100%;
}

@media (max-width: 1024px) {
  .base-header-nav {
    display: none;
  }
}

@media (max-width: 1024px) {
  .base-header,
  .header {
    padding-left: 30px;
    padding-right: 30px;
  }
}
