@charset "utf-8";


/* Reset */

*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
	padding: 0;
	font: inherit;
}
html {
	hanging-punctuation: first last;
}
body {
	min-height: 100svh;
	font-family: Raleway;
  line-height: 1.5;
  font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p {
	text-wrap: pretty;
  overflow-wrap: break-word;
}
h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
li {
	text-wrap: pretty;
}
a {
	white-space: nowrap;
}
#root, #__next {
  isolation: isolate;
}



/* cyrillic-ext */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/raleway/v29/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCFPrEHJA.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/raleway/v29/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCMPrEHJA.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/raleway/v29/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCHPrEHJA.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/raleway/v29/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCGPrEHJA.woff2) format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/raleway/v29/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCIPrE.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/* General */

#site-container {
	display: block;
	margin: auto;
	width: 100%;
	max-width: 1200px;
	padding: 0 10px;
	border: 1px solid #DDE5F1;
}

p {
  font-size: clamp(22px, 2vmin, 42px);
	margin: 0.8rem;
}

a {
	font-weight: bold;
}
a:hover {
	text-decoration: none;
}


h1 {
	text-align: center;
	font-family: inherit;
  font-size: clamp(30px, 2vmin, 42px);
	color: white;
	background-color: #4571AF;
	padding: 12px 20px;
	box-shadow: 8px 8px 10px rgb(0,0,0,0.3);
}

h2 {
	text-align: left;
	font-family: inherit;
  font-size: clamp(26px, 2vmin, 40px);
	color: #4F6CAE;
	color: white;
	/* background-color: #E2E5F1; */
	/* border-bottom: 3px solid #4F6CAE; */
	background-color: #4571AF;
	padding: 5px 10px;
}

h3 {
	text-align: left;
	font-family: inherit;
  font-size: clamp(24px, 2vmin, 38px);
	font-weight: bold;
	color: #4F6CAE;
	border-bottom: 3px solid #4F6CAE;
	padding: 5px 10px;

}

ol, ul {
  font-size: clamp(22px, 2vmin, 42px);
	margin: 0.8rem;
	overflow: hidden;
	list-style-position: inside;
}


/* Header */
/*
.subheader {
	width: 100%;
	max-height: 200px;
	aspect-ratio: 4/2;
	background-image: linear-gradient(to right bottom, #3c573b, #0c5a53, #00586f, #2d507c, #63416f);
	& .image {
		width: 400px;
	}
}
*/

header {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(5, 1fr);
	height: clamp(250px, 300px, 400px);
	background-image: url("/assets/images/header-backgrounds/cityscape.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;

	& .Title {
		grid-column: 1 / -1;
		grid-row: 1 / 2;
		font-family: Raleway;
		font-size: 2rem;
		font-weight: bold;
		letter-spacing: .5rem;
		color: white;
		background-color: rgba(0,0,0,0.2);
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		margin: 0;
	}

	& .Portraits {
		grid-column: 1 / -1;
		grid-row: 2 / -1;
		justify-self: center;
		align-self: end;
		max-width: 100%;
		max-height: 100%;
	}

	& .Caption {
		grid-column: 1 / -1;
		grid-row: 5 / 6;
		background-color: transparent;
		display: flex;
		justify-content: center;
		align-items: center;
		color: rgb(255, 255, 255, 0.8);
		font-family: Raleway;
		font-weight: normal;
		font-size: 1.6em;
		pointer-events: none;
		text-stroke: 2px rgba(0, 0, 0, 0.5);
	  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add a subtle text shadow */
	}

	& .Overlay {
		display: none;
		content: '';
		grid-column: 1 / -1;
		grid-row: 5 / 6;
		background: #fff;
		mix-blend-mode: plus-darker;
		opacity: 0.5;
		pointer-events: none;
	}

}



/* Navigation */

nav {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around;
	align-items: center;
	color: white;
	background-color: #4571AF;
	font-size: 1.2rem;
	font-weight: normal;
	padding: 4px 0;

	& a {
		padding: 10px 14px;
		text-decoration: none;
		font-weight: normal;
	}

	& a:hover {
		color: white;
		background-color: #375276;
	}

}



/* Livestream */

.livestream-links-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 1rem;
	justify-items: center;
	align-items: center;
}
.rumble {
	display: block;
	margin: auto;
	width: 100%;
	background-color: white;
}



/* Live Chat */

.chat-container {
	display: block:
	width: 100%; 
	height: 500px;
	margin-top: 20px;
}



/* About Us */

/* 
.host-bio-text-container {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: flex-start;
}
*/

.HostBio_Image {
	display: block;
	margin: auto;
	width: 100%;
	max-width: 400px;
	border: 2px solid #4571AF;
	border-radius: 20px;
	box-shadow: 4px 4px 8px rgb(0,0,0,0.4);

}



/* Store */


.StoreLogo_Container {
	display: block;
	text-align: center;

	& a {
		display: inline-block;
	}

	& img {
		margin: auto;
	}
}




/* Footer */
footer {
	display: grid;
	justify-items: center;
	align-items: stretch;
	text-align: center;
	padding: 12px 20px;
	margin-top: 20px;
	border-top: 2px solid #4571AF;
	
	& p {
  	font-size: clamp(20px, 2vmin, 22px);
	}

}




/* Scroll-To-Top Button */

#TopBtn {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 99;
	border: none;
	outline: none;
	background-color: #0c0c0d;
	background-color: rgb(0,0,0,0.3);
	color: white;
	cursor: pointer;
	padding: 15px;
	border-radius: 50%;
}

#TopBtn:hover {
	background-color: rgb(0,0,0,0.5);
}

/* Utility Classes */

.nowrap {
	white-space: nowrap;
}



/* Forms */

.Form_InputContainer {
	display: flex;
	justify-content: left;
	border-bottom: 1px single gray;

	& .Title {
		font-weight: bold;
	}

	& .Description {
		font-size: 0.8rem;
	}
}
