/* ===========================================================
   🔔 Bell & 🍔 Hamburger Icons — Unified Styling
   =========================================================== */
.nav-icon {
  font-size: 1.4rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  position: relative;
  color: #888; /* default grey (off) */
  background: transparent;
  border: none;
  outline: none;
  transition: transform 0.2s ease, color 0.25s ease,
              text-shadow 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}
.nav-icon:hover {
  transform: scale(1.1);
}

/* 🔘 Red dot for unread notifications */
.nav-icon .dot {
  position: absolute;
  top: 4px;
  right: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: red;
  display: none;
}
.nav-icon.has-unread .dot {
  display: block;
}

/* 💚 Neon container */
.hero-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  background: rgba(0, 0, 0, 0.65);
  border: 2px solid var(--neon);
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
  box-shadow: 0 0 10px rgba(143, 212, 0, 0.6);
  width: fit-content;
  margin-inline: auto;
}

/* 📱 Responsive */
@media (max-width: 400px) {
  .hero-icons {
    gap: 0.75rem;
    padding: 0.5rem 1rem;
  }
  .nav-icon {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }
  .nav-icon .dot {
    top: 3px;
    right: 5px;
    width: 7px;
    height: 7px;
  }
}

/* ===================================================
   ✅ Bell Visual States (single source of truth)
   =================================================== */
#notif-bell.off {
  color: #888 !important;
  text-shadow: none !important;
  filter: grayscale(100%) brightness(0.7) !important;
  opacity: 0.85;
  transition: all 0.25s ease-in-out;
}
#notif-bell.active {
  color: gold !important;
  text-shadow: 0 0 8px gold, 0 0 12px rgba(255, 215, 0, 0.6) !important;
  filter: none !important;
  opacity: 1;
  transition: all 0.25s ease-in-out;
}
