* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5rem;
  background: #eaebf6;
  color: #403b3c;
  margin: 0 auto;
  max-width: 1920px;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

p {
  max-width: 50rem;
  margin: 0 0 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
}

address {
  font-style: normal;
}

audio {
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 400;
  margin: 0;
}

.button {
  font-family: 'Titillium Web', sans-serif;
  display: inline-block;
  font-size: 1.5rem;
  line-height: 2rem;
  padding: 0.75rem 1.5rem;
  text-align: center;
  text-decoration: none;
  border-radius: 3px;
}

.button--cta {
  background: #7c8ad2;
  color: white;
  transition: all 0.3s;
}

.button--cta:hover {
  background: #6773af;
}

@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot?v=4.2.0');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.2.0')
      format('embedded-opentype'),
    url('../fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'),
    url('../fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'),
    url('../fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular')
      format('svg');
  font-weight: normal;
  font-style: normal;
}

/* ________________ */

.nav-bar {
  background: #fff;
  box-sizing: border-box;
  padding-bottom: 3rem; /* for sticky header on phone */
}

.brand {
  padding: 0.5rem;
  background: #fff;
  text-align: center;
}

.brand__link {
  display: block;
  margin: 0 auto;
}

.brand__image {
  display: block;
  margin: 0 auto;
  height: 3.5rem;
  width: auto;
  padding: 0.25rem;
  box-sizing: border-box;
}

.nav {
  /*font-family: Titillium Web, sans-serif;*/
  /*font-size: 1.5rem;*/
  background: #eaebf6;
  position: absolute;
  top: auto;
  width: 100%;
  z-index: 2;
}

.stick-header .nav {
  position: fixed;
  top: 0;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__item {
  line-height: 3rem;
  padding: 0 1.5rem;
  text-align: center;
}

.nav__item:first-child {
  margin: 0;
}

.nav__link {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1rem;
}

.hero {
  background: #403b3c;
  overflow: hidden;
  position: relative;
  max-height: 720px;
}

.full-size-image {
  display: block;
  width: 100%;
}

.opener {
  position: absolute;
  bottom: 0.5rem;
  right: 0;
  left: 0;
  text-align: center;
  color: #fff;
  padding: 0.5rem 0.75rem;
  font-size: 1.25rem;
}

.opener__title {
  display: inline-block;
  padding: 0 0.75rem;
  line-height: 2rem;
  margin-bottom: 0.25rem;
  background: rgba(0, 0, 0, 0.5);
}

.opener__tag-line {
  display: inline-block;
  padding: 0 0.75rem;
  line-height: 2rem;
  background: rgba(0, 0, 0, 0.5);
}

.main-section__header {
  position: relative;
  background: #eaebf6;
  padding: 0.75rem;
  text-align: center;
  /* Hide overlapping pseudo element */
  overflow: hidden;
}

.main-section__header:after {
  content: '';
  width: 200px;
  height: 200px;
  position: absolute;
  right: 0;
  top: 50%;
  background: url('../images/vam_social_media.png') no-repeat center;
  background-size: 200px 200px;
  transform: translate(33%, -50%) scale(2);
  opacity: 0.1;
}

.main-section__heading {
  font-size: 1.5rem;
  color: #403b3c;
}

.main-section__quote {
  padding: 0;
  margin: 0.75rem 0;
  font-style: italic;
}

.main-section__text-block {
  position: relative;
  background: rgba(0, 0, 0, 0.85);
  color: #eaebf6;
  padding: 1rem 0.75rem;
}

.main-section__call-to-action {
  text-align: center;
}

.main-section__text-block .button--cta {
  margin: 0.75rem auto;
}

.main-section--singing .main-section__header:after,
.footer .main-section__header:after {
  right: auto;
  left: 0;
  transform: translate(-33%, -50%) scale(2);
}

.references {
  background: #000;
  color: #eaebf6;
}

.reference {
  display: flex;
  flex-direction: column;
  flex: 1 1 50%;
  padding: 0 1rem 2rem;
}

.reference:first-child {
  padding-top: 3rem;
}

.reference__heading {
  margin-bottom: 1rem;
}

.reference__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  white-space: nowrap;
}

.reference__list > li {
  margin-right: 0.75rem;
  padding: 0.25rem 1rem;
  margin-bottom: 0.5rem;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 1rem;
}

.samples {
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 1rem;
  box-sizing: border-box;
}

.close-button {
  position: relative;
  border: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  overflow: hidden;
  transition: all 0.5s;
  background: #000;
  color: #eaebf6;
  transform: rotate(0);
}

.close-button:hover {
  cursor: pointer;
  background: rgba(255, 255, 255, 1);
  color: #403b3c;
  transform: rotate(360deg);
}

.close-button::after {
  content: '\f00d';
  font-family: FontAwesome;
  font-size: 1rem;
  display: block;
}

