
.site-header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(10, 12, 15, 0.95);
    backdrop-filter: blur(5px);
    position: sticky;
    top: 0;
    z-index: 100;
}

    .site-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }


/* --- ЛОГОТИП, НАЗВАНИЕ ПРОЕКТА И СЛОГАН ------------------------------------------------------ */

.site-header-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .site-header-logo a {
        display: flex;
        align-items: center;
        gap: 15px;
        text-decoration: none;
        outline: none;
        border: none;
    }

        .site-header-logo a:focus, .site-header-logo a:active, .site-header-logo a:visited {
            outline: none;
            border: none;
        }

    .site-header-logo .logo-icon {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .site-header-logo .logo-icon img {
            object-fit: contain;
            width: 48px;
            height: 48px;
            border-radius: 12px;
        }

    .site-header-logo .logo-text {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

        .site-header-logo .logo-text h1 {
            font-size: 1.8rem;
            background: linear-gradient(90deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 0 !important;
        }

        .site-header-logo .logo-text p {
            font-size: 0.9rem;
            color: #cbd5e1;
            margin-top: -2px;
        }

/* --- ДЕСКТОПНОЕ МЕНЮ ------------------------------------------------------------------------- */

.site-header .nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

    .site-header .nav-links a {
        color: var(--text-muted);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }

        .site-header .nav-links a:hover {
            color: var(--accent);
        }

/* --- ДЕСКТОПНОЕ МЕНЮ ------------------------------------------------------------------------- */
.header-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.header-nav a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 1.1rem;
}

    .header-nav a:hover {
        color: #fbbf24;
    }

@media (max-width: 768px) {
    .header-nav ul {
        display: none;
    }
}