/* ==============================
   main.css
   Layout + Header/Footer Styling
============================== */

/* Reset body to allow sticky footer */
html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Navbar */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--border-gray);
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-teal);
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links ul li a {
  color: var(--dark-navy);
  font-weight: 500;
  transition: 0.3s;
}

.nav-links ul li a:hover {
  color: var(--primary-teal);
}

/* Footer */
.footer {
  background: var(--dark-navy);
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  margin-top: auto; /* pushes footer to bottom */
}

.footer a {
  color: var(--primary-teal);
  margin: 0 5px;
  font-weight: 500;
}

.footer a:hover {
  color: var(--accent-green);
}
