/* ============================================================
   COMPONENT: Header / Navigation (Desktop)
   ============================================================ */

header {
    background: linear-gradient(135deg, var(--color-primary-dark), #16385F);
    color: #fff;
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Logo */
.brand-logo.circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo.circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 18px;
    text-transform: uppercase;
    white-space: nowrap; /* NIE umbrechen */
}

.brand-subtitle {
    font-size: 12px;
    color: #D0E4FF;
}

nav {
    display: flex;
    gap: 16px;
    font-size: 14px;
}

nav a {
    padding: 6px 10px;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* Hamburger-Button auf Desktop verstecken */
.menu-toggle {
    display: none;
}