/*
Theme Name:		Hamlet
Author:			801red
Author URI: 	http://www.801red.com
Version: 		1.0
*/

/* IMPORTS */
@import url(assets/css/reset.css);
@font-face {
    font-family: 'bungeeregular';
    src: url('assets/fonts/bungee-regular-webfont.woff2') format('woff2'),
         url('assets/fonts/bungee-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'eurostiletregular';
    src: url('assets/fonts/eurostilet-webfont.woff2') format('woff2'),
         url('assets/fonts/eurostilet-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'eurostiletbold';
    src: url('assets/fonts/eurostiletbold-webfont.woff2') format('woff2'),
         url('assets/fonts/eurostiletbold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}



/* COLOR SELECTORS*/
.white { color:#FFF; }
.black { color:#000; }
.bg-color { background-color:#000; }
*[class*="bg-"] { color:#FFF; }


/**
 * 1.0 Global
 * ----------------------------------------------------------------------------- */
 
/* INNER BOX PADDING FOR RESPONSIVE COLUMNS */
* {
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */	
}

/* CLEAR FIX */
.clearfix:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; }
.clearfix { display: inline-block; }
html[xmlns] .clearfix { display: block; }
* html .clearfix { height: 1%; }

/* BASIC SETUP */
body {
	font-family: 'eurostiletregular', Helvetica, Arial, "sans-serif";
    color: #FFF;
    background-color: #111736;
}

/* TYPOGRAPHY */

/* Headings */
h1, h2, h3, h4, h5, h6, p {
	margin:0 0 40px;
	padding:0;
    text-shadow: 0 0 10px #111736;
}
h1, h1 a {
    font-size: calc(40px + (80 - 40) * ((100vw - 400px) / (2000 - 400)));
    font-family: 'bungeeregular', Helvetica, Arial, "sans-serif";
    line-height: 1.5em;
    color: #FBAF32;
}
h2, h2 a {
    font-size: calc(30px + (50 - 30) * ((100vw - 400px) / (2000 - 400)));
    line-height: 1.2em;
    font-family: 'bungeeregular', Helvetica, Arial, "sans-serif";
    color: #FBAF32;
}
.cta {
    text-align: center;
}
h3 {
    font-size: calc(20px + (50 - 20) * ((100vw - 400px) / (2000 - 400)));
    font-family: 'eurostiletbold', Helvetica, Arial, "sans-serif";
    color: #9DD0D3;
}
h4 {
    font-size: calc(20px + (30 - 20) * ((100vw - 400px) / (2000 - 400)));
    font-family: 'eurostiletbold', Helvetica, Arial, "sans-serif";
    text-transform: uppercase;
    color: #9DD0D3;
	margin:0 0 20px;
}
h5 {
    font-size: calc(20px + (30 - 20) * ((100vw - 400px) / (2000 - 400)));
    line-height: 1.2em;
    font-family: 'bungeeregular', Helvetica, Arial, "sans-serif";
    color: #FBAF32;
	margin:0 0 10px;
}
h6 {
}

/* Text elements */
p {
}
p, li {
    font-size: calc(20px + (30 - 20) * ((100vw - 400px) / (2000 - 400)));
    line-height: 1.5em;
}
strong, .bold { font-weight:700; }
em { font-style:italic; }
p:last-child { margin-bottom:0; }
a,
a:focus {
	outline:none;
}
a:hover {
}
a[href^="tel:"] {
}
ul, ol {
	margin: 0 0 1.5em 3em;
}
ul {
	list-style: disc;
}
ol {
	list-style: decimal;
}
li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}
img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}
blockquote p:before { content: open-quote; }
blockquote p:after { content: close-quote; }
blockquote {
}



/* TABLES */
table { width:100%; }
tr { height:40; }
th { vertical-align:middle; text-align:right; padding:0 10; }
td { padding:6px; }
table.lined td { border-bottom:1px dotted #ddd; }	



/* FORMS */
input, textarea {
	border:solid 1px #999;;
	width:100%;
	padding:6px;
}
input.radio { width:auto; }



/* TAGS */
.text-left   { text-align: left   !important; }
.text-center { text-align: center !important; }
.text-center ul { margin-left: 0; list-style-position:inside; }
.text-right  { text-align: right  !important; }


.caps { text-transform:uppercase; }


/**
 * 2.0 Layout
 * ----------------------------------------------------------------------------- */

.flex-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.flex-container.justify {
	-webkit-box-pack:justify;
	    -ms-flex-pack:justify;
	        justify-content:space-between;
}
.flex-container.justify-left {
	-webkit-box-pack:start;
	    -ms-flex-pack:start;
	        justify-content:flex-start;
}
.flex-container.justify-center {
	-webkit-box-pack:center;
	    -ms-flex-pack:center;
	        justify-content:center;
}
.flex-container.justify-right {
	-webkit-box-pack:end;
	    -ms-flex-pack:end;
	        justify-content:flex-end;
}
.flex-container.align-top {
	-webkit-box-align:start;
	    -ms-flex-align:start;
	        align-items:flex-start;
}
.flex-container.align-center {
	-webkit-box-align:center;
	    -ms-flex-align:center;
	        align-items:center;
}
.flex-container.align-bottom {
	-webkit-box-align:end;
		-ms-flex-align:end;
			align-items:flex-end;
}
.flex-container.wrap {
	-ms-flex-wrap:wrap;
	    flex-wrap:wrap;
}
.flex-container.column {
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	    -ms-flex-direction:column;
	        flex-direction:column;
}
.grid {
	max-width:1260px;
	margin:auto;
    position: relative;
    z-index: 9;
}
.row { padding:40px 0; }
.column-wrapper { -webkit-box-flex:1; -ms-flex:1 0 25%; flex:1 0 25%; max-width:250px; position:relative; margin:0 1% 20px; }
.fixed {
	position:fixed;
	width:100%;
	z-index:99;
}
.gradient::before,
.gradient::after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 500px;
    content: '';
}
.gradient::before {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#111736+0,111736+100&1+0,0+100 */
    background: -moz-linear-gradient(top,  rgba(17,23,54,1) 0%, rgba(17,23,54,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(17,23,54,1) 0%,rgba(17,23,54,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(17,23,54,1) 0%,rgba(17,23,54,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#111736', endColorstr='#00111736',GradientType=0 ); /* IE6-9 */
    top: 0;
}
.gradient::after {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#111736+0,111736+100&0+0,1+100 */
    background: -moz-linear-gradient(top,  rgba(17,23,54,0) 0%, rgba(17,23,54,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  rgba(17,23,54,0) 0%,rgba(17,23,54,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  rgba(17,23,54,0) 0%,rgba(17,23,54,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00111736', endColorstr='#111736',GradientType=0 ); /* IE6-9 */
    bottom: 0;
}



/**
 * 3.0 Header
 * ----------------------------------------------------------------------------- */
header {
    background-image: url("assets/images/header-bg.jpg");
    position: relative;
    background-attachment: fixed;
}
.logo,
.beauty-image {
    margin: 0 auto;
    display: block;
}
.logo {
    width: 90%;
	max-width: 960px;
}
.beauty-image {
    width: 80%;
    max-width: 1080px;
    margin-top: -14%;
}




/**
 * 6.0 Content
 * ----------------------------------------------------------------------------- */

.video-player {
	position: absolute;
	left: 50%;
	font-size: 200px;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	color: rgba(255,255,255,.8);
	bottom: 200px;
}
.features {
    background-image: url("assets/images/content-bg.jpg");
    position: relative;
    background-attachment: fixed;
    padding: 50px 0;
}
.features::after {
	background-image: url("assets/images/border.svg");
	background-repeat: repeat-x;
	content: '';
	width: 100%;
	left: 0;
	bottom: 0;
	height: 40px;
	position: absolute;
	z-index: 19;
}
.columns {
    margin-bottom: 100px;
}
.image.column {
    max-width: 35%;
}
.text.column {
    max-width: 60%;
}
.characters {
    margin: -220px auto -15px;
    max-width: 1600px;
    position: relative;
    z-index: 19;
}



/* ICONS */
i { margin: 0 10px; }
.social {
	font-size:60px;
	text-align:center;
    margin-bottom: 40px;
}
.social a {
	display:inline-block;
	text-align:center;
	color:#FFF;
}
.social.vert {
    position: absolute;
    top: 200px;
	font-size: 30px;
    left: 0;
}
.social.vert a {
    margin-bottom: 10px;
}
.social.wishlist {
    right: 0;
    left: auto;
}

/* BUTTONS */


/**
 * 7.0 Footer
 * ----------------------------------------------------------------------------- */

/* FOOTER */
footer {
    background-image: url("assets/images/footer-bg.jpg");
    position: relative;
    background-attachment: fixed;
    padding: 50px 0;
    min-height: 800px;
}
.logo-block {
	max-width: 500px;
	margin: 0 auto 50px;
}
.logo-block .esrb { max-width: 100px; margin-right: 50px; }

/* COLOPHON */
.colophon {
	font-size:10;
	padding:10 0;
	margin:0 auto;
}
.colophon p {
	color:#fff;
	font-size: 10;
	margin:0;
}

/**
 * 8.0 Responsive
 * ----------------------------------------------------------------------------- */

@media all and (max-width: 1260px) {
    .grid {
        padding: 0 2%;
    }
}
@media all and (max-width: 768px) {
}
@media all and (max-width: 568px) {
}
@media all and (max-width: 340) {
}
