/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

/* ============================================================
   COLOR SYSTEM — Calvary Lutheran Church
   Override Blocksy's generated palette CSS variables to ensure
   correct contrast ratios throughout the site.

   Palette reference:
     color-1  #2f6b39  dark green   — primary accent (links, nav active, buttons)
     color-2  #66cc88  light green  — secondary accent (button bg on dark sections)
     color-3  #5c4a3a  warm brown   — body text on light backgrounds (7.3:1 on cream)
     color-4  #2C1E18  dark brown   — headings and dark section backgrounds (14:1 on cream)
     color-5  #F2EFE7  cream        — site/page background
     color-6  #f5f4f2  light gray   — card / alternate section background
     color-7  #ffffff  white        — text on dark backgrounds
     color-8  #ffffff  white        — text on dark backgrounds
   ============================================================ */

:root {
	--theme-palette-color-1: #2f6b39;
	--theme-palette-color-2: #66cc88;
	--theme-palette-color-3: #5c4a3a;
	--theme-palette-color-4: #2C1E18;
	--theme-palette-color-5: #F2EFE7;
	--theme-palette-color-6: #f5f4f2;
	--theme-palette-color-7: #ffffff;
	--theme-palette-color-8: #ffffff;

	/* Blocksy maps these to body/heading text */
	--theme-text-color: #5c4a3a;
	--theme-headings-color: #2C1E18;
	--theme-link-initial-color: #2f6b39;
	--theme-link-hover-color: #2f6b39;
}

/* ============================================================
   NAVIGATION — bold font weight
   ============================================================ */

.ct-menu > li > a,
.ct-menu > li > span,
.ct-header-nav .menu-item > a {
	font-weight: 700 !important;
}