@charset "utf-8";
/* CSS Document */

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

html, body{
	overflow-x: hidden; /* prevents horizontal scroll bars */
	-webkit-tap-highlight-color: rgba(0,0,0,0); /* disable webkit tap highlight */
  	-webkit-overflow-scrolling: touch;
}

body {
	background-color: #dd542f;
	background-image: url(../img/background.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;	
}

/* Links */

a{
	color: #000;
	text-decoration: none;
}

a:hover{
	color: #FFF;
}

/* Headings*/

h1{
	color: #FFF;
	font-size: 2.4em;
}

h2{
	color: #FFF;
	border-bottom: 1px solid #D9D9D9;
	padding: 0 0 5px 0;
}

/* Lists */

nav ul{
    margin: 0;
    padding: 0;
}

/* Container */

#container{
	position: relative;
	padding: 20px 20px;
}

/* Menu wrapper */
#wrapper{
	margin-left: auto;
	margin-right: auto;
	clear: none;
	float: none;
	overflow: hidden;
}

/* Menu Button */

.menu-btn{
	width: 50px;
	height: 50px;
	padding: 10px;
	margin-bottom: 20px;
	margin-right: 20px;
	background: #982510;
	cursor: pointer;
	clear: both;
	margin-left: 0;
	float: left;
	display: block;
	border-radius: 5px;
	-webkit-transition: all .5s ease-in-out 0s;
	-o-transition: all .5s ease-in-out 0s;
	transition: all .5s ease-in-out 0s;
}

.menu-btn:hover{
	background: #64180A;
	border-radius: 0px;
}

#hamburger{
	width: 30px;
	height: 30px;
}

/* Logo Home Button */
.logo-btn{
	width: 185px;
	height: 50px;
	margin: 0 0 20px 25px;
	background: #982510;
	cursor: pointer;
	float: left;
	display: block;
	clear: none;
	border-radius: 5px;
	-webkit-transition: all .5s ease-in-out 0s;
	-o-transition: all .5s ease-in-out 0s;
	transition: all .5s ease-in-out 0s;
}

.logo-btn:hover{
	background: #64180A;
	border-radius: 0px;
}

#bandname {
	width: 185px;
	height: 50px;
}

/* Footer */

footer{
	font-size: 0.9em;
	text-align: center;
}

footer i{
    font-size: 1.5em;
}

footer p{
	margin-bottom: 2px;
}

footer img{
	margin-left: 10px;
	margin-right: 10px;
	opacity: 0.8;
	-webkit-transition: all .5s ease-in-out 0s;
	-o-transition: all .5s ease-in-out 0s;
	transition: all .5s ease-in-out 0s;
}

footer img:hover{
	opacity: 1;
}


/* ----------Content for all pages begins here------------ */


/* HOME PAGE Girl */
#girlwrap {
	width: 100%;
	text-align: center;
}

#girl {
	width: 100%;
	height: auto;
	max-width: 700px;
}

/* MUSIC PAGE Album cover and Download button */

#box1 {
	width: 280px;
	height: 140px;
	margin: 0 auto;
}

#albumcover {
	clear: both;
	margin-left: 0;
	margin-right: 10px;
	float: left;
	box-shadow: 0px 1px 4px rgba(0, 0, 0, .75);
    -moz-box-shadow: 0px 1px 4px rgba(0, 0, 0, .75);
    -webkit-box-shadow: 0px 1px 4px rgba(0, 0, 0, .75);
} 

#downloadbutton {
	width: 135px;
	height: 135px;
	display: inline-block;
	background: #982510;
	color:#FFFFFF;
	letter-spacing: 2px;
	font-weight: bold;
	text-decoration: underline;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .15), 0 1px 0 rgba(255, 255, 255, .04);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .15), 0 1px 0 rgba(255, 255, 255, .04);
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .15), 0 1px 0 rgba(255, 255, 255, .04);
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	
	text-align: center;
	vertical-align: middle;
	line-height: 135px;
	-webkit-transition: all .5s ease-in-out 0s;
	-o-transition: all .5s ease-in-out 0s;
	transition: all .5s ease-in-out 0s;
	cursor: pointer;	
}

