@font-face {
    font-family: 'AdLib BT';
    src: url('AdLibBT-Regular.woff2') format('woff2'),
         url('AdLibBT-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
  /*font-family: 'Roboto Slab', georgia, serif;*/
  font-family: 'Patua One', georgia, serif;
  color: #2c2c2c;
  background: #f6f6f6;
  padding-bottom: 4rem;
}


header {
  display: block;
  width: 100%;
  padding: 2rem 0;
  
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #f6f6f6;
  
  z-index: 1;
  transition: padding .25s ease-in-out;
}
header.fixed {
  padding: 0.5rem 0;
  transition: padding .25s ease-in-out;
}

header img {
  transition: transform .25s ease-in-out;
  transform-origin: left;
  float: left;
  max-width: 200px;
}
header.fixed img {
  transform: scale(0.75);
  transform-origin: left;
  transition: transform .25s ease-in-out;
}
header nav {
  display: none;
}
@media (min-width: 992px) {
  header nav {
    display: block;
    float: right;
    text-align: right;
  }
}


header nav > ul {
  margin: 8px 0 0;
  padding: 0;
  font-family: 'AdLib BT', cursive;
}

header nav > ul > li {
  display: inline-block;
  margin-left: 1.6rem;
}
header nav > ul > li:first-of-type {
  margin-left: 0;
}

header nav > ul > li > a {
  text-decoration: none;
  color: #2c2c2c;
  transition: color .25s ease-in-out;
}
header nav > ul > li > a:hover,
header nav > ul > li > a:focus 
{
  color: #fe0000;
  text-decoration: none;
  transition: color .25s ease-in-out; 
}
header nav > ul > li > a.buy-album {
  background: #000;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}
header nav > ul > li > a.buy-album:hover,
header nav > ul > li > a.buy-album:focus 
{
  color: #fff;
  background-color: #fe0000;
  transition: background-color .25s ease-in-out; 
}

header .mobile-menu { 
  display: block;
  text-align: right;
}
header .mobile-menu a {
  position: relative;
  font-size: 30px;
  border-radius: 5px;
  color: #fff;
  padding: 0;
  z-index: 3;
  display: inline-block;
  width: auto;
  margin-top: -5px;
}
@media (min-width: 992px)
{  
  header .mobile-menu { 
    display: none;
  }
}
.mobile-nav-links {
  display: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


.slicknav_nav {
  padding: 1rem 0 0;
  list-style-type: none;
  margin-bottom: 0;
}
.slicknav_nav li {
  margin: .5rem 1rem;
}
.slicknav_nav a {
  color: #2c2c2c;
  display: block;
}

button {
  box-shadow: none !important;
  outline: none !important;
}

button
{
  font-family: 'AdLib BT', cursive;
  color: #fff;
  background: #000;
  padding: 0.25rem 1rem;
  font-size: 1.2rem;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all .25s ease-in-out;
  margin: 0.5rem;
}
button:hover,
button:focus
{
  transform: scale(1.1);
  /*
  background: #fff;
  color: #000;
  */
  transition: all .25s ease-in-out;
  cursor: pointer;
}
button.inverse {
  background: #fff;
  color: #000;
}
button.inverse:hover,
button.inverse:focus
{
  /*
  color: #fff;
  background: #000;
  */
}
button.more-articles {
  display: block;
  margin: 0 auto;
  width: 11rem;
}

section {
  padding: 3rem 1rem;
  overflow: hidden;
}
@media (min-width: 576px) {
  section {
    padding: 3rem;
  }
}

section h2 {
  font-family: 'AdLib BT', cursive;
  text-align: center;
  font-weight: 300;
  color: #000;
  margin-bottom: 1rem;
  font-size: 2.2rem;
  /*
  text-shadow: #666 0px 1px 0px;
  text-transform: uppercase;
  */
}

.cover {
  background-image: url(./images/background.jpg);
  background-attachment: fixed;
  background-repeat: none;
  background-size: cover;
}

.cover.top {
  background-position: top;  
}

.cover.bottom {
  background-position: bottom;  
}

.gigs {
  position: relative;
  background-image: url(./images/stage-colour.jpg);
  background-attachment: fixed;
  background-repeat: none;
  background-size: cover;  
  background-position: center;
  color: #fff;  
}
.gigs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: #000;
}
.gigs h2 {
  color: #fff;
  margin-bottom: 2rem;
}

.videos {
  position: relative;
  background-image: url(./images/stage-closeup.jpg);
  background-attachment: fixed;
  background-repeat: none;
  background-size: cover;  
  background-position: top;
  color: #fff;  
}
.videos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: #000;
}
.videos h2 {
  color: #fff;
  margin-bottom: 2rem;
}

.videos a {
  font-family: 'AdLib BT', cursive;
  text-align: center;
  color: #bbb;
  transition: color .25s ease-in-out;
}
.videos a:hover,
.videos a:focus
{
  color: #fff;
  text-decoration: none;
  transition: color .1s ease-in-out;
}
.videos img {
  max-width: 100%;
  width: 100%;
  box-shadow: #666 0 0 1px 1px;
  opacity: 0.8;
  transition: all .25s ease-in-out;
}
.videos a:hover img,
.videos a:focus img
{
  box-shadow: #fff 0 0 3px 2px;
  opacity: 1;
  transition: all .1s ease-in-out;
}

.album-cover {
  margin-top: 110px;
  padding: 0;
}
.album-cover > div {
  background: #fff9;
  padding: 3rem 0;
}
.album-cover img {
  margin: 0 auto; 
  width: 440px; 
  max-width: 100%;
  display: block;
}
@media (min-width: 768px) {
  .album-cover img {
    margin: 0 0 0 auto; 
  }  
}


.banner-text {
  text-align: center;
}
.banner-text > h1 {
  font-size: 4.9vw;
  margin-top: 3rem;
  line-height: 1.4em;
  text-shadow: #fff 1px 1px 1px;
  margin-bottom: 0.8em;
  background: #fff;
  margin-left: -15px;
  margin-right: -15px;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.banner-text > h1 > b {
  font-family: 'AdLib BT', cursive;
  font-weight: normal;
  font-size: 1.8em;
  line-height: 1.2em;
  display: block;
  margin-bottom: 0.2em;
}
@media (min-width: 576px) {
  .banner-text > h1 {
    font-size: 1.5rem;
    margin-top: 3rem;
    margin-right: -1000px;
    padding-right: 1000px;
    margin-left: -100px;
    padding-left: 100px;
    -webkit-clip-path: polygon(80px 0, 100% 0, 100% 100%, 80px 100%, 50px 50%);
    clip-path: polygon(80px 0, 100% 0, 100% 100%, 80px 100%, 50px 50%);
  }    
  .banner-text > h1 > b {  
    font-size: 1.2em;
    margin-bottom: 0.7rem;
  }
}
@media (min-width: 768px) {
  .banner-text > h1 {
    font-size: 1.3rem;
    margin-top: 2rem;
  }  
}
@media (min-width: 992px) {
  .banner-text > h1 {
    font-size: 1.7rem;
    margin-top: 4rem;
  }  
}
@media (min-width: 1200px) {
  .banner-text > h1 {
    font-size: 1.8rem;
    margin-top: 5rem;
  }  
}

.content-box {
  background: #ffffffe0;
}
.content-box-dark {
  background: #00000080;
  color: #fff;
}
.content-box,
.content-box-dark
{
  padding: 2rem 1rem;
  margin: 3rem inherit;
}
@media (min-width: 576px) {
  .content-box,
  .content-box-dark
  {
    padding: 3rem;
    margin: 3rem inherit;
  }  
}

.news-article-list {
  margin: 0; 
  padding: 0;
  list-style: none;
}
.news-article-list > li {
  border-bottom: 1px solid #b4b4b4;
  padding: 1rem 0;
}
.news-article-list > li:last-of-type {
  border-bottom: none;
}
.news-article-list > li > a {
  font-family: 'AdLib BT', cursive;
  color: #000;
}
.news-article-list > li > a:hover,
.news-article-list > li > a:focus
{
  text-decoration: underline;
}
.news-article-list > li > time {
  font-size: 0.9rem;
  color: #666;
}


.gig-list {
  list-style-type: none;
  padding: 0;
}
.gig-list > li {
  clear: both;
  margin: 1rem 0;
  display: flex;
}
.gig-list > li > time {
  width: 115px;
  margin-right: 15px;
  text-align: center;
  font-family: 'AdLib BT', cursive;
}
.gig-list > li > div {
  width: calc( 100% - 130px );
}
.gig-list > li > div > .city 
{
  font-family: 'AdLib BT', cursive;
}
.gig-list > li > div > .details
{
  font-size: 0.9rem;
  color: #bbb;
}

.contact {
  position: relative;
  background-image: url(./images/sofa.jpg);
  /*background-attachment: fixed;*/
  background-repeat: none;
  background-size: cover;  
  background-position: top;
  color: #fff;  
}
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: #000;
}
@media (min-width:992px)
{
  .contact {
    background-position: 0 -90px;
  }  
}
.contact h2 {
  color: #fff;
}
.contact p {
  text-align: center;
}
@media (min-width: 768px) {
  .contact h2 {
    text-align: left;
  }
  .contact p {
    text-align: left;
  }

}
.contact img {
  display: block;
  margin: 0 auto;
}
.contact a {
  color: #fff;
}
.contact a:hover,
.contact a:focus 
{
  color: #fff;
  text-decoration: underline;
}

.social-networks {
  list-style-type: none;
  padding: 0;
  text-align: center;
  margin-bottom: 3rem;
}
.social-networks > li {
  display: inline-block;
  padding: 0;
  margin: 0;
}
.social-networks > li > a {
  display: block;
  font-size: 2em;
  background: #000;
  color: #fff;
  width: 57px;
  border-radius: 25px;
  transition: all .25s ease-in-out;
  padding: 0.25rem;
  margin: 0 0.25rem;
  text-align: center;
}
.social-networks > li > a:hover,
.social-networks > li > a:focus
{
  background: #fff;
  color: #000;
  transition: all .25s ease-in-out;
}
.social-networks > li:first-of-type > a {
  margin-left: 0;
}
.social-networks > li:last-of-type > a {
  margin-right: 0;
}

@media (min-width: 768px) {
  .social-networks {
    text-align: left;
  }
}




.fa-spin {
  animation: fa-spin 1.333s infinite linear; 
}

.modal-header {
  background: #000;
  color: #fff;
}
.modal-header h5 {
  font-weight: 300;
  font-size: 1.3rem;
}
.article-title {
  font-family: 'AdLib BT', cursive;
  margin-bottom: 0.5rem;
  display: block;
}
.article-date {
  display: block;
  font-size: 0.9rem;
}
.modal-content .error-info {
  color: #fe0000;
  display: none;
}
.modal-content .error-info.show {
  display: block;
}

.close, .close:hover {
  background: #000;
  color: #fff;
  text-shadow: none;
}

.mb-mobile {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .mb-mobile {
    margin-bottom: 0;
  }
}

.only-tiny {
  display: block;
}
.not-tiny {
  display: none;
}
@media (min-width: 576px) {
  .only-tiny {
    display: none;
  }
  .not-tiny {
    display: inline-block;
  }
}

.only-desk {
  display: none;
}
@media (min-width: 768px) {
  .only-desk {
    display: block;
  }
}

.clear {
  clear: both;
}

@keyframes play-button {
    0% { color: #000; }
   50% { color: #0c0; }
  100% { color: #000; }
}

.audio-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f6f6f6;
  text-align: center;
  padding: 3px;
}
.audio-title,
.audio-album 
{
  font-size: 0.8rem;
  height: 1.2rem;
}
.audio-player a {
  color: #888;
}
.audio-player a[href="#play"] {
  color: #090;
}
.audio-player a[href="#play"].paused {
  animation-name: play-button;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
}
.audio-player a:hover, 
.audio-player a:focus 
{
  color: #000;
}

/*
:focus {
  outline: #fe0000 auto 5px;
}
*/