/**
 * Bits appropriated liberally from:
 * https://github.com/necolas/normalize.css/blob/master/normalize.css
 */
body {
    margin: 0;
    cursor: default;
    background: #1b1b1b;
    color: #fff;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

/**
 * Add the correct display in IE 9-
 */

section { display: block; }
/**
 * 1. Remove the gray background on active links in IE 10
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+
 *
 * Behaviour lifted from:
 * http://tobiasahlin.com/blog/css-trick-animating-link-underlines
 */
a {
    background-color: transparent; /* 1 */
    -webkit-text-decoration-skip: objects; /* 2 */
    text-decoration: none;
    display: inline-block;

    color: #fff;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}
a:hover { color: #D0001F }
h2 {
    font-family: "Oswald";
    color: #fff;
    font-size: 38px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}
.clear { clear: both }
/* Layout */
.section {
    width: 80%;
    margin: 0 auto;
}
.section.content {
    padding: 60px 0;
}
.section.content p {
    line-height: 25px;
}
.darkbg { background: #1c1c1c }
.lightbg { background: #2a2a2a }
/* Hero */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url(../images/hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 20%;
    background-position-y: 0px;
}
.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8;
    width: 100%;
    height: 100%;
    background-image: -webkit-radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.25));
    background-image: radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.25));
}
.hero img {
    width: 180px;
    height: 180px;
}
/* Nav */
.nav {
    padding: 20px 0px;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
    background-color:rgba(0, 0, 0, 0);
}
.nav img { width: 278px }
.nav.show { background-color:rgba(0, 0, 0, 1) }
.nav ul {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    margin: 0;
    padding: 0;
    float: right;
    line-height: 34px;
}
.nav ul li {
    list-style-type: none;
    float: left;
    margin: 0 0 0 25px;
}
.nav ul li.first { margin: 0 }

@media only screen and (max-width: 960px) {
    .nav { padding: 20px 0px 5px 0 }
    .nav .section { text-align: center }
    .nav ul {
        font-size: 15px;
        margin: 5px auto 0 auto;
        text-align: center;
        float: none;
        display: inline-block;
    }
    .nav ul li { margin: 0 0 0 12px }
}
/* Live */
.show-row {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px dashed #333;
}
.show-row.last {
    border: 0;
}
.date {
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
    float: left;
    padding: 10px 20px;
    margin-right: 20px;
    border-right: 2px solid #444;
}
.location {
    display: inline-block;
    float: left;
    padding: 16px 0;
}
.date span, .location span { color: #888 }
.link {
    display: inline-block;
    float: right;
    padding: 16px 0;
}
@media only screen and (max-width: 750px) {
    .date {
        border: 0;
        padding-left: 0;
        display: block;
        float: none;
    }
    .location {
        display: block;
        float: none;
    }
    .link {
        display: block;
        float: none;
    }
}
/* Music */
#music {
    background-image: url(../images/hero2.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: 50%;
}
#music iframe { margin: 20px 0 0 0 }
/* Gallery */
#gallery .gallery-wrapper img { opacity: 1 }
#gallery .gallery-wrapper img:hover { opacity: 0.75 }
.grid-sizer,
.grid-item {
    float: left;
    width: 33.333%;
}
@media only screen and (max-width: 600px) {
    .grid-sizer, .grid-item {
        width: 100%;
        margin-bottom: 10px;
    }
}
/* Videos */
#videos h2 { margin-bottom: 60px }
#videos .embed-responsive {
    max-width: 1360px;
    width: 80%;
    margin: auto;
    -webkit-box-shadow: 0 0 10px 0 #131313;
    box-shadow: 0 0 10px 0 #131313;
}
.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}
.embed-responsive-16by9::before { padding-top: 56.25% }
.embed-responsive::before {
    display: block;
    content: "";
}
.embed-responsive .embed-responsive-item, .embed-responsive iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
#videos .embed-responsive iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
#videos .video-subtitle {
    margin: 20px 0 60px 0;
    text-align: center;
}
/* Contact */
#contact {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#contact h2 { margin-bottom: 50px }
#contact p i {
    color: #fff;
    font-size: 42px;
    display: inline-block;
    margin-left: 40px;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}
#contact p i:hover { color: #D0001F }
#contact p i.first { margin: 0 }
/* Footer */
footer {
    color: #666;
    background: #111;
    font-size: 14px;
    font-family: 'Oswald', sans-serif;
    text-align: center;
}
footer .section.content {
    padding: 30px 0 !important;
}
