:root {
    --grad1: #8b5cf6;
    --grad2: #fa5e80;
    --bg: #f5f5f5;
}

/* Navbar */
.navbar {
    position: fixed;       /* stays visible while scrolling */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    padding: 6px 14px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Logo */
.logo {
    width: 32px;
    height: 32px;
    background: linear-gradient(150deg, var(--grad1), var(--grad2));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 13px;
    margin-left: 10px;
}

/* Desktop nav items */
.header-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 100px;
}


.header-nav .desktop-item {
    text-decoration: none;
    color: #444;
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all .2s ease;
}

.header-nav .desktop-item i {
    font-size: 14px;
}

.header-nav .desktop-item:hover {
    color: var(--grad1);
}

.header-nav .desktop-item.active {
    color: var(--grad2);
    font-weight: 700;
}
.profile-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
}

/* Mobile bottom nav */
.mobile-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.06);
    z-index: 1100;
}

.mobile-item {
    text-decoration: none;
    color: #444;
    font-size: 11px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 6px 8px;
    border-radius: 8px;
    transition: .2s;
}

.mobile-item i {
    font-size: 16px;
}

.mobile-item:hover {
    color: var(--grad1);
    font-weight: 600;
}

.mobile-item.active {
    color: var(--grad2);
    font-weight: 700;
}

/* Hide mobile bar on desktop */
@media(min-width:992px) {
    .mobile-bottom {
        display: none;
    }
    
}
