
.header {
    flex-shrink: 0;
    background: #222;
    color: #fff;
    padding: 15px 20px;
}

/* Inhalt im Header */
.header-inner {
    display: grid;
    grid-template-columns: 1fr auto auto; /* Links – Mitte – Rechts */
    align-items: center;
    column-gap: 40px;
}

/* Linke Spalte */
.header-left h1 {
    margin: 0;
}

.header-left p {
    color: #575757;
    margin: 5px 0 0 0;
}

/* Navigation in der Mitte */
.header-nav {
    display: flex;
    gap: 20px;
    justify-content: center; /* ZENTRIERT die Navigation */
}

.header-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

/* Logo rechts */
.header-logo {
    height: 60px;
    width: auto;
}

.lang-switch {
    position: relative;
    display: inline-block;
}

.lang-button {
    background: #f5f5f5;
    border: 1px solid #ccc;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
}

.lang-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;

    min-width: 150px;

    background: #fff;
    border: 1px solid #ccc;

    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 1000;
}

.lang-menu a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
}

.lang-menu a:hover {
    background: #f0f0f0;
}

.lang-switch:hover .lang-menu {
    display: block;
}