/*
 * Brand Colors — Blue Ridge Cookery
 *
 * IMPORTANT: The primary place to set these is Kadence's own
 * Customizer → Global Palette panel. That lets Kadence blocks, buttons,
 * and headings pick up the colors automatically with no code.
 *
 * These CSS variables exist as a backup / for any custom markup
 * (like recipe cards) that needs to reference brand colors directly.
 */

:root {
	--brc-appalachian-ridge: #245812; /* deep forest green — accents, buttons */
	--brc-scratch-biscuit:   #FFCE51; /* warm gold — backgrounds, highlights */
	--brc-cast-iron:         #1A1A1A; /* near-black — primary text/headings */
	--brc-pa-dutch-berry:    #303541; /* slate navy — accents, archive highlights */
	--brc-cream:             #F9F6EE; /* lighter background variant */
}

/* Utility classes for use in custom blocks/templates only.
   Prefer Kadence's built-in color controls wherever a UI option exists. */

.brc-bg-cream {
	background-color: var(--brc-cream);
}

.brc-accent-ridge {
	background-color: var(--brc-appalachian-ridge);
	color: var(--brc-cream);
}

.brc-accent-berry {
	background-color: var(--brc-pa-dutch-berry);
	color: var(--brc-cream);
}

.brc-text-cast-iron {
	color: var(--brc-cast-iron);
}
