.top-navbar {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-left: 32px;
}
.top-navbar a {
  color: #8d6748;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.top-navbar a:hover,
.top-navbar a.active {
  background: #f7f3ee;
  color: #bfa074;
}
@media (max-width: 900px) {
  .top-navbar {
    display: none;
  }
}
