@import url('https://fonts.googleapis.com/css?family=Lexend+Deca|Lexend+Exa&display=swap');

/*
white: #ffffff
light grey: #999999
mid grey: #666666
dark grey: #333333
orange: #ff6633
*/

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Lexend Exa', sans-serif;
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  background-image: url(/imgs/IMG_7926.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  
}

h1,
h2,
p {
  text-align: center;
}

h1 {
  font-family: 'Lexend Exa', sans-serif;
  font-size: 23px;
  text-align: center;
}

h2 {
  font-family: 'Lexend Exa', sans-serif;
  font-size: 14px;
  margin-top: 30px;
  margin-bottom: 8px;
  color: #333333
}

p {
  font-family: 'Lexend Deca', sans-serif;
  font-size: 12px;
  color: #a09191;
}

a {
  text-decoration: none;
  color: black;
}

a:hover {
  cursor: pointer;
  color: #ff6633;
  transition: 0.3s;
}

.background {
  color: #ffffff;
}

.hline {
  text-align: center;
  background-color: #ffffff;
  height: 50px;
  padding-top: 35px;
  width: 100vw;
}

.hline img {
  height: 100%;
}

/*NAVIGATION*/

.navbar {
  padding-left: 15px;
  padding-right: 20px;
  position: fixed;
  height: 50px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  transition: 0.30s ease-in-out;


}

.nav-up {
  opacity: 0;
}

.navbar-buttons {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.nav-links {
  display: none;
}

/* NAVIGATION OVERLAY*/

.overlay {
  position: fixed;
  background: rgba(51, 55, 69, 0.80);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
}

.overlay.open {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  height: 100%;
}

.overlay.open li {
  animation: fadeInRight .5s ease forwards;
  animation-delay: .35s;
}

.overlay.open li:nth-of-type(2) {
  animation-delay: .4s;
}

.overlay.open li:nth-of-type(3) {
  animation-delay: .45s;
}

.overlay.open li:nth-of-type(4) {
  animation-delay: .50s;
}

.overlay nav {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  font-weight: 400;
  text-align: center;
}

.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
}

.overlay ul li {
  display: block;
  position: relative;
  opacity: 0;
  margin-bottom: 60px;
}

.overlay ul li a {
  display: block;
  position: relative;
  color: #FFF;
  text-decoration: none;
  overflow: hidden;
}

.overlay ul li a:hover,
.overlay ul li a:focus,
.overlay ul li a:active {
  color: salmon;
}

button:focus {
  outline: 0;
}

/* MENU BUTTON AND LOGO */

.open-menu {
  width: 25px;
  height: auto;
}

.close-menu {
  width: 30px;
}


.logo {
  display: none;
  height: 35px;
  margin-bottom: 10px;
}

.logo-small {
  display: block;
  height: 35px;
  margin-bottom: 3px;
}

.open-menu,
.close-menu,
.button {
  cursor: pointer;
  transition: transform 0.30s;
}

.open-menu:hover,
.button:hover {
  transform: scale(1.1);
}

.overlay ul li a:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 43.5%;
  width: 0%;
  transform: translateX(-50%);
  height: 3px;
  background: #FFF;
  transition: .35s;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }

  100% {
    opacity: 1;
    left: 0;
  }
}

/* FOOTER */

.footer {
  font-size: 10px;
  padding-left: 20px;
  padding-right: 20px;
  bottom: 0;
  height: 30px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  background-color: #ffffff;
}


/* OVERVIEW */

.overview-row {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.overview-column {
  width: 200px;
  margin: 30px;
  display: flex;
  flex-direction: column;
  text-align: center;
  
}

.overview-icon {
  align-self: center;
  margin-bottom: 1rem;
}

.overview-column p {
  text-align: center;
  color: #dadada;
}

/* CONTENT WRAPPER */

.wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column-reverse;
}

.wrapper div {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.wrapper img {
  width: 60%;
}

/* SLIDE WRAPPER */

.scrolling-wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
}

