nav.navigation {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 8px;
    margin: 0 auto;
    position: fixed;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: 100%;
    max-width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    box-shadow: 0 4px 15px rgba(231, 214, 194, 0.11);
}

nav.navigation a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    padding: 8px 16px;
    background: transparent;
    border-radius: 999px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

nav.navigation a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;

    transition: left 0.3s ease;
    z-index: -1;
}

nav.navigation a:hover::before {
    left: 0;
}

nav.navigation a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 182, 144, 0.4);
}

nav.navigation a.active {
    background: var(--gradient-primary);
    box-shadow: 0 6px 20px rgba(212, 182, 144, 0.5);
    transform: translateY(-1px);
    color: var(--bg-primary);
}

nav.navigation a.active::before {
    background: linear-gradient(135deg, #B8956F 0%, #A6835A 100%);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    nav.navigation {
        gap: 1rem;
        justify-content: center;
    }

    nav.navigation a {
        font-size: 14px;
        padding: 4px;
    }
}

@media (max-width: 600px) {
    nav.navigation {
        gap: 0.8rem;
    }

    nav.navigation a {
        /*padding: ;*/
    }
}

@media (max-width: 480px) {
    nav.navigation {
        gap: 0;
        border-radius: 30px 30px 4px 4px;
        /*padding-bottom: 0;*/
        left: 0;
        right: 0;
        width: 100%;
        margin: 0 auto;
        bottom: 0;
        top: unset;
        transform: unset;
    }

    nav.navigation a {
        padding: 0.5rem 0.4rem;
    }
}