/* =========================
   NAVBAR
========================= */

.navbar {
    position: fixed;
    overflow: hidden;
    top: 0;
    width: 100%;
    padding: 20px 0;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);


    z-index: 1000;
}

.navbar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        transparent,
        #6D609D,
        #b8aaff,
        #6D609D,
        transparent
    );

    background-size: 200% 100%;
    animation: navGlow 6s linear infinite;
}

@keyframes navGlow {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.nav-logo {
    position: absolute;
    left: 30px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: hsl(0, 0%, 100%);
    font-size: 16px;   /* größer */
    font-weight: 600;  /* wichtiger */
    letter-spacing: 2px;
}



.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #b8aaff;
    font-size: 18px;
    letter-spacing: 2px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ffffff;
    text-shadow: 0 0 15px #6D609D;
}