@charset "UTF-8";
/* 
light tint: #f1f2ed
Moss green: #808e76
dark green: #2f4234
darker green: #1e2c21
Dark grey #282828
Dark coral: #bb535d
Light coral: #c1666b 
*/
:root {
	/* Fluid base font size using clamp() */	
	font-size: clamp(14px, 1vw + 0.5rem, 18px);
 	/* Fluid spacing scale */
 	--space-sm: clamp(0.5rem, 1vw, 1.5rem);
 	--space-md: clamp(1rem, 2vw, 2rem);
 	--space-lrg: clamp(1.25rem, 2.5vw, 2.5rem);
 	/* headings */
	--heading-font: "Cormorant SC", serif;
	--heading-weight: 400;
	--heading-color: #2f4234;
 	/* paragraphs */
	--paragraph-font: "Lato", sans-serif;
	--paragraph-weight: 400;
	--paragraph-bold: 600;
	--paragraph-color: #282828;
 	/* header colours */
	--shallowHeader-color: #2f4234;
	--navLink-color: #2f4234;
	--navHover-color: #808e76;
 	/* primary button colours */
	--buttonPrimary_backgroundColor: #2f4234;
	--buttonPrimary_textColor: #ffffff;
	--buttonPrimary_hoverColor: #808e76;
	--buttonPrimary_textHoverColor: #ffffff;
 	/* secondary button colours */
	--buttonSecondary_backgroundColor: #ffffff;
	--buttonSecondary_textColor: #808e76;
	--buttonSecondary_hoverColor: #ffffff;
	--buttonSecondary_textHoverColor: #2f4234;
 	/* colours */
	--light_panelTint: #f1f2ed;	
	--med_panelTint: #808e76;
	--dark_panelTint: #2f4234;
	--verydark_panelTint: #1e2c21;
}