/* ---------- Reset ---------- */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
}

/* ---------- Header / Navbar ---------- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: linear-gradient(90deg, #0056b3, #0066d6);
  color: #fff;
  z-index: 1200;
  box-shadow: 0 6px 18px rgba(6,24,64,0.12);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  /* no extra background to avoid double layering */
  background: transparent;
}

.navbar .brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.navbar .logo-placeholder {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
}

.navbar .nav-links {
  display: flex;
  gap: 16px;
}

.navbar .nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: opacity 0.2s ease;
}

.navbar .nav-links a:hover {
  opacity: 0.8;
}

/* ---------- Footer ---------- */
footer {
  text-align: center;
  padding: 20px;
  background: #333;
  color: white;
  margin-top: 60px;
}

footer .footer-links {
  margin-top: 8px;
}

footer .footer-links a {
  color: #ddd;
  margin: 0 8px;
  text-decoration: none;
  font-size: 0.9rem;
}

footer .footer-links a:hover {
  color: white;
}
