// imports

@import "vendor/normalize";

// variables

$headerHeight: 202px;
$chromeHeight: 45px;

$twitterColor: #29aaf0;
$facebookColor: #3b4ea0;
$gplusColor: #f34424;
$pinterestColor: #ca1e28;
$tumblrColor: #3a5976;

$rootDir: '../';

// mixins

@mixin gayresFancy {
	font-family: "gayresfancy", sans-serif !important;
} 

@mixin gayres {
	font-family: "gayresregular", sans-serif !important;
} 

@mixin bratt {
	font-family: "bratt_pro_altbold", sans-serif !important;
} 

@mixin denise {
	font-family: "deniseregular", sans-serif !important;
		-webkit-font-smoothing: subpixel-antialiased;
} 

@mixin icons {
	font-family: "maledingsregular" !important;
}

@mixin arial {
	font-family: Arial, Helvetica, sans-serif !important;
}

@mixin helvetica {
	font-family: Helvetica, Arial, sans-serif !important;
}

@mixin trajan {
	font-family: "trajan-pro-3",sans-serif;
}

// variables

$white: #dcdcdc;

// bits

@import "preloader";
@import "header";
@import "footer";
@import "common";
@import "overlays";

// plugins

@import "mCustomScrollbar";

// pages

@import "home";
@import "gallery";
@import "about";
@import "downloads";

// global styles

html, body {
	
	padding: 0;
	margin: 0;	
	background: #000000;
	color: #e7f1ee; 

	min-width: 1110px;
	
	@include arial;

	-webkit-font-smoothing: antialiased;
}

html.no-touch, .no-touch body {
	min-height: 870px;
}

ul {
	padding: 0;
	margin: 0;
}

li {
	
	list-style-type: none;
	margin: 0;
	padding: 0;

	a {
		padding: 0;
		margin: 0;
	}
}

a, a:hover {
	color: #e7f1ee;
	text-decoration: none;
}

// remove outline

div, span, td, table, li, ul, a, button {
	
	// kerning
	
	font-feature-settings: "kern";
	/* vendor-prefixes */
	-moz-font-feature-settings: "kern=1";
	-ms-font-feature-settings: "kern";
	-webkit-font-feature-settings: "kern";
	-o-font-feature-settings: "kern";

	// disable click rectangle

	-webkit-touch-callout: none;
	-webkit-user-select: none; /* Webkit */
	-moz-user-select: none;    /* Firefox */
	-ms-user-select: none;     /* IE 10  */
	/* Currently not supported in Opera but will be soon */
	-o-user-select: none;
	user-select: none;
}

a, a:visited, a:focus, a:active, a:hover{
    outline:0 none !important;
}

:focus {outline:none;}
::-moz-focus-inner {border:0;}

// wrapper

#chrome, #globalnav {

	display: block;
	position: relative;
	width: 100%;
	height: $chromeHeight;
	opacity: 0;

	&.dev { 
		background: url($rootDir + 'assets/img/fake-chrome.png') center top no-repeat;
	}
}

#wrapper {

	position: relative;
	top: $chromeHeight; // chrome bar
	left: 0px;
	width: 100%;
	margin-top: -$chromeHeight;
	height: inherit;
	overflow: hidden;

	* { 
		-webkit-box-sizing: border-box; 
		-moz-box-sizing: border-box; 
		box-sizing: border-box; 
	}

	#main-container { 

		position: absolute;
		top:0px;
		left:0px;
		width: 100%;
		height: 100%;
		border: 0 none;
		padding: 0;
		margin: 0;
		opacity: 0;

		#view-content-container {

			position: absolute;
			top: 0px;
			left: 0px;
			width: 100%;
			height: 100%;
			z-index: 989;

			.content-view {
				position: absolute;
				top: 0px;
				left: 0px;
				width: 100%;
				height: 100%;

				.header-shadow {
					position: absolute;
					top: 0px; //$headerHeight;
					left: 0px;
					width: 100%;
					height: 125px;
					//background: url("../assets/img/ui/top-shadow.png") repeat-x;
					opacity: 0.7;
					pointer-events: none;
					z-index: 10;
				}

			}
		}

		#ui-container {
			overflow: hidden;
		}

	} // end main-container

	#background-container {

		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 100%;
		z-index: 10;
		overflow: hidden;

		.page-background {

			position: absolute;
			top: 0px;
			left: 0px;

			img {
				width: 100%;
				height: 100%;
			}
		}

	} // end background-container

	// preloaders

	.large-preloader {
		position: absolute;
		width: 75px;
		height: 75px;
		top: 40%;
		left: 0px;
		right: 0px;
		margin: 0 auto;
		overflow: hidden;
	}

	.lightbox-preloader {
		position: absolute;
		width: 75px;
		height: 75px;
		top: 40%;
		left: 0px;
		right: 0px;
		margin: 0 auto;
		overflow: hidden;
	}

	// icon font

	.icon {
		@include icons;
	}

	// misc

	.hidden {
		display: none !important;
	}

	.coming-soon a {
		cursor: default;
	}

}

// tracking

#tracking {
	display: none;
}

// marvel elements

#marvel-chrome {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 9999;
}

#page_wrapper {
	height: 45px;
	overflow: hidden;

	.dropdown {
		height: 45px !important;
		overflow: hidden !important;
	}
}

