/* UNIVERSAL LOGO COMPONENT - TYPOGRAPHIC BRAND MARK */

.header__logo,
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    flex-shrink: 0;
    opacity: 1;
    visibility: visible;
    font-family: var(--font-heading, "Space Grotesk", sans-serif);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-text-primary, #FAF8F5);
    transition: all 0.3s ease;
}

/* The Animated Cyan Dot */
.logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--neon-blue, #00d2ff);
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.6);
    animation: cyan-pulse 2s infinite alternate;
    flex-shrink: 0;
}

@keyframes cyan-pulse {
    0% {
        box-shadow: 0 0 5px rgba(34, 211, 238, 0.4), 0 0 10px rgba(34, 211, 238, 0.2);
        opacity: 0.8;
    }

    100% {
        box-shadow: 0 0 15px rgba(34, 211, 238, 0.8), 0 0 25px rgba(34, 211, 238, 0.5);
        opacity: 1;
    }
}

.header__logo:hover .logo-dot {
    animation-duration: 0.5s;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(34, 211, 238, 1);
}