/* ===================================================================
   Cross Country Ratings — brand palette & wordmark styles
   =================================================================== */

:root {
  --brand-navy: #0B2E4F;   /* primary brand color: icon, header bg, links-on-light */
  --brand-amber: #F2A93B;  /* accent: "Ratings", CTAs, #1 rank highlight */
  --brand-slate: #4A5568;  /* "Cross Country", secondary text */
}

.site-wordmark {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.25rem;      /* tune per breakpoint, see media query below */
  line-height: 1;
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;   /* in case the whole mark is wrapped in <a> */
}

.site-wordmark .wordmark-primary {
  color: var(--brand-slate);
}

.site-wordmark .wordmark-accent {
  color: var(--brand-amber);
  font-style: italic;
  margin-left: 0.12em;   /* small, intentional gap — not a full word space */
}

/* Compact/mobile: shrink instead of wrapping to a second line */
@media (max-width: 640px) {
  .site-wordmark {
    font-size: 1.4rem;
  }
}

/* Dark backgrounds (navbar, hero banners, footer) */
.site-wordmark--on-dark .wordmark-primary {
  color: #FFFFFF;
}
.site-wordmark--on-dark .wordmark-accent {
  color: var(--brand-amber);
}

/* Navbar placement: compact wordmark */
.navbar-brand .site-wordmark {
  font-size: 1.3rem;
  vertical-align: middle;
}

@media (max-width: 640px) {
  .navbar-brand .site-wordmark {
    font-size: 1.05rem;
  }
}

/* Home page hero: larger wordmark treatment */
.hero-wordmark {
  font-size: 3rem;
}

@media (max-width: 640px) {
  .hero-wordmark {
    font-size: 1.75rem;
  }
}
