/* ============================================================
   navbar.css  –  ChimpNado top navigation bar
   ============================================================ */

.navbar-custom {
    background: var(--accent-blue);
    padding: 0 2rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: .65rem;
    text-decoration: none;
    vertical-align: bottom;
}

.brand-logo {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.brand-logo img {
    display: block;
}

.brand-name {
    font-family: sans-serif !important;
    text-shadow: 0 0 20px var(--cyan-glow);
    font-weight: 700 !important;
    font-size: 1.1rem;
    color: #D3D3D3;
    text-align: end;
}

/* Action buttons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: transparent;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
    color: rgba(255,255,255,.7);
    font-size: 14px;
    text-decoration: none;
}

.nav-icon-btn:hover {
    background: transparent;
    color: #fff;
}

.nav-icon-btn--with-label {
    width: auto;
    min-width: 32px;
    gap: .25rem;
    padding: 0 .25rem;
}

.nav-icon-note {
    color: inherit;
    font-family: var(--font-mono);
    font-size: .58rem;
    line-height: 1;
}

.nav-logout-form {
    display: flex;
    margin: 0;
}

.nav-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,.15);
}

/* User info */
.nav-user {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    color: rgba(255,255,255,.65);
    font-family: var(--font-body);
}

.nav-user .avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 11px;
    color: #fff;
}
