/* 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: 
    
The Star Icon

Top (Blue): #00AEEF (Cyan Blue)

Right (Yellow/Gold): #FFD200 (Golden Yellow)

Bottom Right (Magenta/Pink): #EC008C (Process Magenta)

Bottom Left (Purple/Indigo): #662D91 (Deep Purple)

Left (Teal/Aqua): #00A99D (Persian Green)

The Typography

"STAGEWORKS": #808285 (Neutral Gray)

"STUDIOS": #231F20 (Rich Charcoal / Off-Black);
    */
:root {
	/* brand root colours */
	--cyan-blue: #00AEEF;
	--golden-yellow:#FFD200;
	--pink:#EC008C;
	--purple:#662D91;
	--teal:#00A99D;
	--gray: #808285;
	--off-black:#231F20;
	/* element colours */
	
	--brand-background:	black;
	--brand-text-color: white;
	--main-color: black;
	--header-color: white;
	--header-background: black;
	--topnav-background:transparent;
	--topnav-color: white;
	--nav-background: transparent;
	--nav-color: white;
    --nav-hover-color: var(--gray);
	--button-background: var(--purple);
	--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: black;
}

figure.black {
background:black;
margin:0;}

figure.black img {
vertical-align:bottom;
max-width:100%;
height:auto!important;
border-top:1px solid black;
border-bottom:1px solid white;}


#gallery #halfblock, #long-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);
}

#halfblock {
background: inherit;
}

#thirdblock {
    background: inherit;
}

#footer {
   background: var(--footer-background);
   color: var(--footer-color);
}

#footer #thirdblock p:nth-of-type(1) {
	color:var(--purple);
}

