/* L7CORE Logo PNG */
.l7core-logo-img {
    display: block;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Logo container styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: 0;
}

.logo-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* Login page logo */
.login-logo .l7core-logo-img {
    height: 80px;
    margin: 0 auto;
}

.login-logo .logo-title {
    font-size: 26px;
    text-align: center;
    color: var(--text-primary);
    margin-top: 16px;
}

.login-logo .logo-subtitle {
    font-size: 12px;
    text-align: center;
    margin-top: 6px;
}

/* Header logo (navigation) */
header .l7core-logo-img {
    height: 48px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .login-logo .l7core-logo-img {
        height: 60px;
    }
    
    header .l7core-logo-img {
        height: 28px;
    }
}

/* Hover effect */
.l7core-logo-img:hover {
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

/* Legacy text logo support (fallback) */
.l7core-logo {
    display: inline-flex;
    align-items: center;
    font-family: 'Google Sans', 'Inter', 'Roboto', sans-serif;
    font-weight: 700;
    color: #1f1f1f;
    letter-spacing: -0.04em;
}

.l7core-logo__mark {
    font-weight: 700;
}

.l7core-logo__seven {
    font-weight: 700;
    margin-left: -0.06em;
}

.l7core-logo__text {
    font-weight: 600;
    margin-left: 0.08em;
}

.l7core-logo__dot {
    margin-left: 0.04em;
    font-weight: 800;
}
