/* Navigation styles */

nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  transition: background 0.3s ease, padding 0.3s ease;
}
.nav-solid {
  background: rgba(255, 255, 255, 0.95);
}
.logo {
  text-align: center;
  font-size: 5rem;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav-links li a {
  text-decoration: none;
  color: black;
  font-family: "Satoshi", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 1px;
}
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: black;
}

/* Mobile nav (keeps all original placement/values) */
@media (max-width: 900px) {
  nav {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 80px;
    padding: 0;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-size: 1.2rem;
    flex: 1;
    padding-left: 20px;
  }
  .menu-toggle {
    display: block;
    padding-right: 20px;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    gap: 0;
    background: rgba(255, 255, 255, 0.95);
    margin: 0;
    padding: 0;
    z-index: 49;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
    padding: 15px 20px;
    border-bottom: 1px solid #e0dcd5;
  }
  .nav-links li a {
    font-size: 1rem;
  }
}