:root {
  --k-brand-primary: #ff0000;
  --k-brand-secondary: #3d3d3d;
}

/* Text-logo fallback when performer hasn't uploaded an image logo.
   Cap to ~14ch so longer names wrap to a second line instead of pushing the nav. */
.logowhite .brand-logo-text,
.logoblack .brand-logo-text {
  display: inline-block;
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  letter-spacing: 0.01em;
  vertical-align: middle;
  max-width: 14ch;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
/* Solid black drop shadow applied to every text-logo placement so the wordmark
   reads against any background (hero, body wallpaper, primary color, etc.). */
.brand-logo-text {
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.85),
    0 1px 2px rgba(0, 0, 0, 0.9),
    1px 1px 0 rgba(0, 0, 0, 0.6);
}
.logowhite .brand-logo-text { color: #fff; }
.logoblack .brand-logo-text { color: #fff; }
.fly-header-site.sticky-menu .logoblack .brand-logo-text { color: #fff; }
.fly-footer-logo .brand-logo-text {
  display: inline-block;
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  color: #fff;
  max-width: 14ch;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
#preloader .brand-logo-text {
  display: inline-block;
  color: #fff;
  text-align: center;
  max-width: 14ch;
  line-height: 1.2;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* When the brand mark is text (no logo image), nudge the side nav clusters
   down so they sit beside the text without colliding with the wordmark. */
.brand-logo-is-text .fly-header-site .fly-nav-left,
.brand-logo-is-text .fly-header-site .fly-nav-right {
  position: relative;
  top: 10px;
}
