/* Home page */

.logo img {
  -webkit-filter: drop-shadow(12px 12px 25px rgba(0, 0, 0, 0.5));
  filter: url(#drop-shadow);
  height: 100px;
  height: calc(10vw + 70px);
}

.logo {
  position: absolute;
  top: 30px;
  z-index: 2;
}

body {
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgb(23, 10, 30)),
    to(rgb(65, 44, 37))
  );
  background: linear-gradient(
    to bottom right,
    rgb(23, 10, 30),
    rgb(65, 44, 37)
  );
  /*  background: rgb(23, 10, 30); */
  min-height: 100vh;
  position: relative;
  padding-bottom: 200px; /* This is to avoid overlapping the footer */
}

.main {
  margin-top: 65px;
  position: relative;
}

#quotes {
  width: 80%;
  margin: 40px 10% 20px 10%;
  min-height: 150px;
  height: 360px;
  height: calc(500px - 35vw);
  position: relative;
}

blockquote {
  opacity: 0;
  z-index: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  -webkit-transition: opacity 0.5s ease-out 0s,
    -webkit-transform 0.5s ease-in 0s;
  transition: opacity 0.5s ease-out 0s, -webkit-transform 0.5s ease-in 0s;
  transition: opacity 0.5s ease-out 0s, transform 0.5s ease-in 0s;
  transition: opacity 0.5s ease-out 0s, transform 0.5s ease-in 0s,
    -webkit-transform 0.5s ease-in 0s;
}

#quotes .quote {
  color: rgb(213, 203, 219);
  font: 21px Helvetica, Arial;
  font-weight: lighter;
  font-style: italic;
  line-height: 30px;
}

#quotes blockquote p:before {
  content: "\201C";
}
#quotes blockquote p:after {
  content: "\201D";
}

#quotes blockquote:first-child {
  opacity: 1;
  z-index: 1;
}

#quotes blockquote:first-child + blockquote {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

cite {
  color: #ab978b;
}

.albumSale {
  margin: 40px 15%;
}

.col-md-6 {
  padding-top: 20px;
  text-align: center;
}

.albumSale .col-md-4 {
  padding-top: 20px;
  text-align: center;
} 

.videoHome {
  position: relative;
  width: 100%;
  z-index: 0;
  max-height: 350px;
  overflow: hidden;
}

.muteBtn {
  position: absolute;
  z-index: 2;
  left: 45%;
  top: 30%;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.muteBtn > .fa {
  font-size: 100px;
  color: rgba(0, 0, 0, 0.2);
}

video {
  width: 100%;
}

.main h2 {
  color: #eee;
  text-align: center;
}

/* Home news*/

.news {
  margin: 20px auto;
  width: 80%;
  padding: 20px;
  border-left: 5px solid #eee;
}

.news h3 {
  color: #eee;
  text-align: center;
}

.news h4 {
  text-align: center;
  color: rgb(213, 203, 219);
}

.news img {
  display: block;
  width: 90%;
  margin: 30px auto;
}

/* navbar  */

#brand {
  font-family: "Aldrich", "sans-serif";
  font-size: 2em;
}

.navbar-default {
  background: transparent;
  border-width: 0;
}

.navbar-default.scrolled {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(229, 212, 179, 0.95)),
    to(rgba(219, 203, 210, 0.95))
  );
  background: linear-gradient(
    to bottom,
    rgba(229, 212, 179, 0.95),
    rgba(219, 203, 210, 0.95)
  );
}

.navbar-default .navbar-brand {
  /* color: #333; */
  color: #ab978b;
}

.navbar-default.scrolled .navbar-brand {
  color: #777;
}

.navbar-default .navbar-brand:hover {
  color: white;
}

.navbar-default.scrolled .navbar-brand:hover {
  color: black;
}

.navbar-brand {
  font-size: 30px;
  line-height: 30px;
}

.nav {
  font-size: 20px;
  line-height: 35px;
}

.navbar-default .navbar-nav > li > a {
  line-height: 35px;
  color: #ab978b;
}

.navbar-default .navbar-nav > li > a:hover {
  color: white;
}

.navbar-default.scrolled .navbar-nav > li > a {
  color: #777;
}

