/* ── Nav Logo: image LEFT, text RIGHT, inline ── */
.nav-logo {
    display: flex;
    flex-direction: row;        /* side by side */
    align-items: center;
    gap: 0.65rem;               /* space between logo and text */
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-img-wrap {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
    /* Smooth load */
    transition: opacity 0.2s ease;
}

/* Hide broken image icon if file missing */
.nav-logo-img[src=""] {
    display: none;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
}

.logo-play   { color: var(--white); }
.logo-ground { color: var(--accent); }

/* Footer logo — also inline */
.footer-brand-inner {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
