/* 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: 
    
 black - #000000
white - #ffffff	
logo orange #f9911c
web orange #ec7a00
black
white
    */
:root {
	/* brand root colours */
	--logo-orange: #f9911c;
	--web-orange:  #ec7a00;
	--light-grey:#eeeeee;
	--transparent-white:#ffffff4f;
	--dark-grey: #252525;
	/* element colours */
	
	--brand-background:	var(--web-orange);
	--brand-text-color: white;
	--main-color: black;
	--header-color: black;
	--header-background: transparent;
	--topnav-background:var(--light-grey);
	--topnav-color: black;
	--nav-background: transparent;
	--nav-color: black;
    --nav-hover-color: grey;
	--button-background: var(--web-orange);
	--button-color: white;
	--footer-background: var(--dark-grey);
	--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); 
}

.sub-menu li:hover {
	background:var(--web-orange);
}


#nav li a {
background: transparent;    
color: var(--nav-color);   
}

#nav li a:hover {
    color: var(--nav-hover-color);
}

#gallery {
background: transparent; 
}

#gallery #halfblock {
   background: transparent;
	color: white;
}

#front #main #fullblock:nth-of-type(1) strong {
	color: var(--web-orange);
}

#front #main #fullblock:nth-of-type(2) #quarterblock:nth-of-type(1) #twothirdsblock, #front #main #fullblock:nth-of-type(2) #quarterblock:nth-of-type(2) #twothirdsblock {
	color: white;
}

#front #gradient {
	background: var(--transparent-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);
}

.branded-gradient {
	background:linear-gradient(90deg,rgba(255, 163, 59, 1) 43%, rgba(237, 123, 1, 1) 71%);
	color: white !important;
}

.branded-gradient p, .branded-gradient h2 {
color: white !important;	
}

.branded-gradient .wp-block-button {
	background:white;
	color:var(--web-orange) !important;
	font-size: 16px;
	border-radius: var(--rounded);
	padding:12px 20px;
}

#halfblock {
background: inherit;
}

#thirdblock {
    background: inherit;
}

#footer {
   background: var(--footer-background);
   color: var(--footer-color);
}

div.hoverorange .wp-block-group:hover * {
	color: var(--web-orange);
}