.navbar-default.scrolled .navbar-nav > li > a:hover {
  color: #333;
}

.nav.navbar-nav .active {
  border: 3px solid #ab978b;
  border-bottom: none;
  border-top: none;
  padding: 15px 12px !important;
}

.scrolled .nav.navbar-nav .active {
  border: 3px solid #333;
  border-bottom: none;
  border-top: none;
}

/* fix for xiumi browser, this brakes the desktop home link in the navbar */

/* .navbar-collapse {
  position: relative;
  z-index: 3;
} */

/* we want the navbar to appear transparent only when it is not collapsed... */
@media (max-width: 768px) {
  .navbar-default {
    /* background: linear-gradient(
      to bottom,
      rgba(229, 212, 179, 0.95),
      rgba(219, 203, 210, 0.95)
    ); */
    background: rgba(0, 0, 0, 0.9);
    /* border-bottom-color: black; */
    border-width: 0;
  }
}

/* trying to fit on ipad... */
.navbar-default .navbar-nav .dropdown {
  display: none;
}

.navbar-default .navbar-nav .dropdown .dropdown-menu {
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1200px) and (min-width: 768px) {
  .navbar-default .navbar-nav .iPad {
    display: none;
  }
  .navbar-default .navbar-nav .dropdown {
    display: inline-block;
  }
}

/* photos */

#photosContainer {
  padding-top: 30px;
}

#photosContainer img {
  margin: 0;
  border-radius: 2px;
  min-height: 150px;
  width: 100%;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.photo {
  margin: 20px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.photo:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.photo.filter {
  -webkit-filter: grayscale(50%);
  filter: grayscale(50%);
}

.zoom {
  cursor: pointer;
  display: none;
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
  width: 100%;
  text-align: center;
  line-height: 60px;
}

.fa.fa-search-plus {
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.4);
  display: inline-block;
  font-size: 30px;
  color: white;
}
/* videos */

.videoBox {
  position: relative;
  width: 30%;
  min-width: 300px;
  margin: 20px auto;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Tour Dates page */

#tour-dates {
  margin-top: 50px;
}

.event {
  background-color: rgba(0, 0, 0, 0.4);
  color: #ab978b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-item-align: auto;
  align-self: auto;
  border: 2px solid black;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  overflow: hidden;
  margin-bottom: 5px;
}

.calendar {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgba(56, 56, 56, 0.69)),
    to(rgba(0, 0, 0, 1))
  );
  background: linear-gradient(
    to bottom right,
    rgba(56, 56, 56, 0.69) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  height: 112px;
  padding: 0 10px;
  width: 90px;
  position: relative;
  margin: 0;
}

.calendar li {
  display: inline-block;
  font-family: Helvetica, Arial, sans-serif;
  list-style-type: none;
}

/* transform-origin is not working on some phone native browser */

.month {
  display: block;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  color: #999;
  font-size: 16px;
  position: absolute;
  left: 30px;
  bottom: 20px;
}

@media only screen and (max-width: 600px) {
  .month {
    display: block;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translateX(-50%) translateY(50%) rotate(-90deg);
    transform: translateX(-50%) translateY(50%) rotate(-90deg);
    left: 20px;
    bottom: 55px;
  }
}

.day {
  display: block;
  color: white;
  font-size: 60px;
  position: absolute;
  right: 10px;
  bottom: 0px;
}

.year {
  display: block;
  font-weight: bold;
  font-size: 16px;
  color: #999;
  position: absolute;
  right: 15px;
  top: 20px;
}

.event-description {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 20px;
  padding: 20px 10px;
  text-align: center;
}

.event-description > h2,
h5 {
  margin: 0px;
}

.ticket {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 30px;
  display: block;
  min-width: 100px;
  padding: 20px 40px 20px 10px;
  font-size: 20px;
  line-height: 60px;
}

#tour-dates h3 {
  color: white;
}

#tour-dates p {
  color: #ab978b;
}

.timeline {
  padding: 20px 10px;
}

.venue {
  color: #ab978b;
}

