@font-face {
  font-family: 'Advent Pro';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/advent-pro-v11-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
      url('fonts/advent-pro-v11-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
      url('fonts/advent-pro-v11-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
      url('fonts/advent-pro-v11-latin-regular.woff') format('woff'), /* Modern Browsers */
      url('fonts/advent-pro-v11-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
      url('fonts/advent-pro-v11-latin-regular.svg#AdventPro') format('svg'); /* Legacy iOS */
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/open-sans-v18-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/open-sans-v18-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/open-sans-v18-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/open-sans-v18-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('fonts/open-sans-v18-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/open-sans-v18-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/open-sans-v18-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/open-sans-v18-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/open-sans-v18-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/open-sans-v18-latin-700.woff') format('woff'), /* Modern Browsers */
       url('fonts/open-sans-v18-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/open-sans-v18-latin-700.svg#OpenSans') format('svg'); /* Legacy iOS */
}

body {
  font-family: 'Open Sans', sans-serif;
}
h1,h2,h3,h4 {
  font-family: 'Advent Pro', sans-serif;
}
.teaser {
  width: 100vw;
  height: 300px;
  background-image: url(images/lakeside-700.jpg);
  background-size: cover;
  background-position-y: center;
}
.teaser h1 {
  margin-left: 20px;
  color: white;
  text-shadow:2px 2px rgba(117, 117, 117, 1);
}
.teaser h1 small {
  display: block;
  font-size: small;
  margin-top: -8px;
}
@media only screen and (min-width: 700px) and (min-resolution: 2dppx) {
  .teaser { background-image: url(images/lakeside-1500.jpg); }
}
@media only screen and (min-width: 1500px) {
  .teaser { background-image: url(images/lakeside-1500.jpg); }
}
@media only screen and (min-width: 1500px) and (min-resolution: 2dppx) {
  .teaser { background-image: url(images/lakeside-3000.jpg); }
}
@media only screen and (min-width: 3000px) {
  .teaser { background-image: url(images/lakeside-3000.jpg); }
}

@media only screen and (min-width: 500px) {
  nav ul {
    display: flex;
    height: 16px;
    line-height: 16px;
  }
}

body {
  --background-color: rgba(255,255,255,0.9);
  margin: 0;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

a:link {
  color: #135bad;
}
a:visited {
  color: #8913ad;
}
main {
  flex: 1;
  padding: 0px 20px 60px 20px;
}

footer {
  background-color: #e3b25f;
  padding: 0px 15px;
  display: flex;
  justify-content: space-between;
}

nav {
  margin-top: 0px;
}


nav ul {
  padding: 0;
  margin: 10px;
  list-style: none;
  padding: 10px;
  color: rgba(117, 117, 117, 1);
  background-color: var(--background-color);
}
nav ul li {
  cursor: pointer;
  margin-right: 10px;
}
nav ul li:first-child {
  font-weight: bold;
}
nav ul li a:any-link {
  text-decoration: none;
}
nav ul li a:hover {
  text-decoration: underline;
}


.custom-button{
  text-decoration: none;
  border-style: solid;
  padding:0.5rem;
  border-color:#e3b25f;
  background-color: #e3b25f;
  border-radius: 0.2rem;
  transition: all ease 0.2s;
  color:white;
}

.custom-button:visited{
  color: white;
}

.custom-button:hover{
  box-shadow: 0.5rem 0.5rem 0.5rem 0.2rem rgb(137, 137, 137);
}

.custom-button:active{
  box-shadow: 0rem 0rem 0rem 0rem black;
  transition: all ease 0s;
}

.new-room-form{
  display: flex;
  flex-direction: column;
  margin-bottom: 5vh;
  border-style: solid;
  padding:2rem;
  min-width:60vw;
  max-width:600px;
  border-color: #e3b25f;
  border-radius: 1rem;
}

.new-room-form input,select,textarea{
  width: 60%;
}

.new-room-form .custom-button{
  margin-top:2vh;
  width:30%;
}



/* ---------- seite images.php ------------- */

div.bilder {
  display: flex;
  flex-wrap: wrap;
}
div.bilder div {
  width: 320px;
  height: 400px;
  padding: 5px;
}
div.bilder img {
  width: 300px;
  height: 202px;
}
