 ═══════════════════════════════════════════════════════════
   site.css — Shared styles for ALL pages (loaded via _BlankLayout)
   ═══════════════════════════════════════════════════════════ 

 ── CSS Variables ── 
:root {
    --brand:     #1a1a2e;
    --accent:    #e94560;
    --accent2:   #0f3460;
    --gold:      #f5a623;
    --surface:   #ffffff;
    --surface2:  #f7f8fc;
    --border:    rgba(26,26,46,0.08);
    --text:      #1a1a2e;
    --muted:     #6b7080;
    --radius:    16px;
    --radius-sm: 10px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Instrument Sans', sans-serif;
    background: var(--surface2);
    min-height: 100vh;
}

 ══════════════════════════════════════════════════
   TOPBAR
══════════════════════════════════════════════════ 
.hrm-topbar {
    background: var(--brand);
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    gap: 1rem;
}

.hrm-logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
    white-space: nowrap;
}

.hrm-logo span {
    color: #2563eb;
    font-weight: 700;
}

.hrm-logo-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.hrm-nav {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.hrm-nav a {
    color: rgba(255,255,255,.55);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 500;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.hrm-nav a:hover { color: #fff; }
.hrm-nav a.active { color: var(--gold); }
.hrm-nav a i { font-size: .88rem; }

.hrm-topbar-right {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
}

.hrm-topbar-right > span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
}

.hrm-icon-btn {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,.08);
    border: none;
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    cursor: pointer;
    position: relative;
    transition: background .15s;
    flex-shrink: 0;
    text-decoration: none;
}

.hrm-icon-btn:hover {
    background: rgba(255,255,255,.15);
    color: #fff;
}

.hrm-notif-dot {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    border: 2px solid var(--brand);
}

.hrm-avatar-btn {
    width: 34px;
    height: 34px;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
    cursor: pointer;
    flex-shrink: 0;
}

 ══════════════════════════════════════════════════
   HAMBURGER — hidden on desktop, shown on mobile
══════════════════════════════════════════════════ 
.hrm-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
}

.hrm-hamburger .bar {
    display: block;
    width: 18px;
    height: 2px;
    background: rgba(255,255,255,0.85);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease;
}

 Animate into ✕ when open 
.hrm-hamburger.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hrm-hamburger.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hrm-hamburger.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

 ══════════════════════════════════════════════════
   MOBILE NAV DRAWER
══════════════════════════════════════════════════ 
.hrm-mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 62px;
    left: 0;
    width: 260px;
    height: calc(100dvh - 62px);
    background: var(--brand);
    z-index: 998;
    padding: 0.75rem 0.6rem;
    gap: 2px;
    box-shadow: 6px 0 32px rgba(0,0,0,0.3);
    overflow-y: auto;
     Hidden by default 
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease, visibility 0.3s ease;
}

.hrm-mobile-nav.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.hrm-mobile-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.18s, color 0.18s;
}

.hrm-mobile-nav a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.hrm-mobile-nav a.active { background: rgba(233,69,96,0.15); color: #e94560; }
.hrm-mobile-nav a i { font-size: 1rem; width: 18px; text-align: center; flex-shrink: 0; }

 ══════════════════════════════════════════════════
   OVERLAY (behind drawer)
══════════════════════════════════════════════════ 
.hrm-mobile-overlay {
    display: none;
    position: fixed;
    inset: 62px 0 0 0;
    background: rgba(0,0,0,0.5);
    z-index: 997;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.hrm-mobile-overlay.open { display: block; }

 ══════════════════════════════════════════════════
   TOPBAR RESPONSIVE
══════════════════════════════════════════════════ 
@media (max-width: 1024px) {
    .hrm-topbar { padding: 0 1.25rem; }
    .hrm-nav { gap: 1rem; }
    .hrm-nav a { font-size: 0.78rem; }
}

@media (max-width: 768px) {
    .hrm-topbar { padding: 0 1rem; }
    .hrm-nav { display: none; }
    .hrm-hamburger { display: flex; }
    .hrm-topbar-right > span { display: none; }
}

@media (max-width: 480px) {
    .hrm-icon-btn { width: 32px; height: 32px; font-size: 0.88rem; }
    .hrm-avatar-btn { width: 32px; height: 32px; font-size: 0.65rem; }
    .hrm-topbar-right { gap: 0.3rem; }
}