@media (max-width: 600px) {
  .event-description {
    width: 180px;
    font-size: 15px;
  }

  .event-description h2 {
    font-size: 24px;
  }

  .ticket {
    min-width: 100px;
    padding: 5px 10px;
    font-size: 20px;
    line-height: 10px;
  }
}

/* Contact page*/

.contact-form {
  margin-top: 20px;
  padding: 50px 10px;
  background-color: rgba(255, 255, 255, 0.7);
  text-align: center;
  border-radius: 10px;
}
.contact-form form {
  margin: 20px 15%;
}

.form-group {
  margin-bottom: 40px;
  margin-top: 40px;
}

.form-control {
  border-radius: 0;
  border-color: #ccc;
  border-width: 0 0 2px 0;
  border-style: none none solid none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #ab978b;
}

.btn-send {
  background: 0 0 #ffffff;
  border: 1px solid #ab978b;
  border-radius: 3px;
  color: #2f323a;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  line-height: inherit;
  margin: 30px 0;
  padding: 10px 50px;
  text-transform: uppercase;
  -webkit-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}

.btn-send:hover,
.btn-send:active,
.btn-send:focus {
  border-color: #ab978b;
  color: #ab978b;
}

/* suscribe partial */

.footer {
  position: absolute;
  bottom: 0;
  border-top: 1px solid gray;
}

.visible-footer > * {
  display: inline-block;
  margin: 20px;
}

.visible-footer > p {
  color: gray;
  font-weight: normal;
  font-size: 13px;
}

.footer a {
  color: #6e93b3;
}

/*  Albums Lyrics */

.albums {
  margin-top: 50px;
}

.albums img {
  display: block;
  margin: 30px auto;
  min-width: 200px;
  min-height: 200px;
  width: 20vw;
  height: 20vw;
}

.albums ul {
  padding-left: 0;
}

.albums li {
  text-align: center;
  list-style-type: none;
}

.albums a {
  color: #ab978b;
}

/* paroles */

#lyrics-cont {
  margin-top: 50px;
  color: rgb(173, 164, 178);
}

#lyrics-cont img {
  width: 160px;
  height: 160px;
}

#lyrics-cont .btn {
  display: block;
  margin: 20px;
  width: 100px;
  color: rgb(173, 164, 178);
  background-color: black;
}

#lyrics-cont .hide {
  display: none;
}

.album {
  margin-right: 20px;
  margin-bottom: 20px;
}

.writer {
  font-style: italic;
}

/* biography */

.text-container {
  text-align: justify;
  color: rgb(213, 203, 219);
  font: 21px Helvetica, Arial;
  font-weight: lighter;
  line-height: 30px;
  max-width: 900px;
  margin: 150px auto 50px auto;
  color: rgb(173, 164, 178);
  background-color: black;
  padding: 60px 40px;
}

.boldy {
  font-weight: bold;
  font-size: 35px;
}

.line-photo {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 200px;
  margin: 20px 0;
}

@media screen and (max-width: 480px) {
  .text-container {
    margin: 100px 30px 50px 50px;
  }
}

.bio-imgs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.bio-imgs-container div {
  width: 30%;
  min-width: 250px;
  text-align: center;
}

.bio-imgs-container p {
  margin: 0;
  line-height: 125%;
}

.bio-imgs-container .smaller-profile {
  width: 25%;
  min-width: 200px;
  text-align: center;
}

.bio-imgs-container div img {
  width: 100%;
}

.bio-imgs-container .role {
  font-weight: 700;
  font-size: 12px;
  color: #a85951;
}

/* shop */

/*from screen sizes 0px to 600px*/
@media (max-width: 600px) {
  .box {
    width: 80%;
  }
}

q {
  font-style: italic;
}

.author {
  text-decoration: underline;
}

.border-left {
  border-left: 5px solid #eee;
  margin: 50px 0;
  padding: 0 20px;
}

.cd-description {
  font-family: "PT Sans", sans-serif;
  color: rgb(173, 164, 178);
}

.shop {
  color: rgb(173, 164, 178);
}

.shop .announcement {
  line-height: 145%;
  font-weight: 300;
  color: white
}

/* About us */

.question {
  font-weight: 600;
  color: white;
}

.answer {
  padding-bottom: 40px;
}


/* Helpers */

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}