/* ── NAVBAR ── */

.navbar {
  position: fixed;
  top: 74px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1080px, calc(100% - 80px));
  height: 60px;
  background: #2e2e2e;
  border-radius: 50px;
  box-shadow: 0 4px 6px #0000007a;
  z-index: 50;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.navbar-logo-link {
  width: 13.24%;
  display: block;
}

.navbar-logo {
  width: 100%;
  height: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 60px;
}

.navbar-links a {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: #f07025;
}

@media (max-width: 900px) {
  .navbar {
    top: 20px;
  }
}

