/* 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
    */
:root {
	/* brand root colours */
	--transparent-black: #00000070; /* var(--transparent-black) */
	/* element colours */
	
	--brand-background:	black;
	--brand-text-color: white;
	--main-color: black;
	--header-color: white;
	--header-background: transparent;
	--topnav-background: transparent;
	--topnav-color: white;
	--nav-background: transparent;
	--nav-color: white;
    --nav-hover-color: var(--gold);
	--button-background: transparent;
	--button-color: white;
	--footer-background: white;
	--footer-color: black;
}

.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;    
}

#overlay {
	background: var(--transparent-black);
}

#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 #fullblock{
   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);
}

#halfblock {
background: inherit;
}

#thirdblock {
    background: inherit;
}

#front #main #fullblock:nth-of-type(3) #halfblock:nth-of-type(4) {
	background:linear-gradient(90deg,rgba(193,97,230,.75),rgba(92,0,218,.75));
	color:white;
}



#front #main #fullblock:nth-of-type(3) button:not(#front #main #fullblock:nth-of-type(3) #halfblock:nth-of-type(4) button) {
	color:black;
	border:1px solid black!important;
}

#front #main {
	color: white!important;
}


#footer {
   background: var(--footer-background);
   color: var(--footer-color);
}

