.nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
    padding: 10px 20px;

    background: rgba(142, 181, 255, 0.192);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-top: 0px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.nav-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center; /* Tilføjet for at centrere linksene vertikalt */
    color: #fff; /* Sørg for hvid tekst på links */
}

.nav-links a {
    color: #fff;
    font-weight: 300; /* Tilføjet for blødere font */
}

.burger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .burger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 83px;
        right: 30;
        background: rgba(255, 255, 255, 0.849);
        backdrop-filter: blur(10px);
        color: #000000;
        width: 320px;
        padding: 15px;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        transition: opacity 0.3s ease, transform 0.3s ease;
        opacity: 0;
        transform: translateY(-10px);
    }

    .nav-links.show {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links a {
        color: #000000;
        font-weight: 300; /* Tilføjet her også for konsistens */
        padding: 10px 0;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    background: transparent; /* transparent baggrund */
}

.logo-img {
    width: 300px;
    height: auto;
    max-height: 80px;
    background: transparent; /* gjort gennemsigtig */
}

.logo-text {
    font-size: 1.15rem;
    font-weight: 600;
}