/*
Light Gray: #e2e2e2
Beige: #e0c59a
Dark Gray: #312e29
*/

/* ---------------------------------------------------------- */
/* BASIC SETUP */
/* ---------------------------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

html  {
    background-color: #181818;
    color: #ccc;
    font-family: "Scope One", serif;
    font-size: 20px;
    font-weight: 300px;
    text-rendering: optimizeLegibility;
    -ms-overflow-style: scrollbar;
}

.clearfix {zoom: 1}
.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

body.is-loading *, body.is-loading *:before, body.is-loading *:after {
    -moz-animation: none !important;
    -webkit-animation: none !important;
    -ms-animation: none !important;
    animation: none !important;
    -moz-transition: none !important;
    -webkit-transition: none !important;
    -ms-transition: none !important;
    transition: none !important;
}

.scope-one-regular {
  font-family: "Scope One", serif;
  font-weight: 400;
  font-style: normal;
}


/* ---------------------------------------------------------- */
/* REUSABLE COMPONENTS */
/* ---------------------------------------------------------- */

section {
    padding: 0px 0px;
}



/*--------HEADINGS-------*/
h1,
h2,
h3  {
    font-weight: 300;
    
}

h1 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #fff;
    font-size: 240%;
    word-spacing: 4px;    
    letter-spacing: 1px;

}

h2 {
    font-size: 150%;
    word-spacing: 2px;
    text-align: left;
    margin-bottom: 10px;    
    letter-spacing: 1px;

}

h3 {
    font-size: 140%;
    margin-bottom: 15px;
}


/*--------PARAGRAPHS-------*/
.long-copy {
    line-height: 145%;
    width: 70%;
    margin-left: 15%;
    padding-bottom: 20px
}

.long-copy p {
   	font-size: 150%;
	line-height: 145%;
}

.box p {
    font-size: 90%;
    line-height: 145%;
}

/*--------LINKS-------*/
a:link,
a:visited {
    color: #888;
    text-decoration: none;
    padding-bottom: 1px;
}

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


/* ---------------------------------------------------------- */
/* NAVIGATION */
/* ---------------------------------------------------------- */
.section-main-nav {
	margin: 0;
    padding-top: 10px;
	padding-bottom: 10px;
	background-color: #e0c59a;
}

.main-nav {
    width: 100%;
    list-style: none;
    margin-top: 15px;
    text-align: center;
}

.main-nav li {
    display: inline-block;
    margin-left: 25px;
}

.main-nav li a:link,
.main-nav li a:visited {
    padding: 8px 0;
    color: #312e29;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 100%;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.2s;
}

.main-nav li a:hover,
.main-nav li a:active {
    border-bottom: 2px solid #570a0a;
}

/* ---------------------------------------------------------- */
/* HEADER */
/* ---------------------------------------------------------- */

header {
    background-image: url("img/header-photo.png");
    background-size: cover;
    background-position: center;
    height: 1200px;

}

.logo-box {
    width: 100%;
    float: left;
}



.logo {
    width: 50%;
    padding-top: 30px;
}

/* ---------------------------------------------------------- */
/* ABOUT */
/* ---------------------------------------------------------- */
.section-about {
    background-color: #181818;
	padding-top: 20px;
}

.quote {
    font-weight: 700;
    font-size: 90%
}

.author {
    font-size: 80%;
    line-height: 120%;
    font-style: italic;
    padding-left: 25px;
}

/* ---------------------------------------------------------- */
/* ARTISTS */
/* ---------------------------------------------------------- */

.section-artists {
    background-color: #e0c59a;
    padding: 15px;
}


/* ---------------------------------------------------------- */
/* CONTACT */
/* ---------------------------------------------------------- */

.section-contact {
    background-color: #312e29;
    width: 100%;
	padding-left: 40px;
	padding-right: 40px;
}

.section-contact h1 {
	color: #e0c59a;
}

/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #45a049;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

/* ---------------------------------------------------------- */
/* EVENTS */
/* ---------------------------------------------------------- */


.section-events {
    background-color: #e0c59a;
    width: 100%;
	padding-left: 40px;
	padding-right: 40px;
	margin: 0px;
}

.section-events h1 {
	color: #312e29;
}


/* ---------------------------------------------------------- */
/* FOOTER */
/* ---------------------------------------------------------- */

footer p {
    padding: 10px;
    font-size: 75%;
    text-align: center;
}


/*
Light Gray: #e2e2e2
Beige: #e0c59a
Dark Gray: #312e29
*/