/* --- NAVIGATION --- */

#site-navigation {
    position: fixed; top: 0; width: 100%; height: 80px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%; z-index: 1000;
    background: rgba(18, 19, 26, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}
#site-navigation .logo-box { height: 40px; }
#site-navigation .logo-box img { height: 100%; }

.nav-redirects a {
    color: var(--text-main); text-decoration: none; margin-left: 30px;
    font-size: 13px; font-weight: 600; text-transform: uppercase;
    transition: 0.3s; opacity: 0.8;
}
.nav-redirects a:hover { opacity: 1; color: var(--accent-red); }

