/* 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: 
    
orange: #d35711;
dark-blue: #00203d;
dark-grey:#c0c0c0;
grey: #5f5f5f;
    */
:root {
	/* brand root colours */
	--orange: #d35711; 
	--dark-blue:#00203d;
	--dark-grey:#c0c0c0;
	--grey:#5f5f5f;
	--transparent-black: #00000070; /* var(--transparent-black) */
	/* element colours */
	
	--brand-background:	black;
	--brand-text-color: white;
	--main-color: black;
	--header-color: white;
	--header-background: var(--orange);
	--topnav-background: var(--orange);
	--topnav-color: black;
	--nav-background: transparent;
	--nav-color:white;
    --nav-hover-color: var(--gold);
	--button-background: var(--orange);
	--button-color: white;
	--footer-background: var(--orange);
	--footer-color: white;
}

.invert {
	filter: brightness(0) invert(1);
}

 .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; 
color:white;
}

#gallery #halfblock {
   background: transparent;
	color: white;
}

#gallery-overlay {
	background:#00203d99;
}

#gallery h1, #gallery h2 {
color:var(--dark-blue);
font-weight:bold;}

#gallery p {
color:black;
}

button, .wp-block-button {
   background: var(--button-background);
   color: var(--button-color);
   border: 3px solid var(--light-green);
}


.wp-block-button:hover, button:hover {
	opacity:0.8;
}

.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);
}

.wp-block-group.has-background .wp-block-button, .wp-block-group.has-background .wp-block-button a {
background:var(--orange);
color:white;}

.grey-text {
	color:var(--grey);
	font-size:.8vw;
}

#halfblock {
background: inherit;
}

#thirdblock {
    background: inherit;
}

#footer {
   background: var(--footer-background);
   color: var(--footer-color);
}

