/* Canonical navbar styles copied from login.html fallback block */
/* Keep this file synchronized with login.html's inline styles for pixel-match */
body {
  font-family: 'Heebo', 'Rubik', Arial, sans-serif;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #222;
}
.logo {
  color: #ff6b00;
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: bold;
}
.site-nav { }
.nav-links {
  display: flex;
  list-style: none;
  gap: 1rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links li { list-style: none; }
.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  display: inline-block;
  border-radius: 8px;
  transition: all 160ms ease;
  font-weight: 500;
}
.nav-links a:hover {
  color: #ff6b00;
}
.nav-links a[aria-current="page"] {
  background: linear-gradient(45deg, #ff6b00, #1fb6c2);
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  padding: 0.5rem 1rem;
}
.hamburger { display: none; background: transparent; border: none; }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
}
.cta-button {
  background: linear-gradient(45deg, #ff6b00, #1fb6c2);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.cta-button:hover { opacity: 0.95; }
