/*
  CLUB THEME BLOCK: Raiders Gungahlin (Gungahlin 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.raidersgungahlin.com.au/site/site-customized-style.css (grep of its hex values):
    lime #b4fd00 (6 uses: highlighted backgrounds, active borders, links), navy #002d6a (2 uses), near-black text.
  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 #b4fd00 on --club-primary ..... 10.73
    --club-accent-bright on --club-primary-deep ........ 13.47
    white on --club-accent-strong #2e6b00 .............. 6.52 (buttons, day labels, small accent text)
    --club-accent-strong on --club-surface-alt #f3f7fb .. 6.06
    --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 #b4fd00) holds only 1.24 with white: decoration only, and text on it is navy (10.73).
  --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: #b4fd00;
  --club-accent-bright: #b4fd00;
  --club-accent-strong: #2e6b00;
  --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;
}
