.navbar-wrapper {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  padding: 20px 28px;
  background: rgb(0 0 0 / 51%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0px 0px 24px -15px rgb(0 0 0 / 51%);
  font-family: var(--secondary-font);
}

.navbar-container {
  width: 90%;
  max-width: 1500px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;

  text-decoration: none;
  background: #fff;
  border-radius: 8px;
}

.navbar-logo img {
  width: auto;
  height: 70px;
  padding: 4px 12px;
}

/* NAV LINKS */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 42px;

  list-style: none;
}

.navbar-menu a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);

  font-size: 16px;
  font-weight: 600;

  transition: 0.3s ease;
}

.navbar-menu a:hover {
  color: #facc15;
}

.navbar-menu a.active {
  color: #facc15;
}

/* BUTTON */
.navbar-button {
  text-decoration: none;
  background: #facc15;
  color: #111827;
  height: 45px;
  padding: 0 4px 0 16px;
  gap: 8px;
  border-radius: 6px;
  justify-content: center;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.navbar-button img {
  background: #0d0d0d;
  height: 36px;
  width: 36px;
  padding: 8px;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.navbar-button span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.navbar-button::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: -200px;
  left: -200px;
  left: -1;
  border-radius: 200px;
  background: #fff;
  z-index: 0;
  transition: 0.8s ease;
}

.navbar-button:hover::before {
  bottom: -75px;
  left: -40px;
}

/* MOBILE MENU */
.navbar-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 14px;
  background: #facc15;
  border-radius: 8px;
}

.navbar-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 10px;
}

@media (max-width: 1000px) {
  .navbar-container {
    width: 100%;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .navbar-mobile-toggle {
    display: flex;
  }

  .navbar-menu {
    position: absolute;

    top: 125px;
    left: 20px;
    right: 20px;

    flex-direction: column;
    align-items: flex-start;

    gap: 24px;

    padding: 25px;

    border-radius: 20px;

    background: rgba(15, 23, 42, 0.9);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.08);

    display: none;
  }

  .navbar-menu.navbar-active {
    display: flex;
  }

  .navbar-button {
    display: none;
  }
}
