/* static/css/header.css */

.site-header {
    background-color: #181818;
    padding: 10px 0;
    border-bottom: 2px solid #ff8128;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 25px;
    box-sizing: border-box;
}

.header-left-panel {
    display: flex;
    align-items: center;
}

.logo-link-full {
    text-decoration: none;
    margin-right: 30px;
    display: flex;
    align-items: center;
}

.full-logo-svg { /* SVG логотип RBRP Full Name */
    height: 25px;
    width: auto;
}

.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.main-navigation li {
    margin-right: 20px;
}
.main-navigation li:last-child {
    margin-right: 0;
}

.main-navigation a {
    font-family: 'Conthrax', sans-serif;
    font-weight: 600;
    text-decoration: none;
    color: #e0e0e0;
    font-size: 1.1em;
    padding: 6px 16px;
    border-radius: 4px;
    transition: color 0.2s ease, background-color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-navigation a:hover {
    color: #101010;
    background-color: #ff8128;
}
.main-navigation a.active {
    color: #101010;
    background-color: #ff8128;
}

.header-right-panel .nav-discord-link {
    font-family: 'Conthrax', sans-serif;
    font-weight: 600;
    background-color: #5865F2;
    color: #fff !important;
    padding: 6px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.header-right-panel .nav-discord-link:hover {
    background-color: #4752C4;
}