/* ==========================================================================
   Kingmichaelbeats LLC — brand overrides
   Loaded after page.css. Everything else is inherited from the base theme.
   ========================================================================== */

/* --- Wordmark -------------------------------------------------------------
   The nav logo is live text rather than an image so it picks up the site's
   own typeface. The logo slot was sized for a short mark, so it needs a
   little more room for a long name. */
.navbar-logo {
  width: auto;
  min-width: 190px;
}

.brand-wordmark {
  font-family: var(--_typography---primary-font-family), "Suisse Intl", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--primatives--terminal-black);
  white-space: nowrap;
  align-self: center;
}

.brand-wordmark em {
  font-style: normal;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .navbar-logo {
    min-width: 160px;
  }
  .brand-wordmark {
    font-size: .95rem;
  }
}

@media screen and (max-width: 479px) {
  .navbar-logo {
    min-width: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .brand-wordmark {
    font-size: .85rem;
  }
}

/* --- Hero "now playing" panel ---------------------------------------------
   The video fills the window body; the track details sit on top of it over a
   scrim so they stay readable whatever frame is showing. The text is real
   markup rather than baked into the artwork, so the song name is editable. */
.cloudflare-video-embed {
  position: relative;
  background-color: var(--primatives--terminal-black);
  overflow: hidden;
}

.np-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Anchored to the top: the animated "start distributing" CTA owns the bottom
   of this window, so text there would collide with it. */
.np-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.5rem 1.5rem 1.3rem;
  pointer-events: none;
  background: linear-gradient(to bottom,
              rgba(20, 2, 6, .88) 0%,
              rgba(20, 2, 6, .55) 38%,
              rgba(20, 2, 6, 0) 72%);
}

.np-overlay p {
  margin: 0;
}

.np-eyebrow {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: .72rem;
  letter-spacing: .16em;
  color: var(--primatives--neon-field-1);
  margin-bottom: .5rem;
}

.np-title {
  font-family: var(--_typography---primary-font-family), "Suisse Intl", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--primatives--pc-plastic-1);
  margin-bottom: .4rem;
}

.np-meta {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: .68rem;
  letter-spacing: .1em;
  color: var(--primatives--pc-plastic-4);
}

@media screen and (max-width: 767px) {
  .np-overlay {
    padding: 1rem 1.1rem;
  }
  .np-title {
    font-size: 1.15rem;
  }
  .np-eyebrow,
  .np-meta {
    font-size: .62rem;
  }
}

/* --- Platform strip -------------------------------------------------------
   Wordmarks are drawn at a wider aspect than the logos they replace, so cap
   the height to keep the row visually even. */
.static_logo-img {
  max-height: 2.2rem;
}
