/* ----------------------------------------------------------------
	CSS for: Tour Guides Association of Ghana (TORGAG)
	Created: 20-Aug-2025 (scaffold cloned from ATR)
	Last update: 2026-09-21 - Palette taken from TORGAG's own logo (circular badge: red outer
	ring, gold ring, green disc, black star, gold torch, gold "WE LEAD" banner), pixel-sampled
	from the supplied 400x300 logo, then nudged only where needed for readable contrast. The
	previous file still carried ATR's teal/orange palette and header from the scaffold copy.

		--brand-primary:    #C71922  (red)          -- the outer ring, the logo's dominant
		                                              colour. Sampled #c71922 as-is.
		--accent-primary:   #FBC51A  (gold)         -- the middle ring/torch/banner. Sampled
		                                              #fbc51a as-is. Reads well with the
		                                              shared .btn-p pairing (dark text on
		                                              the accent), no per-client override
		                                              needed here, unlike EAGH's blue.
		--accent-secondary: #2B8C13  (green)        -- the disc. Sampled #27970b, deepened
		                                              slightly: it's used both as a hover/
		                                              button background with dark text and as
		                                              small label text on white, and the
		                                              raw logo green is too light for the
		                                              second use.
		--brand-dark:       #111111  (near-black)   -- the star/outlines, body text and
		                                              dark bands.

	Contrast (WCAG, ratio): red on white 5.85, white on red 5.85, dark on gold 11.78,
	dark on green 4.37, green on white 4.32. The green pair sits just under 4.5 on both
	sides -- inherent to a mid-tone used in both directions; no single colour clears 4.5
	against both white and near-black text. Red is not used as text on dark surfaces in
	the shared CSS (3.23 there), only gold/white are.
-----------------------------------------------------------------*/

:root {
	--brand-dark: #111111;
	--brand-primary: #c71922;
	--accent-primary: #fbc51a;
	--accent-secondary: #2b8c13;
}

::selection {
	background: var(--accent-primary);
	color: var(--brand-dark);
}

/* 2026-08-16 - Claude - Removed the "CONTENT FROM MAIN SYSTEM BLOG" block (.ln-type-*,
   .float-left/.float-right) -- confirmed obsolete for the new SatSite system, it styled
   admin-entered rich-text content from the old content-page system the v4 rebuild no longer
   uses. */
