/* =========================
   HEADER — GoCover
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  margin: 14px auto 0;
  max-width: 1300px;

  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.96),
    rgba(239,246,255,0.96)
  );

  backdrop-filter: blur(12px);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(15,23,42,0.12);
  border: 1px solid rgba(226,232,240,0.9);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 18px;
}

/* Brand */
.brand a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  height: 40px;
}

.brand-tagline {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

/* Navigation */
.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: rgba(15,23,42,0.06);
  color: #0f172a;
}

/* Login button */
.nav-actions {
  display: flex;
  align-items: center;
}

.login-btn {
  padding: 8px 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.15);
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.login-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(15,23,42,0.18);
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}
