/* You can change this file
This css is for anything related to colours of main divs

Paste the brand colours you've been given here: 
    
#c2f0f0
#28a4a4;

#DFFDC0
[1:50 PM]#628000
    */
:root {
	/* brand root colours */
	--dark-blue:#28a4a4;
	--light-blue:#c2f0f0;
	--pale-green:#DFFDC0;
	--dark-green:#628000;
	--footer-green:#1D4E17;
	--transparent-black: #00000070; /* var(--transparent-black) */
	/* element colours */
	--brand-background:	var(--dark-green);
	--brand-text-color:white;
	--main-color: black;
	--header-color: white;
	--header-background: var(--pale-green);
	--topnav-background: var(--dark-green);
	--topnav-color:white;
	--nav-background: transparent;
	--nav-color: black;
    --nav-hover-color:black;
	--button-background: var(--dark-green);
	--button-color: white;
	--footer-background: transparent;
	--footer-color: black;
}

body {
background:#fff9e6;}

/*#footer {
	border-top:5px solid var(--dark-blue)!important;
}*/

.invert {
	filter: brightness(0) invert(1);
}

.has-background, .brand_colour {
	background: var(--brand-background);	
	color: var(--brand-text-color);
}

html, body, #main { color: var(--main-color); }

#page {
color: inherit;
}

/* Backgrounds */

#page {
background: inherit;    
}

#header { color: var(--header-color);
 background: var(--header-background); 
 }

#topnav {
background: var(--topnav-background);
color:var(--topnav-color);
}

#header > #page {
background: transparent !important;
}

#logo {
background: inherit;
}

#nav {
background: var(--nav-background); 
color: var(--nav-color); 
}

#nav li a {
background: transparent;    
color: var(--nav-color);   
}

#nav li a:hover {
    color: var(--nav-hover-color);
}

#gallery {
background: transparent; 
}

#gallery #halfblock, #gallery #thirdblock {
   background: transparent;
	color: white;
}

button:not(#menu-selector), .wp-block-button {
   background: var(--button-background)!important;
   color: var(--button-color)!important;
   border: 3px solid var(--light-green);
}

.has-background button, .has-background .wp-block-button, .has-background button a, .has-background .wp-block-button a, #gallery button{
   color: var(--button-background)!important;
   background: var(--button-color)!important;
   border: 3px solid var(--light-green);
}

#halfblock {
background: inherit;
}

#thirdblock {
    background: inherit;
}

#footer {
   background: var(--footer-background);
   color: var(--footer-color);
}

