/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 88px;
  border-bottom: 1px solid var(--border);
  background: rgba(9, 9, 12, 0.94);
  backdrop-filter: blur(14px);
}

.header-content {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 54px;
 
}

.logo {
  flex: 0 0 170px;
  width: 170px;
  height: 56px;
  display: flex;
  align-items: center;
}

.logo img {
  display: block;
  width: 170px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.navigation a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 88px;
  padding: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.navigation a:hover,
.navigation a.active {
  color: var(--text);
}

/* Active verandert alleen kleur en lijn,
   dus niet het gewicht of de breedte */
.navigation a.active {
  font-weight: 600;
}

.navigation a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.navigation a:hover::after,
.navigation a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}