/* --------------------------------

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

strong {
	font-weight:bold;
}

body {
  font-size: 100%;
  font-family: "Roboto", sans-serif;
  color: #3d3536;
  background-color: white;
  &.in-transition {
    transition: transform 900ms ease;
  }
}

body, html {
  /* important */
  height: 100%;
}


a {
  color: #5f86c5;
  text-decoration: none;
}

h2 {
  font-size:25px;
  margin-bottom:20px;
  font-weight:bold;
}

h3 {
  font-size:22px;
  margin-bottom:20px;
  font-weight:bold;
}

p {
  font-size:20px;
  margin-bottom:20px;
  line-height: 32px;
}

/* --------------------------------

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

/* --------------------------------

Main components

-------------------------------- */
.cd-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0);
  z-index: 2;
}
.cd-header:after {
  content: "";
  display: table;
  clear: both;
}
body.fixed .cd-header {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.cd-header #cd-logo {
  float: left;
  margin: 13px 0 0 5%;
}
.cd-header #cd-logo a {
  color:#FFF;
  font-size:22px;
}
body.fixed .cd-header #cd-logo a {
  color:#5f86c5;
}

@media only screen and (min-width: 768px) {
  .cd-header {
    height: 70px;
  }
  .cd-header #cd-logo {
    margin: 23px 0 0 5%;
  }
}

.cd-main-nav {
  float: right;
  margin-right: 5%;
  width: 44px;
  height: 100%;
  background: url("img/cd-icon-menu.svg") no-repeat center center;
  background-size: 44px 44px;
  cursor: pointer;
}
.cd-main-nav ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.cd-main-nav ul.is-visible {
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.cd-main-nav a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 5%;
  background: #1b6978;
  color:#FFF;
  border-top: 1px solid #453c3d;
}
body.fixed .cd-main-nav a {
	color: #3d3536;
}
@media only screen and (min-width: 768px) {
  .cd-main-nav {
    width: auto;
    height: auto;
    background: none;
    cursor: auto;
  }
  .cd-main-nav ul {
    position: static;
    width: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    line-height: 70px;
  }
  .cd-main-nav ul.is-visible {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .cd-main-nav li {
    display: inline-block;
    margin-left: 1em;
  }
  .cd-main-nav a {
    display: inline-block;
    height: auto;
    line-height: normal;
    background: transparent;
    padding: .6em 1em;
    border-top: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    font-size: 0.875rem;
  }
  .no-touch .cd-main-nav a:hover {
    color: #18636b;
  }
}

.cd-main-content {
  /* you need to assign a min-height to the main content so that the children can inherit it*/
  height: 100%;
  position: relative;
  z-index: 1;
}

.cd-fixed-bg {
  position: relative;
  min-height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
  background-color:#000;
}


.section-content .section-text {
  position:relative;
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
  text-align: left;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  color: white;
}

.section-text {
  padding:50px 0;
}

#section-home .section-text,
#section-band .section-text {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -moz-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
      -o-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%);
}



.cd-fixed-bg h1, .cd-fixed-bg h2 {
  width: 90%;
  max-width: 1170px;
  font-size: 30px;
  font-size: 1.875rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  color: white;
  margin: 0;
  padding: 40px 0;
}
.cd-fixed-bg.cd-bg-1 {
  background-image: url("../img/background_band_live.jpg");
}
.cd-fixed-bg.cd-bg-2 {
  background-image: url("../img/background_band_anzug.jpg");
}
.cd-fixed-bg.cd-bg-3 {
  background-image: url("../img/background_team.jpg");
}

@media only screen and (min-width: 768px) {
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-fixed-bg {
    background-attachment: fixed;
  }
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 48px;
    font-weight: 300;
  }
}

