:root
{
	--bg_offset: 260px;
	--bg_offset_mobile: 145px;
	--kc_bg: #290741;
	--kc_white: #ddcbe4;
	--kc_yellow: #f0c74a;
	--kc_light_violet: #8c6ca4;
}

@font-face
{
	font-family: 'Hind';
	src: url('fonts/Hind-Regular.ttf');
}

@font-face
{
	font-family: 'Hind';
	src: url('fonts/Hind-Bold.ttf');
	font-weight: bold;
}

::selection
{
	color: #15002b;
	background-color: violet;
	text-shadow: none;
}

::-moz-selection
{
	color: #15002b;
	background-color: violet;
	text-shadow: none;
}

body
{
	background-color: var(--kc_bg);
	font-family: 'Hind', sans-serif;
	font-size: 13pt;
	text-align: center;
	margin: 0;
	color: var(--kc_white);
}

a
{
	text-decoration: none;
	color: var(--kc_white);
}

a:hover
{
	color: var(--kc_yellow);
}

#menu
{
	background: rgba(13, 0, 23, 0.7);
	padding: 10px;
	font-weight: bold;
	font-size: 1em;
	text-align: right;
}

#hamburger_menu
{
	visibility: hidden;
	background: rgba(13, 0, 23, 0.7);
	box-sizing: border-box;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	font-size: 0.9em;
	text-align: left;
	height: 50px;
	z-index: 20;
}

#hamburger_menu img
{
	cursor: pointer;
	box-sizing: border-box;
	padding: 15px;
	height: 100%;
}

#hamburger_contents
{
	display: none;
	background: rgba(13, 0, 23, 0.9);
	box-sizing: border-box;
	padding: 15px;
	width: 100%;
	position: fixed;
	top: 50px;
	left: 0;
	font-size: 1.2em;
	text-align: left;
	line-height: 1.5em;
	z-index: 10;
}

#menu a
{
	margin: 0 8px;
}

#bg
{
	width: 95%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: -1;
	margin: auto;
	margin-top: calc(-50% + var(--bg_offset));
	background-image: url('img/kc_page_background.png');
	background-repeat: no-repeat;
	background-position: center -50%;
	background-size: 100% auto;
	image-rendering: crisp-edges;
	image-rendering: pixelated;
	opacity: 0.4;
}

#bg img
{
	width: 100%;
}

#logo
{
	width: 604px;
	height: 278px;
	image-rendering: crisp-edges;
	image-rendering: pixelated;
	margin: 50px 0;
	margin-bottom: 0;
}

#platform_buttons
{
	margin: 50px 0;
}

.platform_button
{
	display: inline-block;
	background: rgba(13, 0, 23, 0.35);
	font-weight: bold;
	font-size: 1.5em;
	text-align: center;
	padding: 5px 15px;
	padding-top: 8px;
	margin: 3px;
	line-height: 1em;
	border-radius: 8px;
}

#trailer_wrapper
{
	margin-bottom: 60px;
}

#trailer
{
	background-color: #180226;
	border-radius: 12px;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.8);
}

h1
{
	font-size: 1.2em;
	font-weight: bold;
	color: var(--kc_yellow);
	text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
}

video
{
	display: inline-block;
	width: 300px;
	height: 188px;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.8);
	margin-bottom: 12px;
	cursor: zoom-in;
	z-index: 10;
	border-radius: 8px;
}

video#forge
{
	background-image: url('img/forge_thumb.html');
	background-repeat: no-repeat;
}

video#cellars
{
	background-image: url('img/cellars_thumb.html');
	background-repeat: no-repeat;
}

video#garden
{
	background-image: url('img/garden_thumb.html');
	background-repeat: no-repeat;
}

.desc
{
	display: inline-block;
	margin: 0 20px 20px 20px;
	font-size: 1em;
	width: 300px;
	line-height: 1.5em;
	text-align: justify;
	vertical-align: top;
	text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5);
}

#content
{
	min-height: calc(100vh - 120px);
}

#footer
{
	background: rgba(13, 0, 23, 0.7);
	padding: 30px;
	text-align: center;
	color: var(--kc_light_violet);
	font-size: 0.95em;
	line-height: 1.2em;
	height: 120px;
	margin-top: 30px;
}

#footer a:first-child
{
	color: inherit;
}

#footer a:first-child:hover
{
	color: inherit;
}

#footer span
{
	display: inline-block;
	text-align: left;
	box-sizing: border-box;
	vertical-align: top;
	margin: 0 10px;
}

#footer span:first-child
{
	box-sizing: border-box;
	padding: 10px;
	padding-left: 95px;
	background-image: url('img/vb_logo_small.png');
	background-repeat: no-repeat;
	background-position: left 7px;
	margin-right: 75px;
}

#footer b
{
	color: var(--kc_white);
}

.link_arrow
{
	color: var(--kc_yellow) !important;
}

@media screen and (max-width: 1000px)
{
	#trailer_wrapper
	{
		position: relative;
		padding-bottom: 56.25%; /* 16:9 */
		padding-top: 25px;
		height: 0;
		margin-bottom: 40px;
	}

	#trailer
	{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border-radius: 0;
	}
}

@media screen and (min-width: 735px)
{
	#hamburger_contents
	{
		display: none !important;
	}
}

@media screen and (max-width: 735px)
{
	#hamburger_menu
	{
		visibility: visible;
	}

	#menu
	{
		visibility: hidden;
	}

	#menu a
	{
		margin: 0 3px;
	}

	#bg
	{
		margin-top: calc(-50% + var(--bg_offset_mobile));
	}

	#logo
	{
		width: 302px;
		height: 139px;
		margin: 20px 0;
		margin-top: 20px;
	}

	#content
	{
		min-height: calc(100vh - 230px);
	}

	#footer
	{
		height: 250px;
	}

	#footer span:first-child
	{
		margin: 0;
		margin-bottom: 20px;
	}
}