/*
Theme Name: King County Democrats
Theme URI: https://www.kcdems.org/
Description: Child theme of Kadence for the King County Democrats website redesign. Built by North Bend Digital.
Author: North Bend Digital
Author URI: https://northbend.digital/
Template: kadence
Version: 0.1.0
Requires at least: 6.3
Requires PHP: 7.4
Text Domain: kcdems
*/

/* -------------------------------------------------------------------------
   Brand tokens (single source of truth — mirrors mockup/homepage-mockup-v2.html)
   No red in the palette. 4px radius everywhere. Arimo via Google Fonts.
   ------------------------------------------------------------------------- */
:root {
  --blue-primary: #0044CC;
  --blue-dark: #003399;
  --blue-light: #E8EEFF;
  --text-darkest: #1A1A1A;
  --text-strong: #2D3748;
  --text-medium: #4A5568;
  --text-subtle: #666666;
  --bg-subtle: #EEF2F7;
  --border: #E0E0E0;
  --radius: 4px;
  --font-sans: 'Arimo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Homepage and component styles are loaded from assets/css/home.css (enqueued
   only on the front page). Keep this file lean — it is the theme stylesheet of
   record but most styling lives in the scoped asset files. */

/* -------------------------------------------------------------------------
   Header logo — KCD_logo.png baked into the theme (no Customizer/media library).
   Replaces Kadence's site-title text with the logo image (text kept for a11y/SEO).
   Logo is 640x158 (~4:1); shown ~48px tall.
   ------------------------------------------------------------------------- */
.site-branding .site-title {
	display: block;
	width: 200px;
	max-width: 58vw;
	height: 48px;
	margin: 0;
	background: url('assets/img/KCD_logo.png') left center / contain no-repeat;
	text-indent: -9999px;
	overflow: hidden;
	white-space: nowrap;
}
@media (max-width: 768px) {
	.site-branding .site-title { width: 170px; height: 42px; }
}
