/* =============================================================
   AethCore — nav.css
   Top header navigation bar.
   ============================================================= */

#header {
    background: linear-gradient(180deg, #232323 0%, #111 100%);
    border-bottom: 3px solid #c85000;
}

#header-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    height: 46px;
}

#logo {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    margin-right: 28px;
    flex-shrink: 0;
}

#logo span {
    color: #c85000;
}

#logo:hover {
    text-decoration: none;
}

#nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

#nav-links li a {
    display: block;
    color: #bbb;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 12px;
    line-height: 46px;
    text-decoration: none;
}

#nav-links li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    text-decoration: none;
}

#nav-auth {
    list-style: none;
    display: flex;
    align-items: center;
    margin-left: auto;
}

#nav-auth li a {
    display: block;
    color: #888;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 10px;
    line-height: 46px;
    text-decoration: none;
}

#nav-auth li a:hover {
    color: #ccc;
    text-decoration: none;
}

.nav-notifications {
    position: relative;
    font-size: 14px !important;
    text-transform: none !important;
}

.nav-link-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    font-family: inherit;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 10px;
    line-height: 46px;
}

.nav-link-btn:hover {
    color: #ccc;
}

.notif-badge {
    position: absolute;
    top: 10px;
    right: 2px;
    background: #c85000;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    line-height: 1;
    min-width: 14px;
    height: 14px;
    padding: 1px 3px;
    border-radius: 7px;
    text-align: center;
}

/* --- Hamburger menu (hidden on desktop) --- */
#nav-hamburger {
    display: none;
}
