/* 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: 
    
#f7931e; /* orange * / 
    #c7d034; /* green * /
    #da1b5b; /* pink * /
    */
:root {
	/* brand root colours */
	--green:#c7d034;
	--orange:#f7931e;
--pink: #da1b5b;

--light-gray:#80808012;
--teal:#00A9A4;	/* var(--transparent-black) */
	/* element colours */
	
	--brand-background:	black;
	--brand-text-color: white;
	--main-color: black;
	--header-color: black;
	--header-background:transparent;
	--topnav-background: var(--green);
	--topnav-color: white;
	--nav-background: transparent;
	--nav-color: black;
    --nav-hover-color:gray;
	--button-background: var(--green);
	--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, #sociallinks li a:hover {
    color: var(--nav-hover-color);
}

#gallery {
background: transparent; 
}

#gallery #halfblock {
   background: transparent;
	color: white;
}

.circle {
	background:var(--pink);
}

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: black;
   background: var(--button-color);
}

.teal-section .has-background .wp-block-button,  .teal-section .has-background .wp-block-button a {
	background:var(--teal);
	color:white;
}

figure.host, img.host, figure.regionhost {
	border:4px solid var(--pink);
}

figure.ambassador,img.ambassador {
	border:4px solid var(--orange);
}

figure.actualhost img , img.actualhost, figure.venu, img.venu  {
	border:4px solid var(--green);
}

figure.ambassador, figure.host, .wp-block-cover.ambassador, .wp-block-cover.host, img.host, img.ambassador, img.actualhost{
	background:white;
}

#halfblock {
background: inherit;
}

#thirdblock {
    background: inherit;
}

#footer {
   background: var(--footer-background);
   color: var(--footer-color);
}

