/* header.css — Template 1: Premium Minimalist */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.85); /* Matches --bg-main */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo a {
  display: flex;
  align-items: center;
}

.main-logo-img {
  height: 64px;
  width: auto;
  transition: opacity 0.2s;
}

.main-logo-img:hover {
  opacity: 0.8;
}

.nav-and-selector-wrapper {
  display: flex;
  align-items: center;
}

.main-nav {
  display: flex;
  gap: 4px;
  background: var(--surface);
  padding: 4px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.nav-link {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.nav-link:hover, 
.nav-link.active {
  color: var(--text-main);
  background: var(--surface-hover);
}

/* Mobile Adjustments */
@media (max-width: 600px) {
  .header-content { height: 64px; }
  .main-logo-img { height: 50px; }
  .nav-link { padding: 6px 14px; font-size: 0.8rem; }
}