.logo {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.logo-text {
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem; /* Adjusted for better text spacing */
    letter-spacing: -0.02em; /* Slightly tighter letter spacing */
}

.logo-first {
    color: var(--white);
    transition: color 0.3s ease;
    margin-right: -0.05rem; /* Micro-adjustment for text spacing */
}

.navbar.scrolled .logo-first {
    color: #2D2D5F;
}

.logo-second {
    color: var(--bprimary-color);
    letter-spacing: -0.01em; /* Slightly tighter for "Pack" */
}

.logo-image {
    width: 65px; /* Slightly reduced for better proportion */
    height: 65px;
    background: none;
    border-radius: 0px;
    margin-right: 0.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text-wrapper {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1.5rem;
        gap: 0.2rem;
    }

    .logo-image {
        width: 45px;
        height: 45px;
        margin-right: 0.05rem;
    }
    
    .logo-text-wrapper {
        font-size: 1.5rem;
    }
    
    .logo-image {
        height: 38px;
        margin-right: 0.05rem;
    }
}
