/* ==================================================
   NAVBAR (MOBILE FIRST)
================================================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}

.nav-inner {
  max-width: 1280px;
  margin: auto;
  padding: 16px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo span {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--white-soft);
}

/* Menu pill */
.menu {
  display: flex;
  align-items: center;
  padding: 8px 22px;
  border-radius: 999px;
  background: var(--nav-pill);
}

.menu a {
  margin: 0 10px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white-soft);
  opacity: 0.85;
  position: relative;
  transition: color 0.3s ease, opacity 0.3s ease;
  font-family: var(--font-sans);
}

.menu a.active {
  color: #ffffff;
  opacity: 1;
}

/* Social */
.social {
  display: flex;
  gap: 10px;
}

.social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* X */
.social a.twitter {
  background: #000;
}

/* Facebook */
.social a.facebook {
  background: #1877f2;
}

/* Instagram */
.social a.instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}

.social a i {
  color: #fff;
  font-size: 13px;
}


/* Navbar blur on scroll */
#navbar.scrolled {
  background: rgba(143, 179, 184, 0.45);
  backdrop-filter: blur(10px);
}
