/*
Theme Name:   GeneratePress Child — Bollsen EPG
Theme URI:    https://uk-consumer-review-company.com
Description:  Child theme for the Bollsen EPG review sites (GeneratePress + the shared .lp-* component library)
Author:       Bollsen
Template:     generatepress
Version:      1.0.0
*/

/* ── Brand colours — carried from the Flatsome palette (theme_mods_flatsome-child) ──
   The EPG sites were ALREADY orange + black; this is the existing identity applied
   consistently, not a new scheme.
     Flatsome color_primary   #000514  near-black → --contrast (text/headings)
     Flatsome color_secondary #ff9900  orange     → --epg-orange (CTAs / accents only)
     Flatsome color_alert     #cf132b             → --epg-alert (semantic only)

   NOTE on --accent: GeneratePress uses it for links. Orange #ff9900 on white is
   ~2.1:1 contrast and fails WCAG AA, so links inherit the ink colour and orange is
   reserved for CTAs — the same rule the Top-5 template follows (one loud colour,
   spent in one place).

   Flatsome carried TWO ambers (#ff9900 and #f8a601 for link-hover) plus a stray
   link blue (#0335ec). Consolidated to a single orange here deliberately. */
:root {
	--contrast: #000514;      /* body text + headings (GP default #222222) */
	--accent: #000514;        /* links — NOT orange, see note above */
	--base-2: #ffffff;        /* body background (GP default #f7f8f9) */

	--epg-ink: #000514;
	--epg-orange: #ff9900;
	--epg-alert: #cf132b;
}

/* ── Typography ────────────────────────────────────────────────────────────────
   Flatsome declared Lato, but with `disable_fonts: true` and no self-hosted files
   the font NEVER actually loaded — the live site renders in a fallback stack
   (verified 2026-07-24: 0 requests to fonts.googleapis.com, no local woff/woff2).
   So nothing is lost by choosing type here. A system stack is used deliberately:
   no third-party request, no consent question, no render-blocking font. If a
   webfont is ever wanted, SELF-HOST it — do not copy the LP's Google Fonts
   pattern onto the EPG sites. */
body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto,
	             "Helvetica Neue", Arial, sans-serif;
}
