/* ====== FLOATING PILL NAVBAR ====== */
.custom-navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 8px 10px;
    width: 100%;
    max-width: 1000px;
}

/* Logo */
.logo-img {
    height: 38px;
    width: auto;
    transition: 0.3s ease;
}

/* Brand Text */
.brand-text {
    color: #1a1a2e;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Nav Link */
.navbar-nav .nav-link {
    color: #1a1a2e !important;
    margin-left: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: 0.3s ease;
    padding: 8px 18px !important;
    border-radius: 30px;
}

/* Hover */
.navbar-nav .nav-link:hover {
    color: #0d6efd !important;
    background: rgba(13, 110, 253, 0.08);
}

/* Active Menu */
.navbar-nav .nav-link.active {
    color: #0d6efd !important;
    background: rgba(13, 110, 253, 0.1);
}

/* Toggler Custom */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(26, 26, 46, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .navbar-wrapper {
        top: 15px !important;
        padding: 0 10px;
    }

    .custom-navbar {
        border-radius: 20px;
        padding: 10px 15px;
        background: rgba(255, 255, 255, 0.95);
    }

    .navbar-collapse {
        margin-top: 15px;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        margin-bottom: 5px;
        border-radius: 10px;
        text-align: center;
    }
}
