/* ============================
   🔄 Reset & Base Styles
   ============================ */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: #f9fafb;
  color: #111827;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ============================
   📌 Navbar
   ============================ */
.navbar {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1rem 0 2rem;
}

.navbar a {
  text-decoration: none;
  font-weight: 500;
  color: #2563eb;
  transition: color 0.2s;
}

.navbar a:hover {
  color: #1d4ed8;
}

.navbar a.active {
  color: #111827;
  font-weight: 700;
  border-bottom: 2px solid #2563eb;
  padding-bottom: 0.2rem;
}