.scrolling-wrapper-flexbox {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.card {
  display: inline-block;
  flex: 0 0 auto;
  width: 100%;
}

.card :hover {
  cursor: pointer;
  transition: 0.3s ease-in-out;
  background-color: whitesmoke;
}

.card img {
  width: 100%;
}

.scrolling-wrapper,
.scrolling-wrapper-flexbox {
  margin-top: 30px;
  margin-bottom: 30px;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.scrollindex {
  display: flex;
  justify-content: center;
  height: 20px;
}

.scrollindex img {
  height: 100%;
}

::-webkit-scrollbar {
  display: none;
}

.map {
  width: 100%;
  height: 100%;
}

/* MODAL */
.modal-window-1,
.modal-window-2,
.modal-window-3,
.modal-window-4,
.modal-window-5,
.modal-window-6 {
  position: fixed;
  background: rgba(51, 55, 69, 0.80);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
}

.modal-window-1.open,
.modal-window-2.open,
.modal-window-3.open,
.modal-window-4.open,
.modal-window-5.open,
.modal-window-6.open {
  z-index: 100;
  opacity: 1;
  visibility: visible;
  height: 100%;
}

.modal-window-wrapper {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  width: 80vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
}

.modal-image {
  height: 60%;
}

.modal-image img {
  width: 100%;
}

.modal-text {
  height: 40%;
  padding: 20px 10px 20px 10px;
}

.preview-gallery {
  padding: 30px 0px 30px 0px;
  display: flex;
  flex-direction: row;
  overflow: scroll;
  justify-content: space-between;
}

.image-preview {
  display: inline-block;
  flex: 0 0 auto;
  width: 100%;
  padding: 10px;
}

.image-preview img {
  width: 100%;
}

/* SECTION STYLES */

#landing-page {
  height: 100vh;
  width: 100vw;
  padding: 10px 10px 10px 10px;
  background-image: url(/imgs/IMG_7927.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

}

#overview-section {
  width: 100vw;
  padding: 50px 10px 50px 10px;
}

#image-gallery {
  width: 100vw;
  padding: 0px 25px 0px 25px;

}

#text {
  width: 100vw;
  padding: 10px 15px 10px 15px;
  background: #ffffff;
}

#image {
  height: 45vh;
  width: 100vw;
  background: #ffffff;
}

#slider-section {
  width: 100vw;
  padding: 120px 0px 120px 0px;
  background: #ffffff;
}

#page10 {
  height: 100vh;
  width: 100vw;
  padding: 0px 70px 70px 70px;
  background: #ffffff;
}

#page11 {
  display: none;
  background: #ffffff;
}

#imprint {
  padding: 100px 30px 20px 30px;
  background: #ffffff;
}

/* RESPONSIVE NAVIGATION */

@media (max-width: 670px) {
  .overlay nav {
    font-size: 30px;
  }
}

@media (max-width: 550px) {
  .overlay nav {
    font-size: 20px;
  }
}

/* MEDIA QUERIES */

/*Phone Landscape */

