/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	font-family: 'Montserrat', sans-serif;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*, *:before, *:after {
	box-sizing:  border-box;
}
body {
	background-image: url("../images/background.jpeg");
	background-attachment: fixed;
}
img {
	max-width: 100%;
}

/* -------------------------- */
/* typography */
h1 {
	font-size: 2.625rem;
	line-height: 4.125rem;
	font-weight: 500;
	letter-spacing: 3px;
	text-align: center;
	/*margin-bottom:  2rem;*/
	color: #fff;
  text-transform: uppercase;
}
h1 a {
	text-decoration:  none;
	color: #fff;
}
h2{
	font-size: 2.0625rem;
	line-height: 3.3125rem;
	font-weight: 500;
	letter-spacing: 1px;
	color: #fff;
	margin-bottom: 1rem;
}
h3{
	font-size: 1.625rem;
	line-height: 2.6825;
	font-weight: 800;
	letter-spacing: 1px;
	/*margin-bottom: 1.5rem;*/
	color: orange;
}
h4 {
	font-size: 1.25rem;
	line-height: 2.125rem;
	font-weight: 500;
	color: #fff;
	letter-spacing: .25px;
	/*margin-bottom: .5rem;*/
}
h5 {
	font-size: 1rem;
	line-height: 1.75rem;
	font-weight: 500;
}
h6 {
	font-size: 0.8125rem;
	line-height: 1.5rem;
}
p, main a {
	font-size: 1rem;
	font-weight: 500;
	color: #fff;
	margin-bottom: 1rem;
	line-height: 1.5rem;
  transition: color .4s ease;
}
main a:hover {
  color: orange;
}
/*ul p {
  margin-bottom: 0;
}*/
/*ul li a:last-child {
	margin-top: 1rem;
}*/
/* ------------------------ */
/* Header section */
header {
	width:  100%;
	min-height:  15vh;
	padding: 2rem 0;
}
nav {
	width:  100%;
	display:  flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
nav a {
	position: relative;
	color:  #fff;
	padding: 0 1rem 1rem;
	text-decoration:  none;
	text-transform:  lowercase;
	letter-spacing:  2px;
	transition: transform .3s ease, color .3s ease;
}
nav a.active {
	color: orange;
}
nav a:last-child {
	padding-bottom: 0;
}
@media only screen and (min-width: 540px) {
  header h1 a { transition: color .3s ease; }
	header h1 a:hover { color: orange; }
  nav { flex-direction: row; }
  nav a { padding: 1rem; }
  nav a:last-child { padding-bottom: 1rem; }
  header nav a:hover {
    color: orange;
  }
  nav a:hover {
  	transform: translateY(-5px);
  	transition-duration: .8s;
  }
}

/* ------------------------ */
/* main containers */
section {
	width:  100%;
	min-height: 80vh;
	display: flex;
	justify-content: center;
	align-items:  center;
}
main {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: 4rem 1rem 4rem;
}
.about main {
  max-width: 650px;
  text-align: justify;
}
footer {
	position: fixed;
	justify-content: center;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: orange;
	color: white;
	text-align: left;
}

/* ------------------------ */
/* shows */
.shows {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.show {
  width: 100%;
  padding: 1rem;
}

@media only screen and (min-width: 600px) {
  .show {
    width: 50%;
    padding: 1rem;
  } 
}

/* ------------------------ */
/* dates */
li {
	margin-left:  1rem;
	margin-bottom: 1.25rem;
}
.dates li:last-child {
	margin-bottom:  0;
}
.dates a {
  display: block;
  margin-bottom: 0;
}
.dates li:after {
  content: '---';
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.75rem;
  text-decoration: none;
}
.dates__info p:nth-child(2) {
	margin-bottom: 0;
}
.list-break {
	margin: 1.25rem 0;
}
/* ------------------------ */
/* contact */
.contact main {
	padding-top: 0;
}
.contact h2 {
	text-align:  center;
}