/* nav-footer.css: Styles for header (navbar) and footer */
.site-header {
  background: white;
  border-bottom: 1px solid #e3e7ee;
  padding: 0 0 0 0;
  margin-bottom: 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}
.site-logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: #007bff;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.site-nav a {
  color: #333;
  text-decoration: none;
  margin-left: 24px;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.2s;
}
.site-nav a:hover {
  color: #007bff;
}
.site-footer {
  background: white;
  border-top: 1px solid #e3e7ee;
  padding: 24px 0 12px 0;
  text-align: center;
  margin-top: 32px;
}
.site-footer .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 900px) {
  .site-header .container, .site-footer .container {
    padding: 0 8vw;
  }
}
@media (max-width: 600px) {
  .site-header .container, .site-footer .container {
    padding: 0 2vw;
  }
  .site-header .container {
    height: 48px;
  }
  .site-logo {
    font-size: 1.05rem;
  }
  .site-nav a {
    margin-left: 12px;
    font-size: 0.98rem;
  }
}
