/**
 * header-brand.css - Top-left OGZPRIME wordmark + tagline.
 *
 * v3 Enhancement: Swaps the CSS gradient text wordmark for the real
 * OGZaddy cowboy-hat logo image. Place ogz-logo-white.png at
 * /assets/logos/ogz-logo-white.png on the production server.
 *
 * Targets .header .logo (monolith header) - the v2 HeaderStrip module
 * uses .hs-logo instead (styled in header-strip.css).
 */

.header .logo {
    /* Real logo image replaces gradient text wordmark */
    display: block;
    width: 180px;
    height: 48px;
    background-image: url('/assets/logos/ogz-logo-white.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    background-clip: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: transparent;
    font-size: 0 !important;
    letter-spacing: 0 !important;
    line-height: 1;
    filter: drop-shadow(0 0 10px rgba(179, 21, 18, 0.50));
}

/* Hide old diamond - logo image includes the emblem */
.header .logo::before {
    display: none !important;
}

.header .tagline {
    color: #888;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.8px;
    margin-top: 4px;
    text-shadow: 0 0 6px rgba(220, 38, 38, 0.18);
}

@media (prefers-reduced-motion: reduce) {
    .header .logo {
        filter: drop-shadow(0 0 10px rgba(179, 21, 18, 0.35));
    }
}
