/* ==========================================================================
   SHARED PREMIUM NAVBAR STYLES (COMMON FOR ALL PAGES)
   ========================================================================== */

.navbar {
  width: fit-content;
  height: 58px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #eee8ff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  font-size: 18px;
  font-weight: 600;
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  transition: all 0.3s ease;
}

.navbar a {
  text-decoration: none;
  color: #666;
  transition: color 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
  color: #a78bfa !important;
}

/* ==========================================================================
   RESPONSIVE NAVBAR FOR TABLET & MOBILE VIEWS
   ========================================================================== */

@media (max-width: 900px) {
  .navbar {
    position: fixed !important;
    top: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 auto !important;
    width: 90% !important;
    height: 52px !important;
    gap: 22px !important;
    font-size: 15px !important;
    padding: 0 18px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 50px !important;
    border: 1px solid #eee8ff !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04) !important;
    z-index: 9999 !important;
  }
}
