.top-margin {
margin-top: 8rem;
}
.site-header {
  width: 100%;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  position: fixed;
  background: white;
  z-index: 10;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
}

.nav-logo {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #111;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #444;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #000;
}


.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .nav {
    position: relative;
  }

  /* Show hamburger icon */
  .nav-toggle {
    display: block;
    color: #111;
  }

  /* Stack links vertically */
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    width: 200px;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
    color: #333;
  }
}

.spacer {
  margin-left: 2rem;
  font-size: 2rem;
}
