/*
  CLUB THEME BLOCK: Raiders Weston (Weston ACT). The only file that sets this concept's look.
  Token names are the master's (design/raiders-club-template/theme.css); only the values change.
  Logos are NOT here: they are image settings (theme.logo_url, theme.footer_logo_url) rendered as <img>.

  Brand colours, read on 25 September 2026 from the live stylesheet
  https://www.raidersweston.com.au/site/site-customized-style.css (grep of its hex values):
    olive lime #a5b633 (6 uses, the brand accent), near-black #231f20 (body text). The navy primary is the logo's
    wordmark colour family, as on the other Raiders clubs' concepts.
  Live fonts: Lato, PT Sans and Poppins (the home page's Google Fonts link); Poppins for display, Lato for body here.

  Contrast (WCAG 2.2 AA), measured with the ratio formula for these values:
    white on --club-primary #002d6a .................... 13.26
    --club-accent-bright #a5b633 on --club-primary ..... 5.90
    --club-accent-bright on --club-primary-deep ........ 7.40
    white on --club-accent-strong #56650b .............. 6.44 (buttons, day labels, small accent text)
    --club-accent-strong on --club-surface-alt #f3f7fb .. 5.98
    --club-neutral #c9d8e6 on --club-primary ........... 9.12
    --club-ink-muted #4a5568 on --club-surface-alt ..... 6.99
    --club-ink-subtle-on-dark #94abc4 on --club-primary-deep ... 7.04
  --club-accent (the brand lime #a5b633) holds only 2.25 with white: decoration only, never white text on it.
  --club-accent-strong is the lime's hue darkened for white text and fills. The club to confirm palette and fonts.
  Fonts load here, so the club's whole look lives in this file: the one @import below, in the string form. It is the
  only URL a stylesheet may carry (fonts.googleapis.com); no image is ever referenced from CSS.
*/
@import "https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Lato:wght@400;700&display=swap";

:root {
  --club-primary: #002d6a;
  --club-primary-deep: #001d45;
  --club-primary-soft: #0a3f86;
  --club-accent: #a5b633;
  --club-accent-bright: #a5b633;
  --club-accent-strong: #56650b;
  --club-neutral: #c9d8e6;
  --club-neutral-light: #dde7f0;
  --club-surface: #ffffff;
  --club-surface-alt: #f3f7fb;
  --club-ink: #14213a;
  --club-ink-muted: #4a5568;
  --club-ink-subtle-on-dark: #94abc4;
  --club-on-accent: #ffffff;

  --club-font-display: 'Poppins', system-ui, sans-serif;
  --club-font-body: 'Lato', system-ui, sans-serif;

  --club-logo-height: 64px;
  --club-logo-height-small: 44px;
  --club-radius: 8px;
  --club-radius-lg: 16px;
}
