@import url('./common.css');

#fetch-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: var(--nav-height);
  background: rgba(8,13,26,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
  color: #fff;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.15s;
  font-family: var(--font-body);
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  background: var(--green);
  color: #000 !important;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 0.06em !important;
}

.nav-cta:hover {
  background: #00ff88;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(8,13,26,0.98);
  padding: 16px 24px;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid var(--border);
}

.nav-mobile-menu a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-body);
}

.nav-cta-mobile {
  color: var(--green) !important;
  font-weight: 700 !important;
}

.nav-mobile-menu.open {
  display: flex;
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  #fetch-nav { padding: 0 20px; }
}
