/*
Theme Name: Seasoned Pan - GeneratePress Child
Theme URI: https://seasonedpan.com/
Author: Seasoned Pan
Author URI: https://seasonedpan.com/
Description: A calm, warm child theme for GeneratePress — home cooking, macros, and honest nutrition tools. Pairs with the Seasoned Pan plugin (calculators + food diary).
Template: generatepress
Version: 0.1.0
Text Domain: seasoned-pan-gp-child
*/

/* ==========================================================================
   Design tokens — warm, calm, high-contrast. Tweak these first.
   ========================================================================== */
:root {
	--sp-bg:        #faf7f2; /* warm cream */
	--sp-surface:   #ffffff;
	--sp-text:      #2b2622; /* warm near-black */
	--sp-muted:     #6b625a;
	--sp-border:    #e7dfd4;
	--sp-accent:    #c65d3b; /* seasoned terracotta */
	--sp-accent-2:  #2e7d32; /* nutrition green (matches the plugin) */
	--sp-radius:    10px;
	--sp-maxwidth:  70ch;    /* comfortable reading measure */
}

@media ( prefers-color-scheme: dark ) {
	:root {
		--sp-bg:      #1e1b18;
		--sp-surface: #262220;
		--sp-text:    #f0ebe4;
		--sp-muted:   #b6aca1;
		--sp-border:  #3a332e;
		--sp-accent:  #e2795a;
		--sp-accent-2:#6cc070;
	}
}

/* ==========================================================================
   Base — light touch on top of GeneratePress. Real design lives here later.
   ========================================================================== */
body {
	background-color: var(--sp-bg);
	color: var(--sp-text);
}

a {
	color: var(--sp-accent);
}

a:hover,
a:focus {
	color: var(--sp-accent-2);
}

.entry-content {
	max-width: var(--sp-maxwidth);
}

/* Buttons / GeneratePress button class */
.button,
button.wp-block-button__link,
.wp-block-button__link {
	background-color: var(--sp-accent);
	border-radius: var(--sp-radius);
}

.button:hover,
.wp-block-button__link:hover {
	background-color: var(--sp-accent-2);
}

/* ==========================================================================
   Sections to flesh out (kept as signposts, not styled yet):
   - site header / logo
   - primary navigation + mobile menu (see functions.php note on the GP
     no-Premium mobile-menu quirk)
   - front page / hero
   - recipe post layout (pairs with [sp_recipe_calculator])
   - footer
   ========================================================================== */
