/* ============================================
   LOGO SIGNATURE Component
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Italianno&display=swap');

.logo-component {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-component:hover {
    transform: scale(1.02);
}

.logo-icon-box {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2896cd 0%, #00cec9 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.35rem;
    box-shadow: 0 4px 15px rgba(40, 150, 205, 0.3);
}

.logo-text-wrapper {
    font-family: var(--font-primary, 'Outfit', sans-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.5px;
    display: flex;
    align-items: baseline;
}

.logo-sig {
    font-family: 'Italianno', cursive;
    font-size: 2.2rem;
    font-weight: 400;
    margin-right: 6px;
    color: var(--gray-900);
    line-height: 1;
}

.logo-accent {
    background: var(--accent-gradient, linear-gradient(135deg, #2896cd 0%, #6C5CE7 100%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.4rem;
}

/* Footer Contrast Fix */
.footer-brand .logo-sig {
    color: var(--white);
}

.footer-brand .logo-text-wrapper {
    color: var(--white);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .logo-text-wrapper {
        font-size: 1.2rem;
    }

    .logo-sig {
        font-size: 1.8rem;
    }

    .logo-accent {
        font-size: 1.2rem;
    }

    .logo-icon-box {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}