/* =========================
   NAVBAR BASE
========================= */

.navbar {

  position: fixed;
  top: 0;
  left: 0;

  width: 100%;

  display: flex;

  justify-content: space-between;
  align-items: center;

  padding: 16px 24px;

  background: rgba(255,255,255,0.6);

  backdrop-filter: blur(20px);

  border-bottom: 1px solid rgba(0,0,0,0.05);

  z-index: 1000;

}

.nav-logo {

  font-size: 1.2rem;
  font-weight: 600;

  color: #ff4fa3;

}

/* =========================
   LINKS
========================= */

.nav-links {

  display: flex;

  gap: 24px;

}

.nav-links a {

  text-decoration: none;

  color: #333;

  font-weight: 500;

  font-size: 0.95rem;

  transition: 0.2s ease;

}

.nav-links a:hover {

  color: #ff4fa3;

}

/* =========================
   MOBILE MENU BUTTON
========================= */

.menu-btn {

  display: none;

  font-size: 1.5rem;

  background: none;
  border: none;

  cursor: pointer;

}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }

}

/* =========================
   MOBILE MENU OVERLAY
========================= */

.mobile-menu {

  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(255,255,255,0.95);

  backdrop-filter: blur(25px);

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 24px;

  transform: translateY(-100%);

  transition: 0.35s ease;

  z-index: 2000;

}

.mobile-menu a {

  font-size: 1.4rem;

  text-decoration: none;

  color: #333;

  font-weight: 500;

}

.mobile-menu a:hover {

  color: #ff4fa3;

}

.mobile-menu.active {

  transform: translateY(0);

}

/* CLOSE BUTTON */

.close-menu {

  position: absolute;

  top: 20px;
  right: 24px;

  font-size: 2rem;

  background: none;
  border: none;

  cursor: pointer;

}