.kgv-navbar{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    z-index:9999;

    background:
            rgba(36,92,54,.92);

    backdrop-filter:blur(10px);

    transition:var(--transition);
}

.kgv-navbar .container{

    display:flex;
    justify-content:space-between;
    align-items:center;

    height:80px;
}

.navbar-brand{

    font-size:1.6rem;
    font-weight:700;

    color:white;
    text-decoration:none;
}

.navbar {
    z-index: 1000;
}

.navbar-nav{

    display:flex;
    gap:30px;

    list-style:none;
}

.navbar-nav a{

    color:white;
    text-decoration:none;

    font-weight:500;

    transition:var(--transition);
}

.navbar-nav a:hover{
    color:var(--kgv-gold);
}
/* Kleines Logo links im Navigationsmenü */

.nav-small-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-right: 22px;

    text-decoration: none;
    flex-shrink: 0;
}

.nav-small-logo img {
    width: 54px;
    height: 54px;

    object-fit: contain;

    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);

    padding: 5px;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
    .nav-small-logo {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .nav-small-logo img {
        width: 48px;
        height: 48px;
    }
}

/* Kleines Logo links in der Navigation */

.nav-small-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-right: 18px;
}

.nav-small-logo img {
    width: 54px;
    height: 54px;
    object-fit: contain;

    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    padding: 5px;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
    .nav-small-logo img {
        width: 48px;
        height: 48px;
    }
}

/* Bootstrap-Toggler-Punkt entfernen */
.kgv-navbar .navbar-toggler {
    display: none !important;
}

/* Mobile Hamburger-Menü */
.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 10px;
    background: #245c36;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    z-index: 10001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: #ffffff;
    border-radius: 999px;
}

.mobile-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 900px) {
    header nav,
    nav,
    .navbar,
    .main-nav,
    .site-nav {
        position: relative;
        display: flex;
        align-items: center;
    }

    .mobile-menu-toggle {
        display: inline-flex !important;
    }

    .mobile-menu-list {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 10000;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 12px;
        margin: 8px 0 0 0;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 0 0 18px 18px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
        list-style: none;
    }

    .mobile-menu-list.is-open {
        display: flex !important;
    }

    .mobile-menu-list li {
        width: 100%;
    }

    .mobile-menu-list a {
        display: block;
        width: 100%;
        padding: 12px 14px;
        color: #24402c !important;
        text-decoration: none;
        font-weight: 700;
        border-radius: 10px;
    }

    .mobile-menu-list a:hover {
        background: rgba(36, 92, 54, 0.12);
    }
}