/*
Theme Name: Anita's Theme A1
Theme URI:
Author: Sheldon Marshall
Author URI: https://sheldonmarshall.com/
Description: The Theme for anitaskneadednook.com
Requires PHP: 8.2.27
Version: 0.0.1
License: All Rights Reserved
*/

:root {
	/* Custom Color Palette */
	--color-primary: #FBCE88;
	--color-secondary: #519795;
	--color-light: #F8F3EA;
	--color-dark: #BF895C;
}

body {
	background-color: var(--color-light);
	color: var(--color-dark);
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	margin: 0;
	padding: 0;
	background-image: url('assets/images/Anitas_Kneaded_Nook__BG_Trans.png');
	background-repeat: repeat; /* This tiles the image across the page */
	background-size: auto; /* Adjust to 'cover' if you prefer a single large image stretched to fit, but 'repeat' is better for this pattern */
	background-attachment: fixed; /* Keeps the background still when you scroll */
}

h1, h2, h3, h4, h5, h6 {
	color: var(--color-primary);
}

a {
	color: var(--color-secondary);
	text-decoration: none;
}

a:hover {
	color: var(--color-primary);
}

