/* Menüleiste */
.menu-bar {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(30, 41, 59, 0.6);
    padding: 12px 40px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(46, 58, 82, 0.4);
    height: 100px;
}

/* Logo */
.logo {
    height: 130px;
    width: auto;
    object-fit: contain;
    transition: none;
    margin-top: -10px;
    margin: 0 -40px;
}

/* Allgemeine Link-Stile */
.menu-bar a {
    text-decoration: none;
    font-size: 1.1em;
    color: #e1e1e1;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 400;
    transition: all 0.3s ease;
    text-transform: capitalize;
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Hover-Effekte für alle außer das Logo */
.menu-bar a:not(.logo-link):hover {
    background: #38bdf8;
    color: #0f172a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-bar a:not(.logo-link)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 2px;
    width: 0%;
    background: #38bdf8;
    transition: width 0.3s ease;
}

.menu-bar a:not(.logo-link):hover::after {
    width: 100%;
}

/* Logo-Link – ohne Hover-Stile */
.logo-link {
    padding: 0;
    border-radius: 0;
    transition: none;
}

.logo-link:hover {
    background: none;
    color: inherit;
    box-shadow: none;
}

.logo-link::after {
    display: none;
}