@media screen and (max-width : 768px) and (orientation : landscape) {

/* OVERVIEW */

.overview-row {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.overview-column {
  width: 200px;
  margin: 30px;
  display: flex;
  flex-direction: column;
  text-align: center;
  
}

.overview-icon {
  align-self: center;
  margin-bottom: 1rem;
}

.overview-column p {
  text-align: center;
  color: #dadada;
}

/* CONTENT WRAPPER */

.wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column-reverse;
}

.wrapper div {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.wrapper img {
  width: 30%;
}

/* SLIDE WRAPPER */

.scrolling-wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
}

.scrolling-wrapper-flexbox {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.card {
  display: inline-block;
  flex: 0 0 auto;
  width: 50%;
}

.card :hover {
  cursor: pointer;
  transition: 0.3s ease-in-out;
  background-color: whitesmoke;
}

.card img {
  width: 100%;
}

.scrolling-wrapper,
.scrolling-wrapper-flexbox {
  margin-top: 30px;
  margin-bottom: 30px;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.scrollindex {
  display: flex;
  justify-content: center;
  height: 20px;
}

.scrollindex img {
  height: 100%;
}

::-webkit-scrollbar {
  display: none;
}

.map {
  width: 100%;
  height: 100%;
}

/* MODAL */
.modal-window-1,
.modal-window-2,
.modal-window-3,
.modal-window-4,
.modal-window-5,
.modal-window-6 {
  position: fixed;
  background: rgba(51, 55, 69, 0.80);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
}

.modal-window-1.open,
.modal-window-2.open,
.modal-window-3.open,
.modal-window-4.open,
.modal-window-5.open,
.modal-window-6.open {
  z-index: 100;
  opacity: 1;
  visibility: visible;
  height: 100%;
}

.modal-window-wrapper {
  display: flex;
  flex-direction: row;
  text-align: center;
  align-items: center;
  width: 80vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
}

.modal-image {
 width: 100%;
}

.modal-image img {
  width: 100%;
}

.modal-text {
  height: 40%;
  padding: 20px 10px 20px 10px;
}

.preview-gallery {
  padding: 30px 0px 30px 0px;
  display: flex;
  flex-direction: row;
  overflow: scroll;
  justify-content: space-between;
}

.image-preview {
  display: inline-block;
  flex: 0 0 auto;
  width: 50%;
  padding: 10px;
}

.image-preview img {
  width: 100%;
}

/* SECTION STYLES */

#landing-page {
  width: 100vw;
  padding: 10px 10px 10px 10px;
  background-image: url(/imgs/IMG_7927.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;

}

#overview-section {
  width: 100vw;
  padding: 50px 10px 50px 10px;
}

#image-gallery {
  width: 100vw;
  padding: 0px 25px 0px 25px;

}

#text {
  width: 100vw;
  padding: 10px 15px 10px 15px;
  background: #ffffff;
}

#image {
  width: 100vw;
  height: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}

#slider-section {
  width: 100vw;
  padding: 120px 0px 120px 0px;
  background: #ffffff;
}

#page10 {
  width: 100vw;
  padding: 70px 70px 70px 70px;
  background: #ffffff;
}

#page11 {
  display: none;
  background: #ffffff;
}

#imprint {
  padding: 100px 30px 20px 30px;
  background: #ffffff;
}

}

/*Tablet Portrait*/

@media screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {

  /* General */

  h1 {
    font-size: 25px;
    margin-bottom: 30px;
  }

  h2 {
    font-size: 19px;
    margin-top: 30px;
    margin-bottom: 0.6rem;
  }

  p {
    font-size: 12px;
  }

  /* Navigation */

  .navbar {
    height: 55px;
  }

  .logo-small {
    display: none;
  }

  .logo {
    display: block;
  }

  /* Overview */

  .overview-row {
    flex-direction: row;
  }

  /* Content */

  .wrapper img {
    width: 40%;
  }

  /* Slider */

  .card {
    width: 50%;
  }

  /* Modal */

  .modal-window-wrapper {
    width: 70vw;
  }

  .modal-text {
    padding: 0px 30px 30px 30px;
  }

  /* Gallery */

  .image-preview {
    width: calc(100% / 3);
  }

  /* Section Styles */

  #landing-page {
    height: 100vh;
    width: 100vw;
    padding: 10px 80px 10px 80px;
  }

  #overview-section {
    height: 30vh;
    width: 100vw;
    padding: 80px 30px 80px 30px;
  }

  #image-gallery {
    width: 100vw;
    padding: 0px 60px 0px 60px;
  }

  #text {
    height: 50vh;
    width: 100vw;
    padding: 10px 100px 10px 100px;
  }

  #image {
    height: 40vh;
    width: 100vw;
  }

  #slider-section {
    height: 50vh;
    width: 100vw;
    padding: 60px 0px 60px 0px;
  }

  #page10 {
    height: 50vh;
    width: 100vw;
    padding: 0px 200px 0px 200px;

  }

  #page11 {
    display: none;
  }

}


/*Tablet Landscape*/