#downloadbutton:hover {
	background: #64180A;
    box-shadow: inset 0px 0px 20px rgba(0, 0, 0, .2);
    -moz-box-shadow: inset 0px 0px 20px rgba(0, 0, 0, .2);
    -webkit-box-shadow: inset 0px 0px 20px rgba(0, 0, 0, .2);
}

/* SHOW PAGE stuffsssss*/
.showbutton {
	display: inline-block;
	width: 50%;
	min-width: 280px;
	color: #cdcdcd;
	background: transparent url(../musicplayer/img/tracklist-more.png) repeat 0 0 scroll;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .15), 0 1px 0 rgba(255, 255, 255, .04);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .15), 0 1px 0 rgba(255, 255, 255, .04);
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .15), 0 1px 0 rgba(255, 255, 255, .04);
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	cursor: pointer;	
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
	clear: none;
	float: none;
	overflow: hidden;

	-webkit-transition: all .5s ease-in-out 0s;
	-o-transition: all .5s ease-in-out 0s;
	transition: all .5s ease-in-out 0s;
}

.showbutton:hover {
	color: #FFF;
    box-shadow: inset 0px 0px 20px rgba(0, 0, 0, .2);
    -moz-box-shadow: inset 0px 0px 20px rgba(0, 0, 0, .2);
    -webkit-box-shadow: inset 0px 0px 20px rgba(0, 0, 0, .2);
}

.datetime {
	width: 23%;
	height: 40px;
	clear: both;
	margin-left: 0;
	float: left;
	display: inline-block;
	text-align: center;
}

.venue {
	width: 37%;
	height: 40px;
	border-left: 2px ridge rgba(0, 0, 0, .1);
	border-right: 2px ridge rgba(0, 0, 0, .1);
	float: left;
	display: inline-block;
	clear: none;
	text-align: center;
}

.location {
	width: 40%;
	height: 40px;
	float: left;
	display: inline-block;
	clear: none;
	text-align: center;
}

/* Media Page */
.group3 {
	display: inline-block;
	overflow: hidden;
	margin-right: 20px;
	margin-bottom: 20px;
	border-radius: 100px;
	-moz-border-radius: 100px;
	-webkit-border-radius: 100px;
	
	-webkit-transition: all .5s ease-in-out 0s;
	-o-transition: all .5s ease-in-out 0s;
	transition: all .5s ease-in-out 0s;	
}

.group3:hover {
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
}

#box2 {
	text-align: center;
	display: inline-block;
}

/* Contact Page */
form {
    /* Just to center the form on the page */
    width: 280px;
	display: inline-block;
    /* To see the outline of the form */
	padding: 1em;
    border-radius: 1em;
	color:#FFFFFF;
	background: transparent url(../musicplayer/img/tracklist-more.png) repeat 0 0 scroll;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .15), 0 1px 0 rgba(255, 255, 255, .04);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .15), 0 1px 0 rgba(255, 255, 255, .04);
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .15), 0 1px 0 rgba(255, 255, 255, .04);
}

form div + div {
    margin-top: 1em;
}

label {
    /* To make sure that all label have the same size and are properly align */
    display: inline-block;
    width: 280px;
    text-align: left;
}

input, textarea {
    /* To make sure that all text fields have the same font settings
       By default, textareas have a monospace font */
    font: 1em sans-serif;

    /* To give the same size to all text field */
    width: 247px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    /* To harmonize the look & feel of text field border */
    border: 1px solid #999;
}

input:focus, textarea:focus {
    /* To give a little highlight on active elements */
    border-color: #000;
}

textarea {
    /* To properly align multiline text fields with their labels */
    vertical-align: top;

    /* To give enough room to type some text */
    height: 5em;

    /* To allow users to resize any textarea vertically
       It does not work on every browsers */
    resize: vertical;
}

.button {
    /* To position the buttons to the same position of the text fields */
    margin: 10px auto o auto;
}

#submitbutton {
    /* This extra margin represent roughly the same space as the space
       between the labels and their text fields */
    width: 100px;
	margin-left: 4px;
	color: #FFFFFF;
	background: #982510;
	border-radius: 6px;
	-webkit-transition: all .5s ease-in-out 0s;
	-o-transition: all .5s ease-in-out 0s;
	transition: all .5s ease-in-out 0s;	
}

#submitbutton:hover {
	background: #64180A;
}