/* 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
Black, White and accents of Blue #578cec
    */
:root {
	/* brand root colours */
	--blue: #578cec;
	--dark-grey: #2f2f2f;
	--transparent-black: #00000070; /* var(--transparent-black) */
	/* element colours */
	
	--brand-background:	black;
	--brand-text-color: white;
	--main-color: black;
	--header-color: white;
	--header-background:#444444 url(assets/sheen.png) no-repeat;
	--topnav-background: black;
	--topnav-color: white;
	--nav-background: transparent;
	--nav-color: white;
    --nav-hover-color: grey;
	--button-background: transparent;
	--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 {
	background-size:100% 100%!important;
}

#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);
}

#header #thirdblock:nth-of-type(3) button, #gallery #halfblock #inset button {
	border:1px solid white;
	border-radius: var(--rounded);
	/*background: transparent;
	color: var(--blue);*/
}

.wp-block-button {
	border: 1px solid black!important;
	color: black!important;
}

#sociallinks li {
	color: white;
}

#gallery {
background: transparent; 
}

#gallery #overlay {
	background: linear-gradient(90deg, rgb(9 9 9 / 69%) 0%, rgb(0 0 0 / 0%) 100%)
}

#gallery #halfblock {
   background: transparent;
	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);
}

.has-background button, .has-background .wp-block-button, .has-background button a, .has-background .wp-block-button a {
	color: black;
	background:white;
	border:0;
}

.gray {
	background:#dedede;
}

.white {
	background:#ffffff;
}

#halfblock {
background: inherit;
}

#thirdblock {
    background: inherit;
}



#footer {
   background: var(--footer-background);
   color: var(--footer-color);
}

