/*
 PHP version 8.0~

 @license   Commercial
 @copyright Copyright (c) 2026 Ingo Koch
 @link      http://www.computer-freak24.de
 @version   v1.5 07.2026
 @author    Ingo Koch <koch.ingo@t-online.de>
 @lastEdit  05.07.2026
*//* 
    Created on : 05.07.2026, 05:51:57
    Author     : stixnroll
*/

.bo-header {
    position: relative;
    z-index: 1000;
    background: var(--bo-header);
    color: #fff;
    box-shadow: var(--bo-shadow);
}

.bo-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 32px;
    transition: all .25s ease;
}

.bo-brand {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
}

.bo-brand:hover {
    color: #fff;
    text-decoration: none;
}

.bo-header-nav {
    position: sticky;
    top: 0;
    background: var(--bo-header-soft);
    border-top: 1px solid rgba(255,255,255,.08);
}

.bo-header-nav nav {
    display: flex;
    gap: 4px;
    padding: 0 32px;
}

.bo-header-nav a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #dbe4f0;
    text-decoration: none;
    padding: 13px 16px;
}

.bo-header-nav a:hover {
    background: rgba(255,255,255,.08);
    color: #fff;
    text-decoration: none;
}

.bo-header.compact .bo-header-top {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
}

@media (max-width: 768px) {
    .bo-header-top {
        padding: 14px 18px;
    }

    .bo-header-nav nav {
        overflow-x: auto;
        padding: 0 18px;
    }
}