.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 16, 16, 0.141);
  mix-blend-mode: normal;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: all 0.3s ease;
}
.navbar.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.navbar-container {
  font-family: "Montserrat", sans-serif;
  max-width: 100vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 1rem;
}
@media (max-width: 600px) {
  .navbar-container {
    padding: 1rem 2rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: normal;
  color: #f5f5f5;
  z-index: 1101;
}
.logo a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}
.logo a:hover {
  color: #f5f5f5;
}
@media (max-width: 600px) {
  .logo {
    font-size: 2rem;
  }
}

.nav-links {
  display: flex;
  align-items: center;
}
.nav-links a {
  padding: 0rem 1rem;
  text-decoration: none;
  color: #f5f5f5;
  transition: all 0.3s ease;
}
.nav-links a:hover {
  color: #f5f5f5;
}
@media (max-width: 600px) {
  .nav-links {
    display: none;
    position: absolute;
    transform: translateY(-100%);
    flex-direction: column;
    background: rgba(15, 16, 16, 0.141);
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    padding: 1rem;
    z-index: 999;
    width: 100dvw;
    height: 100dvh;
  }
  .nav-links.show {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
  }
  .nav-links a {
    margin: 0.5rem 0;
  }
}

.hamburger {
  display: none;
}
@media (max-width: 600px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 2.2rem;
    height: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1101;
  }
  .hamburger span {
    height: 2px;
    width: 100%;
    background-color: #f5f5f5;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translateY(7px) translateX(8px);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px) translateX(8px);
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100dvw;
  background: #0a0f18;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.mobile-menu a {
  font-size: 1.5rem;
  color: #f5f5f5;
  text-decoration: none;
  margin: 1.5rem 0;
  transition: color 0.2s ease;
}
.mobile-menu a:hover {
  color: rgb(91.0642201835, 123.2385321101, 251.9357798165);
}
.mobile-menu a.active {
  font-weight: 700;
}
.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.navbar[data-theme=dark] {
  background: rgba(15, 16, 16, 0.141);
}
.navbar[data-theme=dark].visible .nav-links a,
.navbar[data-theme=dark].visible .logo a {
  color: #f5f5f5 !important;
}
.navbar[data-theme=dark].visible .hamburger span {
  background-color: #f5f5f5 !important;
}

.navbar[data-theme=light] {
  background: rgba(15, 16, 16, 0.141);
}
.navbar[data-theme=light].visible .nav-links a,
.navbar[data-theme=light].visible .logo a {
  color: #121212 !important;
}
.navbar[data-theme=light].visible .hamburger span {
  background-color: #121212 !important;
}

.nav-links a.active {
  font-weight: 700;
}

.mobile-menu a.active {
  font-weight: 700;
}/*# sourceMappingURL=navbar.css.map */