/* ============================================= */
/* LOGO STYLES - Add to style.css                */
/* ============================================= */

/* Logo Container */
.logo-container {
    padding: 0 20px 20px;
    border-bottom: 1px solid var(--border-glass);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.company-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-tag {
    font-size: 12px;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.tagline {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 4px;
    letter-spacing: 0.5px;
    font-weight: 300;
    padding-left: 4px;
}

/* ============================================= */
/* LOGO STYLES END                               */
/* ============================================= */