@media screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {

  /* General */

  h1 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: left;
  }

  h2 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 0.6rem;
    text-align: left;
  }

  p {
    font-size: 14px;
    text-align: justify;

  }

  /* Navigation */

  .navbar {
    height: 55px;
  }

  .logo-small {
    display: none;
  }

  .logo {
    display: block;
  }

  /* Overview */

  .overview-row {
    flex-direction: row;
  }

  /* Content */

  .wrapper {
    flex-direction: row;
    text-align: left;
  }

  .wrapper img {
    width: 80%;
  }

  /* Slider */

  .card {
    width: 50%;
  }

  /* Modal */

  .modal-window-wrapper {
    flex-direction: row;
    width: 80vw;
  }

  .modal-image {
    height: 100%;
    width: 50%;
  }

  .modal-text {
    height: 100%;
    width: 50%;
    padding: 0px 30px 30px 30px;
  }

  .image-preview {
    width: calc(100% / 3);
  }

  /* Section Styles */

  #landing-page {
    height: 100vh;
    width: 100vw;
    padding: 10px 250px 10px 250px;
  }

  #overview-section {
    height: 40vh;
    width: 100vw;
    padding: 80px 60px 80px 60px;
  }

  #image-gallery {
    padding: 0px 60px 0px 60px;
  }

  #text {
    height: 100vh;
    width: 55vw;
    padding: 0px 0px 0px 60px;
  }

  #image {
    height: 100vh;
    width: 45vw;
  }

  #slider-section {
    width: 100vw;
    padding: 80px 100px 80px 100px;
  }

  #page10 {
    height: 100vh;
    width: 45vw;
    padding: 0px 10px 0px 10px;

  }

  #page11 {
    display: block;
    height: 100vh;
    width: 55vw;
    padding: 200px 50px 200px 00px;

  }

}

/* Desktop */

@media screen and (min-width: 1025px) {

  /* General */

  h1 {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: left;
  }

  h2 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
    text-align: left;
  }

  p {
    font-size: 14px;
    line-height: 20px;
    text-align: justify;
  }

  /* Navigation */

  .navbar {
    padding-left: 20px;
    padding-right: 20px;
    height: 70px;
  }

  .nav-up {
    opacity: 0;
  }

  .logo-small {
    display: none;
  }

  .logo {
    display: block;
    height: 45px;
  }

  .open-menu {
    display: none;
  }

  .nav-links {
    width: 45vw;
    display: flex;
    justify-content: space-around;
  }

  /* Overview */

  .overview-column {
    width: 210px;
  }

  .overview-row {
    flex-direction: row;
  }

  /* Content */

  .wrapper {
    flex-direction: row;
  }

  .wrapper img {
    width: 65%;
  }

  .hline {
    padding-top: 0px;
    height: 20px;
  }

  /* Slider */

  .card {
    width: 50%;
  }

  /* Modal */

  .modal-window-wrapper {
    flex-direction: row;
    width: 70vw;
  }

  .modal-image {
    height: 100%;
    width: 50%;
  }

  .modal-text {
    height: 100%;
    width: 50%;
    padding: 0px 30px 30px 30px;
  }

  /* Gallery */

  .preview-gallery {
    padding: 45px 0px 45px 0px;
  }

  .image-preview {
    width: calc(100% / 3);
    padding: 20px;
  }


  /* Section Styles */

  #landing-page {
    height: 100vh;
    width: 100vw;
    padding: 10px 500px 10px 500px;
  }

  #overview-section {
    height: 40vh;
    width: 100vw;
    padding: 80px 100px 80px 100px;
  }

  #image-gallery {
    width: 100vw;
    padding: 0px 100px 0px 100px;
  }

  #text {
    height: 100vh;
    width: 55vw;
    padding: 10px 50px 10px 100px;
  }

  #image {
    height: 100vh;
    width: 45vw;
  }

  #slider-section {
    height: 100vh;
    width: 100vw;
    padding: 100px 100px 0px 100px;
  }

  #page10 {
    height: 100vh;
    width: 45vw;
    padding: 10px 10px 10px 10px;

  }

  #page11 {
    display: block;
    height: 100vh;
    width: 55vw;
    padding: 150px 100px 150px 0px;

  }

}