/**
 * Dashboard VoiceBot ILUMNO v4.0
 * Footer CSS
 */

.footer {
    background: var(--surface-card);
    border-top: 1px solid var(--border-color);
    padding: var(--space-sm) var(--space-lg);
    margin-top: auto;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.footer-logo {
    height: 32px;
    width: auto;
}

/* Logo switching for light/dark mode */
.footer-brand .logo-dark {
    display: none;
}

.dark-mode .footer-brand .logo-light {
    display: none;
}

.dark-mode .footer-brand .logo-dark {
    display: block;
}

.footer-text {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.footer-text strong {
    color: var(--text-primary);
}

.footer-status {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.footer-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-success);
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand {
        flex-direction: column;
    }
    
    .footer-logo {
        height: 50px !important;
    }
}