/* 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: 
    
cream background - #f3efe4
green - #4a6a2b
light grey - #737871
dark grey - #30382b
orange: ff9900;
    */
:root {
	/* brand root colours */
	--dark-grey:#30382b;
	--light-grey:#737871;
	--green:#4a6a2b;
	--orange: #ff9900;
	--cream-background:#f3efe4;
	--transparent-black: #00000070; /* var(--transparent-black) */
	/* element colours */
	
	--brand-background:	var(--dark-grey);
	--brand-text-color: white;
	--main-color: black;
	--header-color: white;
	--header-background: var(--light-grey);
	--topnav-background: var(--light-grey);
	--topnav-color: white;
	--nav-background: transparent;
	--nav-color: white;
    --nav-hover-color: grey;
	--button-background: var(--orange);
	--button-color: white;
	--footer-background: black;
	--footer-color: white;
}

.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, #long-gallery{
   background: var(--transparent-black);
	color: white;
}

button, .wp-block-button {
   background: var(--button-background);
   color: var(--button-color);
   border: 3px solid var(--light-green);
}

.has-background button, .has-background .wp-block-button, .has-background button a, .has-background .wp-block-button a{
	/* switched */
   color: var(--button-background);
   background: var(--button-color);
   border: 3px solid var(--light-green);
}

#halfblock {
background: inherit;
}

#thirdblock {
    background: inherit;
}

#footer {
   background: var(--footer-background);
   color: var(--footer-color);
}