.cd-scrolling-bg {
  position: relative;
  min-height: 100%;
  padding: 4em 0;
  line-height: 1.6;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.cd-scrolling-bg.cd-color-1 {
  background-color: #3d3536;
  color: #a6989a;
}
.cd-scrolling-bg.cd-color-2 {
  background-color: #18636b;
  color: #ffffff;
}
.cd-scrolling-bg.cd-color-3 {
  background-color: #ab2328;
  color: #FFF;
}
.cd-scrolling-bg.cd-color-4 {
  background-color: #9fafc7;
  color: #3d3536;
}
.cd-scrolling-bg.cd-color-5 {
  background-color: #475f8a;
  color: #ffffff;
}
.cd-scrolling-bg.cd-color-6 {
  background-color: #3a3a3a;
  color: #FFF;
}
@media only screen and (min-width: 768px) {
  .cd-scrolling-bg {
    padding: 8em 0;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
    font-weight: 300;
  }
}


/* LIGHTBOX */
.jslghtbx-thmb {max-height:inherit !important;margin:0 !important;box-shadow:none!important;}
.jslghtbx-contentwrapper>img {background-color:transparent !important;}
.jslghtbx.jslghtbx-active {background-color:rgba(206, 206, 206, 0.85) !important;}

/* team */
.team-member {display:block;clear:both;overflow:hidden;padding: 20px 0;text-align:left;}
.team-member .photo {float:left;width:30%;text-align:center;}
/*.team-member .photo img {border: 2px solid #383838;}*/
.team-member .details {float:right;width:70%;}
.team-member h3 {margin:0;}
.team-member span.job, .team-member em {font-style: italic;}
.team-member p {line-height:26px;}


/* youtube */
.youtube_wrapper {max-width: 100%;margin: 60px auto;padding: 0 20px;}.youtube {background-color: #000;margin-bottom: 30px;position: relative;padding-top: 56.25%;overflow: hidden;cursor: pointer;}.youtube img {width: 100%;top: -16.82%;left: 0;opacity: 0.7;}.youtube .play-button {width: 90px;height: 60px;background-color: #333;box-shadow: 0 0 30px rgba( 0,0,0,0.6 );z-index: 1;opacity: 0.8;border-radius: 6px;}.youtube .play-button:before {content: "";border-style: solid;border-width: 15px 0 15px 26.0px;border-color: transparent transparent transparent #fff;}.youtube img,.youtube .play-button {cursor: pointer;}.youtube img,.youtube iframe,.youtube .play-button,.youtube .play-button:before {position: absolute;}.youtube .play-button,.youtube .play-button:before {top: 50%;left: 50%;transform: translate3d( -50%, -50%, 0 );}.youtube iframe {height: 100%;width: 100%;top: 0;left: 0;}

/* forms */
.row {display:block;width:100%;overflow:hidden;padding: 10px 0;}
.row .colthird {width:33%;float:left;}
.row label {display:block;}
.row input, .row textarea {padding:10px;width:98%;border:1px solid grey;}
.row.center {text-align:center;}
.row .btn {font-size:16px;width:40%;background-color: #475f8a;color: #ffffff;border:0;cursor:pointer;-webkit-appearance: none;}
.row .btn:hover {background-color: #4470bf;}




/* Responsive Videos */
.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}





#footer-bottom {
  background-color:#3a3a3a;
  color:#FFF;
  text-align:center;
  padding:10px;
}
#footer-bottom .copyright {
  font-weight:normal;
  color:#FFF;
}
#footer-bottom a {
  color:#FFF;
  padding-left:5px;
  font-weight:bold;
}


/* mobile */


@media only screen and (max-width: 1170px) {
  #section-musiker .section-text,
  #section-musik .section-text,
  #section-kontakt .section-text,
  #section-band .section-text {
    padding: 10px 0;
    position:relative;
    left:0;
    top:0;
    right:0;
    bottom:0;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }

  #section-home .section-text {
    
  }

  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    padding: 10px 0;
  }

  .cd-scrolling-bg {
    min-height:auto;
  }
  .cd-fixed-bg {

  }
  .team-member .photo,
  .team-member .details {
    float:none;
    width:100%;
  }
  .team-member .photo {
    margin-bottom:20px;
  }

  .row .colthird {
    width:100%;
    float:none;
    margin:3px 0;
  }

  .row input, .row textarea {
    margin: 10px 0px;
  }

}

@media only screen and (max-width: 965px) {
  .cd-bg-2 {display:none;}
}
