body{
  margin: 0;
  padding: 0;
  font-family: 'Source Sans Pro', helvetica, sans-serif;
}

p{
  font-family: 'Quicksand', sans-serif;
}

#title{
  text-align: center;
}

.navbar li{
  display: inline;
  padding: 14px;
  font-size: 1.2rem;
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  float: right;
  margin-right: 30px;
}

.navbar{
  height: 80px;
  color: white;
  position: fixed;
  width: 100%;
  z-index: 3;
}

.small-navigation{
  display: none;
}

.mobile-nav{
  display: none;
}

.navbar a{
  color: gray;
  margin: 0;
  padding: 0;
}

#logo{
  width: 50px;
  position: fixed;
  padding: 16px;
}

#logo:hover{
  cursor: pointer;
}

.navigation{
  width: 99.25vw;
  text-align: center;
  z-index: 2;
  position: absolute;
}

.navigation .wrapper{
  margin: 0 auto;
  display: inline-block;
  padding:  0 3vw;
  background-color: rgba(0, 0, 0, 0.5);
  padding-bottom: 50px;
  max-width: 50vw;
}

/* Introduction */
.introduction{
  display: flex;
  background-image: url("../images/galerie/Terasse/Terasse_2.JPG");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 80vh;
  width: 100vw;
  margin: 0 auto;
  color: white;
  align-items: center;
  justify-content: center;
}
.introduction .txt-wrapper{
  background-color: rgba(0,0,0,0.5);
  width: 60vw;
  padding: 10px;
}
.introduction .txt-wrapper h1{
  font-family: 'Prata', serif;
  font-size: 5em;

}

.introduction .txt-wrapper p{
text-align: center;
font-size: 1.7em;
}
/* Introduction end */

/*Zimmer*/

.rooms{
  font-family: 'Quicksand', sans-serif;
  display: flex;
  position: relative;
  padding: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.room{
  margin-top: -60px;
  padding-top: 60px;
  width: 100vw;

}

.room-dark{
  background-color: #eaeaea;
}

.room hr{
  margin: 0 auto;
  padding: 0;
  width: 70vw;
  border-radius: 1px;
}

.room-imgs{
text-align: center;
margin-bottom: 50px;
margin-top: 50px;
}

.room-imgs h2{
  font-family: 'Prata', serif;
  font-size: 1.7em;
}

.imgs{
  margin-top: 10vh;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.imgs img{
  height: 200px;
  margin: 10px;
}

.room-desc{
  margin-bottom: 70px;
  padding: 30px;
  font-size: 1.1em;
}
.room-desc h2{
  font-family: 'Prata', serif;
}



/* Impressum */
#impressum{
  font-size: 0.8em;
  padding: 10vh 5vw;
}


/* Breakpoints  */

@media screen and (max-width: 850px) {

  #bild-in-text {
    display: none;
  }

  .navigation .wrapper {
    margin: 0 auto;
    display: inline-block;
    padding: 0 3vw;
    background-color: rgba(0, 0, 0, 0.5);
    padding-bottom: 20px;
    font-size: 1.5em;
  }

  .start-button {
    height: 2.5em;
    width: 5em;
    padding: 0;
  }

  #start-titel {
    color: white;
    font-size: 1.25em;
    font-family: sans-serif;
    font-weight: 100;
  }

  .navigation a {
    font-size: 0.6em;
  }

  .navigation {

  }

  .wrapper {
    display: grid;
    justify-content: center;
  }

  .second-txt {
    padding-bottom: 100px;
  }

  .nav-btn {
    height: 2em;
    width: 20vh;
    font-size: 1.35em;
    border: white 3px;
    border-radius: 0.2vw;
    background-color: white;
  }
}


@media screen and (max-width: 700px){
  #big-navigation{
    display: none;
  }

  .bgColor a{
    color: white;
  }

  .bgColor a:hover{
    color: lightgray;
  }
  .mobile-nav{
    position: fixed;
    right: 0;
    width: 20%;
    margin-top: 60px;
    margin-left: 85%;
    padding: 10px;
    margin-right: 10px;
    display: none;
  }

  .mobile-nav.is-active{
    display: block;
  }



  .mobile-nav a{
    display: block;
    text-align: center;
    padding: 10px;
    background-color: #B2DEA5;
    border-radius: 2px;
  }

  .mobile-nav a:not(:last-child){
    border-bottom: solid 1px rgba(360,360,360,0.5);
  }

  .small-navigation{
    position: relative;
    display: block;
    width: 35px;
    cursor: pointer;
    float: right;
    margin-top: 20px;
    margin-right: 40px;
    background: none;
    appearance: none;
    border: none;
  }

  .small-navigation .bar, .small-navigation:before, .small-navigation:after{
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    background-color: lightgray;
    margin: 6px 0;
    transition: 0.6s;
  }

  .small-navigation.is-active:before{
    transform: rotate(-45deg) translate(-9px, 6.5px);
  }

  .small-navigation.is-active:after{
    transform: rotate(45deg) translate(-9px, -6.6px);
  }

  .small-navigation.is-active .bar{
    opacity: 0;
  }
}

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

  .mobile-nav a{
    padding: 10px;
  }

  .mobile-nav{
    width: 40%;
    padding: 10px;
    margin-right: 20px;
    display: none;
  }

}