/* === Navbar (Top) === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: #000000;           /* schwarz */
    border-bottom: 1px solid #111; /* dezente Linie */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 24px;
    z-index: 1000;

    font-family: 'Raleway', sans-serif; /* gleiche Schrift wie Rest */
    font-size: 1.1em;                   /* gleiche Grundgröße */
    color: #ffffff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 12px;
    transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
}

.nav-link:hover {
    background: #111111;
    color: #ffffff;
}

/* aktiver Tab */
.nav-link.is-active,
.nav-link[aria-current="page"] {
    background: #1a1a1a;
    color: #ffffff;
}

/* Mobile */
@media (max-width: 767px) {
    .navbar {
        height: 56px;
        padding: 0 16px;
        font-size: 1em; /* etwas kleiner auf Mobile */
    }
    .nav-links {
        gap: 12px;
    }
    .nav-link {
        padding: 8px 10px;
    }
}

/* === Footer (Bottom) === */
.footer {
    text-align: center;
    margin: 50px auto 0px;
    font-weight: 400;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000000;
    color: #ffffff;
    font-family: 'Raleway', sans-serif; /* gleiches Schriftbild */
}

.links a:link,
.links a:visited,
.links a:active {
    padding: 5px;
    color: #bbbbbb;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.links a:hover {
    color: #375fc3;
}
