/* 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: 
    
Gold - ffbc1c
Grey - 2d2e36
    */
:root {
	/* brand root colours */
	--gold: #ffbc1c;
	--grey: #2d2e36;
	/* element colours */
	--brand-background:	black;
	--brand-text-color: white;
	--main-color: black;
	--header-color: black;
	--header-background: transparent;
	--topnav-background: transparent;
	--topnav-color: black;
	--nav-background: transparent;
	--nav-color: black;
    --nav-hover-color: grey;
	--button-background:var(--gold);
	--button-color: var(--grey);
	--footer-background: white;
	--footer-color: black;
}

.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); 
	border-bottom: 1px solid #dedede !important;
 }

#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 #halfblock{
   background: transparent;
color: white;
}


#gallery #fifthblock:nth-of-type(1) #fullblock:nth-of-type(1) {
	background:var(--gold);
	color:var(--grey);
}

#gallery #fifthblock:nth-of-type(1) #fullblock:nth-of-type(2) {
	background: var(--grey);
	color:white;
}

#gallery #fifthblock:nth-of-type(1) #fullblock:nth-of-type(2) i, #gallery #halfblock:nth-of-type(2) i {
	color:var(--gold);
}

#gallery #halfblock:nth-of-type(2), #gallery #halfblock p strong u {
	color: var(--grey);
}

button, .wp-block-button {
   background: var(--button-background);
   color: var(--button-color);
   border: 3px solid var(--light-green);
}

.wp-block-button.coloured-strip  {
	background:black!important;
	color:white!important;
	width:auto!important;
	height:auto!important;
}

.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);
}

.brandborder {
    border: 1px solid var(--gold);
}