.samples .close-button {
  display: none;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.js .samples {
  position: fixed;
  top: 0;
  bottom: 0;
  left: -100%; /* Prevent initial flicker */
  width: 100%;
  transform: translateX(-100%);
  opacity: 0;
  transition: left 0s ease-in 0.5s, opacity 0.5s ease-in 0.1s, transform 0.5s;
  z-index: 10;
}

.js .samples .close-button {
  display: inline-block;
}

.js .samples.show {
  transform: translateX(0);
  opacity: 1;
  left: 0;
  overflow-y: scroll;
  transition: left 0s ease-in-out 0s, opacity 0.5s ease-in-out 0.1s,
    transform 0.5s ease-in-out 0s;
}

.samples__heading {
  text-transform: uppercase;
}

.samples__heading > span {
  display: block;
}

.samples__heading > strong {
  display: block;
  font-weight: 700;
}

.samples-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.sample__heading {
  text-transform: uppercase;
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

.sample__heading > small {
  color: #666;
}

.samples-list {
  padding: 2rem 0 1rem;
}

.samples-list__item {
  margin: 0 0 1.5rem;
}

/* Only for JS overlays */
.sample-button {
  display: none;
}

.js .sample-button {
  display: inline-block;
}

.footer {
  display: block;
  background: #403b3c;
  color: #eaebf6;
}

.footer__content {
  padding: 0.75rem 0.75rem 2rem;
}

.contact-list {
  padding: 0;
  list-style: none;
}

.contact-list__item {
  margin: 0 0 1rem;
}

.contact-list a {
  max-width: 375px;
  background: rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 3px;
}

.contact-list a:before {
  font-family: FontAwesome;
  display: inline-block;
  margin-right: 1rem;
}

.contact-list .phone:before {
  content: '\f095';
}

.contact-list .mail:before {
  content: '\f0e0';
}

.imprint {
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .main-header {
    /* total height of the brand image which makes the height of the sticky nav-bar */
    padding-top: 6rem;
  }

  .nav-bar {
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
  }

  .brand {
    float: left;
    padding-left: 0;
  }

  .brand__image {
    height: 5rem;
    padding: 0.5rem 0.5rem 0.5rem 2rem;
  }

  .nav {
    /* Reset mobile styles */
    position: static;
    top: auto;
    width: auto;
    background: transparent;
  }

  .nav__list {
    justify-content: right;
  }

  .nav__item {
    width: auto;
    padding: 0;
  }

  .nav__link {
    font-size: 1.25rem;
    display: block;
    line-height: 6rem;
    padding: 0 2rem;
    transition: all 0.3s;
  }

  .nav__link:hover {
    color: #7c8ad2;
    background: #eaebf6;
  }

  .nav__link.active {
    color: #7c8ad2;
    background: #eaebf6;
  }

  .opener {
    font-size: 3rem;
    bottom: 10%;
    right: 5%;
    text-align: right;
  }

  .opener__title,
  .opener__tag-line {
    line-height: 3rem;
  }

  .main-section__content {
    position: relative;
    overflow: hidden;
    max-height: 720px;
  }

  .main-section__text-block {
    position: absolute;
    width: 38%;
    top: 0;
    bottom: 0;
    padding: 3rem 0 6rem;
    box-sizing: border-box;
  }

  .main-section__text-wrapper {
    padding: 0 2rem;
    height: 100%;
    overflow: auto;
  }

  .main-section__text-block p {
    font-size: 1rem;
    line-height: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .main-section__call-to-action {
    background: #000;
    position: absolute;
    bottom: 0;
    height: 5rem;
    padding: 0.5rem 0;
    left: 0;
    right: 0;
  }

  .main-section--speaking .main-section__text-block {
    left: 0;
  }

  .main-section--singing .main-section__text-block {
    right: 0;
  }

  .main-section__header,
  .main-section--singing .main-section__header {
    text-align: center;
  }

  .main-section__heading {
    font-size: 2rem;
    margin: 1rem 0 2rem;
  }

  .main-section__quote,
  .main-section--singing .main-section__quote {
    font-size: 1.25rem;
    line-height: 2rem;
    width: auto;
    margin: 0 0 2rem;
  }

  .references {
    display: flex;
  }

  .reference {
    padding: 3rem 2rem;
  }

  .samples {
    padding: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
      url('../images/singing.jpg') no-repeat center;
    background-size: cover, cover;
  }

  #samples-speaking.samples {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
      url('../images/speaking.jpg') no-repeat center;
    background-size: cover, cover;
  }

  .samples__header {
    background: #000;
    /* Match nav-bar total height */
    min-height: 4.5rem;
    padding: 2rem;
    box-sizing: border-box;
  }

  .samples__heading {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .samples__content {
    padding: 2rem;
  }

  .sample-button {
    min-width: 62%;
  }

  .footer__content {
    text-align: center;
  }

  .contact-list__item {
    display: inline-block;
    width: 38%;
  }

  .contact-list a {
    max-width: 100%;
    transition: all 0.3s;
  }

  .contact-list a:hover {
    background: rgba(0, 0, 0, 0.5);
  }

  .js .samples-list__item {
    display: inline-block;
    margin: 0 2rem 2rem 0;
  }
}

@media screen and (max-width: 600px) {
  .sm-hidden {
    display: none;
  }
}
