@import url(reset.css);

/* ////////// CLEARFIX ////////// */

*,
*:after,
*:before {
	box-sizing: border-box;
}

.cf:before,
.cf:after {
	content: '';
	display: table;
}

.cf:after {
	clear: both;
}

.cf {
	*zoom: 1;
}

/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////// BASIC STYLES ////////////////////////////////////////////////////////////////////// */

html,
body {
	width: 100%;
	height: 100%;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 300;
	color: #4f505a;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 20px;
	line-height: 1.5em;
	background: #ffffff;
}

a {
	color: #4f505a;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover,
a:active,
a:focus {
	color: #da5526;
	text-decoration: none;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}

.center {
	text-align: center;
}

.justify {
	text-align: justify;
}

.medium {
	font-weight: 400;
}

.bold {
	font-weight: 700;
}

.large {
	font-size: 1.1em;
	line-height: 1.6em;
}

ul#shows li {
	display: block;
}

ul#shows li.passive,
ul#shows li.active.invisible {
	display: none;
}

ul#shows li.passive.visible {
	display: block !important;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

h2 {
	font-size: 2em;
	line-height: 2em;
	color: #da5526;
}

h3 {
	font-size: 1.333em;
	line-height: 1.333em;
	margin: 0.5em 0 0;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

section {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
}

img.background {
	display: block;
	position: absolute;
	z-index: 1;

	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);

	opacity: 1;
	transition: opacity 1s ease;
}

img.background.out {
	opacity: 0;
}

section#header {
	height: 80%;
}

section#video,
section#concert {
	height: 57%;
}

section#video:after,
section#concert:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(37, 30, 37, 0.333);
	z-index: 2;
}

section#concert:after {
	background: rgba(14, 22, 25, 0.333);
}

section.dark * {
	color: #ffffff;
}

img.content-top {
	position: absolute;
	width: 100%;
	height: auto;
	top: -1px;
	z-index: 9999;
}

img.content-bottom {
	position: absolute;
	width: 100%;
	height: auto;
	bottom: -1px;
	z-index: 9999;
}

div.content {
	position: relative;
	width: 80%;
	max-width: 1200px;
	height: auto;
	margin: 0 auto;
	padding: 3em 0 5em;
	z-index: 10;
}

div.content.vcenter {
	position: absolute;
	padding: 0 0 2em;

	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

div[class^='cols'] {
	display: table;
	border-collapse: collapse;
	position: relative;
	min-width: 100%;
	width: 100%;
	height: auto;
}

div[class^='cols'] > div {
	display: inline-block;
	position: relative;
	height: auto;
	margin-right: -5px;
	overflow: hidden;
	vertical-align: middle;
}

div[class^='cols'] > div:last-of-type {
	margin-right: 0;
}

div.cols2 > div {
	width: 50%;
}

div.content.vcenter div[class^='cols'] > div * {
	/* anti-aliasing rendering hack */
	-webkit-transform: translate(0px, 0px);
	transform: translate(0px, 0px);
}

img.cd {
	position: relative;
	width: 100%;
	height: auto;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

a.btn {
	position: relative;
	display: inline-block;
	margin: 0 0.25em 1px;
	padding: 0.5em 1.5em;
	font-size: 1.15em;
	line-height: 1.15em;
	color: #da5526;
	text-align: center;
	background: none;
	border: 1px solid #da5526;
	border-radius: 0.333em;
	transition: all 0.3s ease;

	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	-ms-user-select: none;
	user-select: none;

	/* anti-aliasing rendering hack */
	-webkit-transform: translate(0px, 0px);
	transform: translate(0px, 0px);
}

a.btn:hover,
a.btn:active,
a.btn:focus {
	color: #ffffff;
	background: #da5526;
}

section.dark a.btn {
	color: #ffffff;
	background: none;
	border: 1px solid #ffffff;
}

section.dark a.btn:hover,
section.dark a.btn:active,
section.dark a.btn:focus {
	color: #4f505a;
	background: #ffffff;
}

section#contact a.social img {
	position: relative;
	display: inline-block;
	width: 3em;
	height: 3em;
	margin: 0.1em 1em;
	padding: 0;
	opacity: 1;
	transition: opacity 0.3s ease;

	/* transition hack */
	outline: 0px solid transparent;
}

section#contact a.social:hover img,
section#contact a.social:active img,
section#contact a.social:focus img {
	opacity: 0.75;
}

footer {
	position: relative;
	width: 100%;
	height: auto;
	text-align: center;
	overflow: hidden;
}

footer img {
	position: relative;
	width: 100%;
	height: auto;
	z-index: 1;
}

footer div.content {
	position: absolute;
	width: 100%;
	max-width: 100%;
	left: 0;
	margin: 0;
	padding: 0;
	color: #ffffff;

	top: 60%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////// MEDIA QUERIES ////////////////////////////////////////////////////////////////////// */

@media all and (max-width: 1600px) {
	html,
	body {
		font-size: 18px;
	}
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

@media all and (max-width: 1366px) {
	html,
	body {
		font-size: 17px;
	}

	div.content {
		padding: 2em 0 4em;
	}
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

@media all and (max-width: 1280px) {
	html,
	body {
		font-size: 16px;
	}

	div.content {
		padding: 2em 0 4em;
	}
}
