header {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  padding: 15px 40px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

header nav {
  display: flex;
  gap: 30px;
}

header nav a {
  position: relative;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  color: white;
  letter-spacing: 0.5px;
  padding: 5px 0;
  transition: color 0.3s ease;
}

/* Hover krāsa */
header nav a:hover {
  color: #ff8a00;
}

/* Animated underline */
header nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff8a00, #e52e71);
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

/* Hover animācija */
header nav a:hover::after {
  width: 100%;
}

/* Aktīvā lapa */
header nav a.active::after {
  width: 100%;
}