/* ═══════════════════════════════════════
   shared.css — Base, Navbar, Footer
   Dipakai oleh: index.html, privacy.html
   ═══════════════════════════════════════ */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0a0f;
  color: #e5e7eb;
  min-height: 100vh;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-brand svg { width: 28px; height: 28px; color: #60a5fa; }

.nav-brand span {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-start {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-login {
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #e5e7eb !important;
  font-size: 14px;
  font-weight: 600 !important;
  text-decoration: none;
  transition: all 0.2s;
}

.nav-login:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  color: #fff !important;
}

.nav-links { display: flex; align-items: center; gap: 28px; }

.nav-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: #e5e7eb; }

.nav-cta {
  padding: 8px 18px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600 !important;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(59,130,246,0.4);
  color: #fff !important;
}

.nav-cta svg { width: 16px; height: 16px; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #e5e7eb;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn svg { width: 24px; height: 24px; }

/* ── Footer ── */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px;
  text-align: center;
  font-size: 13px;
  color: #4b5563;
}

.footer a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}

.footer a:hover {
  color: #9ca3af;
}

/* ── Responsive: Navbar ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
}
