/* Globale Einstellungen */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  font-size: inherit;
}

/* Allgemeine Styles */
body {
  background-color: #000;
  font-size: 18px;
  color: #fff;
}

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

a:hover {
  text-decoration: underline;
}

h1 {
  font-size: 150%;
  line-height: 130%;
  text-align: center;
  font-weight: normal;
  margin-top: 20px;
  margin-bottom: 30px;
}

h2 {
  text-align: center;
  font-weight: normal;
  margin-top: 5px;
}

h3 {
  margin: 30px 0 15px 0;
  font-weight: bold;
}

h4 {
  margin: 20px 0 10px 0;
  font-weight: bold;
}

p {
  margin-top: 10px;
  margin-bottom: 10px;
}

hr {
  border: 1px solid #888;
}

form select, form input, form textarea {
  background-color: #fff;
  border: 1px solid #8f8f9d;
  border-radius: 4px;
  color: #000;
}

form select, form input[type=text] {
  height: 43px;
}

form select:hover, form input:hover, form textarea:hover {
  border: 1px solid #676774;
}

/* Alles mittig anordnen und auf 1200px in der Breite begrenzen */
#header, #slider, #content, #footer, #header-image, #slider-noscript {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

#slider, #content, #header-imagen, #slider-noscript {
  max-width: 1175px;
}

/* Header */
#header {
  width: 100%;
  display: block;
  text-align: right;
  padding: 0px 10px 0px 10px;
}

#header {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/* Logo */
#logo {
  display: inline-block;
  margin-right: 0px;
  min-width: 280px;
  float: left;
}

#logo img {
  margin-top: 5px;
  margin-bottom: -10px;
  float: left;
  height: 160px;
}

#logo > a > div {
  float: right;
  margin-top: 40px;
  display: inline-block;
}

#logotitle {
  font-family: 'Playfair Display';
  font-size: 33px;
}

#logosubtitle {
  font-family: 'Playfair Display';
  font-size: 16px;
  /* text-align: left; */
}

/* Menu */
#menu {
  display: flex;
  align-items: flex-end;
  margin-bottom: -6px;
}

#menu a {
  display: inline-block;
  background-color: transparent;
  margin: 2px 10px;
  padding: 5px 3px;
  color: inherit;
  line-height: normal;
  font-size: inherit;
  transition: all 0s;
}

/* Trennlinie Header <-> Content */
#separator1 {
  width: 100%;
  height: 10px;
  background: linear-gradient(to top, #111 0%, #000 100%);
  margin-top: 30px;
}

/* Slider */
#slider-container {
  width: 100%;
  background-color: #000;
  padding-top: 40px;
  padding-bottom: 5px;
}

#slider, #slider-noscript {
  width: calc(100% - 20px);
  aspect-ratio: 850 / 350;
  border-radius: 2px;
  text-align: center;
}

#slider img, #slider-noscript img {
  border-radius: 2px;
  width: 100%;
}

#slider-noscript img {
  margin-bottom: -6px;
}

.splide__slide img {
  max-width: 100%;
}

/* Header-Image */
#header-image {
  padding-top: 15px;
  width: calc(100% - 20px);
  padding-bottom: 15px;
}

#header-image img {
  max-width: 100%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* Haupt-Content */
#content-container {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 20px;
  background-size: 2em 2em;
  background-color: #111;
}

#content {
  width: calc(100% - 20px);
}

#content p {
  line-height: 180%;
  margin-top: 20px;
}

#content ul {
  margin-left: 20px;
  margin-top: 10px;
  line-height: 180%;
}

#content img {
  border-radius: 2px;
  max-width: 100%;
}

#content input, #content textarea, #content select {
  max-width: 100%;
}

input[type="submit"] {
  font-size: 120%;
  padding: 10px 25px 10px 25px;
  border: 1px solid #aaa;
}

input[type="submit"]:hover {
  cursor: pointer;
}

/* Trennlinie Content <-> Footer */
#separator2 {
  width: 100%;
  height: 10px;
  background: linear-gradient(to top, #000 0%, #111 100%);
}

/* Footer */
#footer {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 10px 0;
  font-size: 90%;
  line-height: 200%;
}

#footer-menu {
  width: fit-content;
  margin: 0 auto;
}

#footer-menu ul {
  margin-top: 10px;
  list-style-type: none;
  text-align: center;
}

#footer-menu li {
  display: inline-block;
  margin: 0 15px 0 15px;
}

.noDisplayOnSmallScreen {
  display: none;
}

.displayOnSmallScreen {
  display: inline;
}

.imageFloatRight {
}

/* Anpassung fuer grosse Screens */
@media only screen and (min-width: 1000px) {
  .noDisplayOnSmallScreen {
    display: inline;
  }
  
  .displayOnSmallScreen {
    display: none;
  }
}
