
.floating-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(107, 115, 78, 0.95);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    padding: 18px 20px;
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.35s ease;
}

.floating-navbar.show {
    transform: translateY(0);
}

.nav-brand {
    display: none;
}

.menu-toggle {
    display: none;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: var(--egg-white);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .floating-navbar {
        justify-content: flex-end;
        padding: 14px 18px;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        border: none;
        flex-wrap: wrap;
    }

    .nav-brand {
        display: none;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: rgba(107, 115, 78, 0.95);
        border: none;
        padding: 10px;
        border-radius: 10px;
        cursor: pointer;
    }

    .menu-toggle span {
        width: 24px;
        height: 2px;
        background: var(--egg-white);
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        margin-top: 12px;
        padding: 18px;
        border-radius: 14px;
        background: rgba(107, 115, 78, 0.95);
        backdrop-filter: blur(8px);
        flex-direction: column;
        gap: 14px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        color: var(--egg-white);
        text-decoration: none;
        font-size: 0.95rem;
        padding: 4px 0;
    }
}