@font-face {
	font-family: Freeway;
	src: url('/css/freewaygothic.ttf');
}

body {
	font-family: Freeway, sans-serif;
	font-size: 1vw;
	color: #333333;
	margin: 0;
	overflow-x: hidden;
}

a, a:hover {
	text-decoration: none;
	transition: color 0.2s border 0.2s;
}

a {
	color: #040072;
	border-bottom: solid 4px transparent;
	transition: color 0.2s border 0.2s;
}

a:hover {
	color: #FF7600;
	border-bottom: solid 4px #FF7600;
	transition: color 0.2s border 0.2s;
}

input[type=submit]:disabled {
	opacity: 0.5;
	cursor: no-drop;
}

hr {
	display: none;
}

.header {
	height: 20vh;
	position: relative;
}

.header .old-school-button {
	position: absolute;
	top: -335px;
	right: -335px;
	border-radius: 50%;
	height: 400px;
	width: 400px;
	background-color: #040072;
	overflow: hidden;
	color: #ffffff;
	display: block;
	box-sizing: border-box;
	transition: all 0.2s;
	border: 0;
	z-index: 100;
}

.header .old-school-button:hover {
	transition: all 0.5s;
	border: 0;
	top: -200px;
	right: -200px;
}

.header .old-school-button .words {
	position: absolute;
	top: 60%;
	right: 60%;
	width: 50%;
	text-align: right;
	transition: color 0.2s;
}

.header .banner {
	display: none;
}

.header .old-school-button .words:hover {
	color: #FF7600;
	transition: color 0.2s;
}

.header:after {
	content: '';
	display: table;
	clear: both;
}

.header h1 {
	margin: 0;
	font-size: 3vw;
	color: #ababab;
	text-transform: uppercase;
	letter-spacing: 3px;
	display: block;
	position: absolute;
	top: 50%;
	left: 5vw;
	transform: translateY(-50%);
	transition: color 0.5s;
}

.header h1:hover {
	transition: color 0.5s;
	color: #FF7600;
}

.header .menu {
	list-style: none;
	margin: 0;
	padding: 0;
	float: right;
	text-transform: uppercase;
	position: absolute;
	top: 50%;
	right: 4vw;
	transform: translateY(-50%);
	font-size: 1.3vw;
}

.header .menu li {
	display: inline-block;
	margin-right: 2.2vw;
}

.header .menu li:last-child {
	margin-right: 0;
}

.main-photo {
	height: 30vh;
	width: 100vw;
	background-size: cover;
	background-position: center;
	filter: saturate(30%);
	transition: filter 0.5s;
	margin-bottom: 10vh;
}

.main-photo:hover {
	filter: saturate(100%);
	transition: filter 0.5s;
}

.headline {
	font-size: 10vh;
	margin-bottom: 10vh;
	text-align: center;
	padding-left: 5vmin;
	padding-right: 5vmin;
}

.shows-container {
	width: 40vw;
	margin: 0 auto;
	margin-bottom: 10vh;
}

.shows-container h3 {
	display: block;
	margin: 0;
	font-weight: normal;
	text-align: center;
	text-transform: uppercase;
	color: #ababab;
	font-size: 2.5vw;
	margin-bottom: 10vh;
}

.shows-container .show-container {
	margin-bottom: 10vh;
	line-height: 1.5;
}

.shows-container .show-container .date {
	color: #FF7600;
	font-size: 2vw;
	line-height: 0.95;
}

.shows-container .show-container .city {
	font-size: 1.2vw;
	color: #999999;
	float: right;
}

.shows-container .show-container .venue {
	font-size: 1.6vw;
}

.bandcamp-embed {
	margin: 0 auto;
	width: 350px;
	margin-bottom: 10vh;
}

.about {
	width: 50vw;
	margin: 0 auto;
	margin-bottom: 10vh;
	line-height: 1.6;
	font-size: 1vw;
}

.photos-container {
	width: 50vw;
	margin: 0 auto;
	text-align: justify;
	text-align-last: justify;
}

.photos-container .photo-container {
	margin-bottom: 10vh;
	display: inline-block;
	width: 40%;
	padding-bottom: 40%;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	filter: saturate(30%);
	transition: filter 0.2s;
	border-bottom: 0;
}

.photos-container .photo-container:hover {
	filter: saturate(100%);
	transition: filter 0.2s;
	border-bottom: 0;
}

.contact-container {
	width: 50%;
	margin: 0 auto;
	margin-bottom: 10vh;
	text-align: center;
}

.contact-container h3 {
	display: block;
	margin: 0;
	font-weight: normal;
	text-align: center;
	text-transform: uppercase;
	color: #ababab;
	font-size: 2.5vw;
	margin-bottom: 10vh;
}

.contact-container .contact-row {
	margin-bottom: 1.5vh;
}

.contact-container .contact-input {
	width: 100%;
	box-sizing: border-box;
	padding: 8px;
	font-size: 1.2vw;
	resize: none;
	height: 180px;
	font-family: Freeway;
	color: #999999;
	border: solid 1px #999999;
	border-radius: 2px;
	transition: all 0.2s;
	outline: none;
}

.contact-container .contact-input:hover, .contact-container .contact-input:focus {
	border-color: #333333;
	color: #333333;
	transition: all 0.2s;
}

.contact-container .contact-name, .contact-container .contact-email {
	width: 100%;
	box-sizing: border-box;
	padding: 8px;
	font-size: 1.2vw;
	resize: none;
	font-family: Freeway;
	color: #999999;
	border: solid 1px #999999;
	border-radius: 2px;
	transition: all 0.2s;
	outline: none;
}

.contact-container .contact-name:hover, .contact-container .contact-email:hover, .contact-container .contact-name:focus, .contact-container .contact-email:focus {
	border-color: #333333;
	color: #333333;
	transition: all 0.2s;
}

.contact-button {
	color: #ffffff;
	background-color: #FF7600;
	height: 10vw;
	width: 10vw;
	line-height: 10vw;
	text-align: center;
	font-weight: normal;
	border: 0;
	border-radius: 50%;
	font-family: Freeway;
	font-size: 1.3vw;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.2s;
	outline: none;
}

.contact-button:not(:disabled):hover {
	background-color: #040072;
	transition: background-color 0.2s;
}

.contact-error {
	border: solid 10px #ff0000;
	padding: 20px;
	font-size: 1.5vw;
	margin-bottom: 5vh;
	display: none;
}

.contact-success-container {
	display: none;
	color: #00cc00;
	font-size: 2vw;
	text-align: center;
	margin-bottom: 20vh;
}

.copyright {
	font-size: 0.8vw;
	letter-spacing: 2px;
	text-align: center;
	margin-bottom: 5vh;
}

.contact-container .contact-loading {
	display: none;
	width: 10vw;
	margin: 0 auto;
}

.links-container {
	text-align: center;
	margin-bottom: 10vh;
}

.links-container .link {
	display: inline-block;
	height: 12vw;
	width: 12vw;
	margin: 1vw;
	vertical-align: middle;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: opacity 0.2s;
	border: 0;
}

.links-container .link:hover {
	border: 0;
	opacity: 0.7;
	transition: opacity 0.2s;
}

.old-school-contact-container, .old-school-guitar-container, .old-school-notes-container, .old-school-levels-container, .old-school-view-count {
	display: none;
}
