/* ===== NAVBAR – CHARCOAL + NEON PINK ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #121212;
  border-bottom: 1px solid #222;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  font-size: 28px;
  text-transform: lowercase;
  display: inline-flex;
  align-items: baseline;
}

/* "ebiya" → white */
.brand-main {
  color: #ffffff;
}

/* ".sg" → neon pink (unchanged) */
.brand-sg {
  color: #ff2f92;
  margin-left: 2px;
  text-shadow:
    0 0 10px rgba(255, 47, 146, 0.6),
    0 0 22px rgba(255, 47, 146, 0.35);
}


.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo a {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: #ff2f92;
  text-shadow:
    0 0 6px rgba(255, 47, 146, 0.6),
    0 0 14px rgba(255, 47, 146, 0.4);
}

/* NAV LINKS */
.nav {
  display: flex;
  gap: 18px;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: #e5e5e5;
  font-weight: 500;
  padding: 6px 4px;
  transition: color 0.25s ease;
}

.nav-link:hover {
  color: #ff2f92;
}

/* NEON UNDERLINE */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #ff2f92;
  box-shadow:
    0 0 6px rgba(255, 47, 146, 0.8),
    0 0 12px rgba(255, 47, 146, 0.5);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* ACTIVE */
.nav-link.active {
  color: #ff2f92;
}

/* MOBILE */
@media (max-width: 640px) {
  .nav {
    gap: 12px;
  }
}
