/* Logo Component - Reusable styling for ReBatch logo with blinking cursor */

.logo {
    font-family: 'Space Mono', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo::before {
    content: '>';
    color: var(--accent-gold-text);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.logo img {
    height: 24px;
    filter: brightness(1.1);
}

.logo span {
    color: var(--accent-gold-text);
}

/* Footer-specific logo styling - maintains flex centering */
.footer-brand .logo {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}
