@charset "UTF-8";

@font-face {
  font-family: "Neuton";
  src: url("../fonts/Neuton-Bold.woff2") format("woff2"), url("../fonts/Neuton-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neuton";
  src: url("../fonts/Neuton-Italic.woff2") format("woff2"), url("../fonts/Neuton-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Neuton";
  src: url("../fonts/Neuton-ExtraBold.woff2") format("woff2"), url("../fonts/Neuton-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neuton";
  src: url("../fonts/Neuton-Regular.woff2") format("woff2"), url("../fonts/Neuton-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rockville Solid";
  src: url("../fonts/RockvilleSolidRegular.woff2") format("woff2"), url("../fonts/RockvilleSolidRegular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Blackadder ITC Std";
  src: url("../fonts/BlackadderITCStd.woff2") format("woff2"), url("../fonts/BlackadderITCStd.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------Noscript-------------------------------------- */
noscript {
  width: 100%;
  height: auto;
  padding: 15px;
  color: #fff;
  background-color: #bd1220;
  display: block;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 900;
  text-align: center;
}
noscript span {
  font-size: 2em;
}
noscript p {
  font-weight: bold;
}
noscript p a:link,
noscript p a:visited,
noscript p a:active,
noscript p a:focus,
noscript p a:hover {
  color: #fff;
  text-decoration: underline;
  text-transform: none;
}
/* --------------------------------------Allgemein-------------------------------------- */
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  font-size: 100%;
  font-family: "Neuton";
  background-color: #000;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 90%;
  }
}

main {
  flex: 1;
  transition: all 0.3s ease-in-out;
}

.noScroll {
  overflow: hidden;
}

* {
  outline: 0;
  -webkit-tap-highlight-color: transparent;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.anchor {
  visibility: hidden;
  height: 0px !important;
  position: absolute;
  margin: -50px;
}

.cc {
  text-align: center;
}

#scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background-color: #000000;
  z-index: 9999;
}

/* --------------------------------------Content Animation-------------------------------------- */

.anim {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.anim.visible {
  opacity: 1;
}

/* --------------------------------------Hauptmenü-------------------------------------- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  overflow-x: hidden;
  background-color: #b29435;
  z-index: 9999;
  height: 100px;
}

.nav {
  width: 100%;
  height: 100vh;
  display: block;
  margin: 0 auto;
  text-align: center;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0; /* Unsichtbar im Ausgangszustand */
  visibility: hidden; /* Nicht interaktiv */
  transition: opacity 0.3s ease-in-out;
}

.navActive {
  opacity: 1; /* Sichtbar */
  visibility: visible; /* Interaktion erlauben */
}

.navInner {
  width: 100%;
  max-width: 400px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.navInner a {
  text-decoration: none;
  color: #cbb56a;
  display: inline-block;
  text-transform: uppercase;
  font-size: 2em;
  letter-spacing: 2px;
  font-weight: normal;
  margin: 20px;
  opacity: 0; /* Unsichtbar im Ausgangszustand */
  transform: translateY(20px); /* Nach unten verschoben */
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.navActive .navInner a:nth-child(1) {
  transition-delay: 0.2s; /* Verzögerung für den ersten Link */
  opacity: 1;
  transform: translateY(0);
}

.navActive .navInner a:nth-child(2) {
  transition-delay: 0.4s; /* Verzögerung für den zweiten Link */
  opacity: 1;
  transform: translateY(0);
}

.navActive .navInner a:nth-child(3) {
  transition-delay: 0.6s; /* Verzögerung für den dritten Link */
  opacity: 1;
  transform: translateY(0);
}

.navActive .navInner a:nth-child(4) {
  transition-delay: 0.8s; /* Verzögerung für den vierten Link */
  opacity: 1;
  transform: translateY(0);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px; /* Dicke der Linie */
  background-color: #cbb56a;
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}

.nav a:focus::after,
.nav a:hover::after {
  width: 100%; /* Breitet die Linie vollständig aus */
}

@media only screen and (max-width: 500px) {
  .nav a:link,
  .nav a:visited,
  .nav a:active {
    margin: 50px 0;
  }
}

.mainBlur {
  filter: brightness(10%);
}

.hamburger {
  position: fixed;
  top: 15px;
  right: 20px;
  width: 40px;
  height: 45px;
  z-index: 9999;
  cursor: pointer;
  display: block;
}

@media only screen and (max-width: 768px) {
  .hamburger {
    position: fixed;
    top: 10px;
    right: 10px;
  }
}

.hamburger div {
  position: relative;
  width: 35px;
  height: 5px;
  margin-top: 7px;
  transition: all 0.3s ease-in-out;
}
.hamburgerInner {
  background-color: #000000;
  border-radius: 50%;
}

.hamburgerInnerActive {
  background-color: #fff !important;
}

.hamburgerInner.is-active.top-bun {
  transform: rotate(-45deg);
  margin-top: 17px; /* Align top bun correctly */
  background-color: #fff !important;
}
.hamburgerInner.is-active.bottom-bun {
  transform: rotate(45deg);
  margin-top: -16px; /* Adjust bottom bun to align properly */
  background-color: #fff !important;
}
.hamburgerInner.is-active.meat {
  opacity: 0;
  transform: scale(0);
  background-color: transparent;
}

/* --------------------------------------Abstände-------------------------------------- */
.m10 {
  margin: 10px;
}
.m20 {
  margin: 20px;
}
.m30 {
  margin: 30px;
}
.m40 {
  margin: 40px;
}
.m50 {
  margin: 10px;
}
.mt5 {
  margin-top: 5px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt15 {
  margin-top: 15px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt25 {
  margin-top: 25px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mt35 {
  margin-top: 35px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mt45 {
  margin-top: 45px !important;
}
.mt50 {
  margin-top: 50px !important;
}
.mt55 {
  margin-top: 55px !important;
}
.mt60 {
  margin-top: 60px !important;
}
.mt65 {
  margin-top: 65px !important;
}
.mt70 {
  margin-top: 70px !important;
}
.mt75 {
  margin-top: 75px !important;
}
.mt80 {
  margin-top: 80px !important;
}
.mt85 {
  margin-top: 85px !important;
}
.mt90 {
  margin-top: 90px !important;
}
.mt95 {
  margin-top: 95px !important;
}
.mt100 {
  margin-top: 100px !important;
}
.mr5 {
  margin-top: 5px !important;
}
.mr10 {
  margin-top: 10px !important;
}
.mr15 {
  margin-top: 15px !important;
}
.mr20 {
  margin-top: 20px !important;
}
.mr25 {
  margin-top: 25px !important;
}
.mr30 {
  margin-top: 30px !important;
}
.mr35 {
  margin-top: 35px !important;
}
.mr40 {
  margin-top: 40px !important;
}
.mr45 {
  margin-top: 45px !important;
}
.mr50 {
  margin-top: 50px !important;
}
.mr55 {
  margin-top: 55px !important;
}
.mr60 {
  margin-top: 60px !important;
}
.mr65 {
  margin-top: 65px !important;
}
.mr70 {
  margin-top: 70px !important;
}
.mr75 {
  margin-top: 75px !important;
}
.mr80 {
  margin-top: 80px !important;
}
.mr85 {
  margin-top: 85px !important;
}
.mr90 {
  margin-top: 90px !important;
}
.mr95 {
  margin-top: 95px !important;
}
.mr100 {
  margin-top: 100px !important;
}
.mb5 {
  margin-bottom: 5px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb25 {
  margin-bottom: 25px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb35 {
  margin-bottom: 35px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb45 {
  margin-bottom: 45px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mb55 {
  margin-bottom: 55px !important;
}
.mb60 {
  margin-bottom: 60px !important;
}
.mb65 {
  margin-bottom: 65px !important;
}
.mb70 {
  margin-bottom: 70px !important;
}
.mb75 {
  margin-bottom: 75px !important;
}
.mb80 {
  margin-bottom: 80px !important;
}
.mb85 {
  margin-bottom: 85px !important;
}
.mb90 {
  margin-bottom: 90px !important;
}
.mb95 {
  margin-bottom: 95px !important;
}
.mb100 {
  margin-bottom: 100px !important;
}
.ml5 {
  margin-top: 5px !important;
}
.ml10 {
  margin-top: 10px !important;
}
.ml15 {
  margin-top: 15px !important;
}
.ml20 {
  margin-top: 20px !important;
}
.ml25 {
  margin-top: 25px !important;
}
.ml30 {
  margin-top: 30px !important;
}
.ml35 {
  margin-top: 35px !important;
}
.ml40 {
  margin-top: 40px !important;
}
.ml45 {
  margin-top: 45px !important;
}
.ml50 {
  margin-top: 50px !important;
}
.ml55 {
  margin-top: 55px !important;
}
.ml60 {
  margin-top: 60px !important;
}
.ml65 {
  margin-top: 65px !important;
}
.ml70 {
  margin-top: 70px !important;
}
.ml75 {
  margin-top: 75px !important;
}
.ml80 {
  margin-top: 80px !important;
}
.ml85 {
  margin-top: 85px !important;
}
.ml90 {
  margin-top: 90px !important;
}
.ml95 {
  margin-top: 95px !important;
}
.ml100 {
  margin-top: 100px !important;
}
.p10 {
  padding: 10px;
}
.p20 {
  padding: 20px;
}
.p30 {
  padding: 30px;
}
.p40 {
  padding: 40px;
}
.p50 {
  padding: 50px;
}
.pt5 {
  padding-top: 5px;
}
.pt10 {
  padding-top: 10px;
}
.pt15 {
  padding-top: 15px;
}
.pt20 {
  padding-top: 20px;
}
.pt25 {
  padding-top: 25px;
}
.pt30 {
  padding-top: 30px;
}
.pt35 {
  padding-top: 35px;
}
.pt40 {
  padding-top: 40px;
}
.pt45 {
  padding-top: 45px;
}
.pt50 {
  padding-top: 50px;
}
.pt55 {
  padding-top: 55px;
}
.pt60 {
  padding-top: 60px;
}
.pt65 {
  padding-top: 65px;
}
.pt70 {
  padding-top: 7px;
}
.pt75 {
  padding-top: 75px;
}
.pt80 {
  padding-top: 80px;
}
.pt85 {
  padding-top: 85px;
}
.pt90 {
  padding-top: 90px;
}
.pt95 {
  padding-top: 95px;
}
.pt100 {
  padding-top: 100px;
}
.pr5 {
  padding-right: 5px;
}
.pr10 {
  padding-right: 10px;
}
.pr15 {
  padding-right: 15px;
}
.pr20 {
  padding-right: 20px;
}
.pr25 {
  padding-right: 25px;
}
.pr30 {
  padding-right: 30px;
}
.pr35 {
  padding-right: 35px;
}
.pr40 {
  padding-right: 40px;
}
.pr45 {
  padding-right: 45px;
}
.pr50 {
  padding-right: 50px;
}
.pr55 {
  padding-right: 55px;
}
.pr60 {
  padding-right: 60px;
}
.pr65 {
  padding-right: 65px;
}
.pr70 {
  padding-right: 7px;
}
.pr75 {
  padding-right: 75px;
}
.pr80 {
  padding-right: 80px;
}
.pr85 {
  padding-right: 85px;
}
.pr90 {
  padding-right: 90px;
}
.pr95 {
  padding-right: 95px;
}
.pr100 {
  padding-right: 100px;
}
.pb5 {
  padding-bottom: 5px;
}
.pb10 {
  padding-bottom: 10px;
}
.pb15 {
  padding-bottom: 15px;
}
.pb20 {
  padding-bottom: 20px;
}
.pb25 {
  padding-bottom: 25px;
}
.pb30 {
  padding-bottom: 30px;
}
.pb35 {
  padding-bottom: 35px;
}
.pb40 {
  padding-bottom: 40px;
}
.pb45 {
  padding-bottom: 45px;
}
.pb50 {
  padding-bottom: 50px;
}
.pb55 {
  padding-bottom: 55px;
}
.pb60 {
  padding-bottom: 60px;
}
.pb65 {
  padding-bottom: 65px;
}
.pb70 {
  padding-bottom: 7px;
}
.pb75 {
  padding-bottom: 75px;
}
.pb80 {
  padding-bottom: 80px;
}
.pb85 {
  padding-bottom: 85px;
}
.pb90 {
  padding-bottom: 90px;
}
.pb95 {
  padding-bottom: 95px;
}
.pb100 {
  padding-bottom: 100px;
}
.pl5 {
  padding-left: 5px;
}
.pl10 {
  padding-left: 10px;
}
.pl15 {
  padding-left: 15px;
}
.pl20 {
  padding-left: 20px;
}
.pl25 {
  padding-left: 25px;
}
.pl30 {
  padding-left: 30px;
}
.pl35 {
  padding-left: 35px;
}
.pl40 {
  padding-left: 40px;
}
.pl45 {
  padding-left: 45px;
}
.pl50 {
  padding-left: 50px;
}
.pl55 {
  padding-left: 55px;
}
.pl60 {
  padding-left: 60px;
}
.pl65 {
  padding-left: 65px;
}
.pl70 {
  padding-left: 7px;
}
.pl75 {
  padding-left: 75px;
}
.pl80 {
  padding-left: 80px;
}
.pl85 {
  padding-left: 85px;
}
.pl90 {
  padding-left: 90px;
}
.pl95 {
  padding-left: 95px;
}
.pl100 {
  padding-left: 100px;
}

/* --------------------------------------Text-------------------------------------- */
p {
  margin: 0;
  padding: 0;
  font-size: 1.5em;
  line-height: 130%;
}
.hdlxl {
  font-family: "Blackadder ITC Std";
  font-size: 3em;
  font-weight: normal;
  line-height: 100%;
  margin: 0 0 30px 0;
  text-align: center;
  color: #fff;
}
.hdll {
  font-family: "Blackadder ITC Std";
  font-size: 2.5em;
  line-height: 145%;
  font-weight: bold;
}
.hdl3 {
  font-size: 2em;
  line-height: 145%;
  font-weight: bold;
}
.hdlm {
  font-size: 1.8em;
  line-height: 145%;
  font-weight: bold;
}
.hdls {
  font-family: "Rockville Solid";
  font-size: 1.8em;
  line-height: 130%;
  font-weight: normal;
  display: block;
  margin-bottom: 20px;
}
.hdlxs {
  font-size: 1.4em;
  line-height: 145%;
  font-weight: bold;
}
p a:link,
p a:visited,
p a:active {
  text-decoration: underline;
  color: #000;
  -webkit-transition: all 0.03s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
p a:focus,
p a:hover {
  color: #ff0004;
}
p sub,
p sup {
  margin: 0;
  line-height: 10%;
  font-size: 0.8;
}
ul {
  margin-left: 0.6em;
  padding-left: 0.6em;
}
ul li {
  list-style-type: square;
  list-style-position: outside;
  font-size: 1.2em;
  line-height: 145%;
  margin: 0;
  padding: 0;
}

/* --------------------------------------Schaltflächen-------------------------------------- */

.btn {
  min-width: 250px;
  background: linear-gradient(45deg, rgba(203, 181, 106, 1) 29%, rgba(255, 255, 255, 1) 51%, rgba(203, 181, 106, 1) 73%);
  position: relative;
  z-index: 10;
  display: inline-block;
  padding: 2px;
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
  margin: 4px;
}

.btnInner {
  width: 100%;
  text-align: center;
  display: inline-block;
  text-transform: uppercase;
  color: #cbb56a;
  background-image: url("../images/btn_off.png");
  background-size: auto 100%;
  font-size: 1.4em !important;
  text-decoration: none !important;
  font-size: inherit;
  padding: 18px 50px;
  letter-spacing: 2px;
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
  -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color=#000000)"; /*IE 8*/
  text-shadow: 0 0 0 #000000, 3px 3px 3px #000000; /* FF3.5+, Opera 9+, Saf1+, Chrome, IE10 */
  filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color=#000000); /*IE 5.5-7*/
  transition: all 0.3s ease;
}

.btnInner:hover {
  background-image: url("../images/btn_on.png");
}

/* --------------------------------------Videos-------------------------------------- */
.videoContainer {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  border-image-slice: 27 27 27 27;
  border-image-width: 20px 20px 20px 20px;
  border-image-outset: 8px;
  border-image-repeat: stretch stretch;
  border-image-source: url("../images/videoframe.png");
  border-style: solid;
  background-color: #cbb56a;
}

.videoContent {
  width: 100%;
  display: block;
  cursor: pointer;
}

.videoControls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1d1d1b;
  padding: 10px;
}

.videoBtn {
  background-image: url("../images/icons/icon_play.svg");
  background-repeat: no-repeat;
  background-color: #1d1d1b;
  width: 30px;
  height: 30px;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.videoBtn:hover {
  opacity: 0.7;
}

.videoPlayerPaused {
  background-image: url("../images/icons/icon_pause.svg");
  background-repeat: no-repeat;
  background-color: #1d1d1b;
  width: 30px;
  height: 30px;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.videoFullscreenBtn {
  background-image: url("../images/icons/icon_fullscreen.svg");
  background-repeat: no-repeat;
  background-color: #1d1d1b;
  width: 24px;
  height: 24px;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 14px;
  transition: opacity 0.3s ease;
  margin-left: 10px;
}
.videoFullscreenBtn:hover {
  opacity: 0.7;
}

.videoTime {
  color: #fff;
  font-size: 1em;
  font-weight: 100;
}

/* Grundstil für den Slider */
.videoSeekbar {
  -webkit-appearance: none; /* Entfernt das Standardstyling in WebKit-Browsern */
  -moz-appearance: none; /* Entfernt das Standardstyling in Firefox */
  appearance: none;
  width: 100%;
  height: 6px; /* Höhe der Spur */
  background: #5c5c5c; /* Farbe der Spur */
  outline: none;
  margin: 0 10px;
}

/* Gestalten des Schiebereglers */
.videoSeekbar::-webkit-slider-thumb {
  -webkit-appearance: none; /* Entfernt Standardlook */
  appearance: none;
  width: 16px;
  height: 16px;
  background: #fff; /* Farbe des Schiebereglers */
  border-radius: 50%; /* Rund */
  cursor: pointer;
  margin-top: -5px;
}

.videoSeekbar::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: #fff;
  border: none; /* Entfernt Ränder */
  border-radius: 50%;
  cursor: pointer;
  margin-top: -5px;
}

.videoSeekbar::-ms-thumb {
  width: 16px;
  height: 16px;
  background: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -5px;
}

/* Optionale Anpassungen für die aktive Spur */
.videoSeekbar::-webkit-slider-runnable-track {
  background-color: #fff;
  height: 4px !important;
}

.videoSeekbar::-moz-range-track {
  background-color: #fff;
  height: 4px !important;
}

.videoSeekbar::-ms-track {
  background: transparent;
  border-color: transparent;
  color: transparent;
  height: 4px !important;
}

/* --------------------------------------Header-------------------------------------- */

.topLogo {
  width: 100px;
  position: fixed;
  left: 20px;
  top: 20px;
  z-index: 9999;
  display: none;
}

.topLogoInvert {
  filter: invert(1) !important;
}

/* --------------------------------------Intro-------------------------------------- */
.intro {
  width: 100%;
  height: 115vh;
  display: block;
  background-image: url("../images/intro.webp");
  background-size: cover;
  background-position: center top;
  position: relative;
}

.introContent {
  width: 100%;
  max-width: 900px;
  position: absolute;
  left: 50%;
  top: 150px;
  transform: translate(-50%, 0);
  text-align: center;
  padding: 0 20px 0 20px;
  z-index: 10;
}

.logo {
  width: 100%;
  max-width: 600px;
}

.introContent h1 {
  font-family: "Neuton";
  font-size: 2em;
  font-weight: normal;
  text-align: center;
  margin-top: 10px;
}

.introBtnWrapper {
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  text-align: center;
  padding: 0 5px;
}

#svlogo {
  width: 30px;
  height: auto;
  right: 20px;
  bottom: 160px;
  position: absolute;
  z-index: 10;
}

@media only screen and (max-width: 768px) {
  #svlogo {
    width: 20px;
    height: auto;
    right: 10px;
    bottom: 17vh;
    position: absolute;
    z-index: 10;
  }
}

/* --------------------------------------Sections-------------------------------------- */

.sectionTeaser {
  /*  background: linear-gradient(to bottom, #8c7728 0%, #57704a 100%);*/
  position: relative;
  background-color: #937835;
  position: relative;
  background-image: url("../images/bgmap.webp");
  background-size: contain;
  background-position: center center;
  height: auto;
}

.sectionGreen {
  background: url("../images/wasserzeichen-drache.webp") no-repeat center top 60px, linear-gradient(180deg, #58714a 0, #073029 100%);
  background-repeat: no-repeat;
  background-size: auto;
  position: relative;
  padding: 60px 0 20px 0;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 768px) {
  .sectionGreen {
    background: url("../images/wasserzeichen-drache.webp") no-repeat center top 60px, linear-gradient(180deg, #58714a 0, #073029 100%);
    background-size: 90% auto;
  }
}

.contentGreen {
  max-width: 1000px;
  color: #fff;
  margin: 0 auto 40px auto;
  z-index: 10;
  text-align: center;
  padding: 0 20px;
}

.sectionRing {
  background-image: url("../images/sep01.webp");
  min-height: 100vh;
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.sectionBlue {
  background-color: #1e3446;
  background: url("../images/wasserzeichen-drache.webp") no-repeat center top 60px, linear-gradient(180deg, #1e3446 0, #0d1917 100%);
  position: relative;
  height: auto;
}

@media only screen and (max-width: 768px) {
  .sectionBlue {
    background: url("../images/wasserzeichen-drache.webp") no-repeat center top 60px, linear-gradient(180deg, #1e3446 0, #0d1917 100%);
    background-size: 90% auto;
  }
}

.sectionMusic {
  background-image: url("../images/sep07.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 100px 0;
  position: relative;
  height: auto;
}

@media only screen and (max-width: 768px) {
  .sectionMusic {
    background-position: left -200px center;
  }
}
.sectionAuthor {
  background: url("../images/sternenhimmel.webp") repeat center top 60px, linear-gradient(180deg, #091425 50%, #0f213b 75%, #3f5572 100%);
  padding-top: 60px;
  position: relative;
  height: auto;
}

.sectionDiscover {
  background-image: url("../images/sep08.webp");
  background-size: cover;
  padding: 60px 0 60px 0;
  position: relative;
}

.sectionCrown {
  background: url("../images/wasserzeichen-krone.webp") no-repeat center top 60px, linear-gradient(180deg, #236250 0, #1e3446 100%);
  background-repeat: no-repeat;
  background-size: auto;
  padding: 40px 0;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .sectionCrown {
    background: url("../images/wasserzeichen-krone.webp") no-repeat center top 60px, linear-gradient(180deg, #236250 0, #1e3446 100%);
    background-size: 90% auto;
  }
}

.sectionReviews {
  background-image: url("../images/sep05.webp");
  background-position: center top;
  background-size: cover;
  position: relative;
  min-height: 80vh;
  padding: 100px 20px;
}

.sectionCave {
  background-image: url("../images/sep06.webp");
  height: auto;
  min-height: 80vh;
  background-position: center center;
  width: 100%;
  height: 80vh;
  background-size: cover;
  background-position: center center;
  position: relative;
}

@media only screen and (max-width: 500px) {
  .sectionCave {
    background-position: left -220px center;
  }
}

.sectionCave .btn {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translate(-50%, 0);
  cursor: pointer;
}

.sectionContent {
  width: 100%;
  max-width: 1200px;
  padding: 40px 20px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  z-index: 10;
  position: relative;
}

/* --------------------------------------Ränder-------------------------------------- */

.edgeIntro {
  width: 100%;
  height: 85px;
  background-image: url("../images/roughenedpaper_top.png");
  background-repeat: repeat-x;
  background-position: left bottom;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.edgeMap {
  width: 100%;
  height: 39px;
  background-image: url("../images/edgemaptop.png");
  background-repeat: repeat-x;
  background-position: left bottom;
  position: absolute;
  top: 0;
  left: 0;
}

.edgeIvy {
  width: 100%;
  height: 185px;
  background-image: url("../images/efeu.png");
  background-repeat: repeat-x;
  background-position: left top;
  position: absolute;
  top: 0;
  left: 0;
}

.edgeTendril {
  width: 100%;
  height: 125px;
  background-image: url("../images/efeu-blau.png");
  background-repeat: repeat-x;
  background-position: left top;
  position: absolute;
  top: 0;
  left: 0;
}

.edgeShrub {
  width: 100%;
  height: 140px;
  background-image: url("../images/busch.png");
  background-repeat: repeat-x;
  background-position: left top;
  position: absolute;
  bottom: 0;
  left: 0;
}

.edgeRockTop {
  width: 100%;
  height: 185px;
  background-image: url("../images/felsen_oben.png");
  background-repeat: repeat-x;
  background-position: left top;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.edgeRockBottom {
  width: 100%;
  height: 20px;
  background-image: url("../images/felsen_unten.png");
  background-repeat: repeat-x;
  background-position: left top;
  position: absolute;
  bottom: 0;
  left: 0;
}

.edgeWave {
  width: 100%;
  height: 35px;
  background-image: url("../images/wave.png");
  background-repeat: repeat-x;
  background-position: left top;
  position: absolute;
  bottom: 0;
  left: 0;
}

.edgeSky {
  width: 100%;
  height: 55px;
  background-image: url("../images/himmel_bottom.png");
  background-repeat: repeat-x;
  background-position: center bottom;
  position: absolute;
  top: 0;
  left: 0;
}

.edgeNightSky {
  width: 100%;
  height: 55px;
  background-image: url("../images/himmel_top.png");
  background-repeat: repeat-x;
  background-position: center top;
  position: absolute;
  bottom: 0;
  left: 0;
}

.edgeGradientTop {
  background-image: url("../images/topgradient.png");
  background-repeat: repeat-x;
  background-position: center top;
  position: absolute;
  left: 0;
  top: 0;
  height: 150px;
  width: 100%;
  z-index: 0;
}

.edgeGradientBottom {
  background-image: url("../images/bottomgradient.png");
  background-repeat: repeat-x;
  background-position: center top;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 150px;
  width: 100%;
  z-index: 0;
}

.mapGradientTop {
  background-image: url("../images/mapGradientTop.png");
  background-repeat: repeat-x;
  background-position: center top;
  position: absolute;
  left: 0;
  top: 0;
  height: 70px;
  width: 100%;
  z-index: 0;
}

.mapGradientBottom {
  background-image: url("../images/mapGradientBottom.png");
  background-repeat: repeat-x;
  background-position: center top;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 70px;
  width: 100%;
  z-index: 0;
}

/* --------------------------------------Sonstiges-------------------------------------- */

.trennerAmulett {
  width: 100%;
  max-width: 80px;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
}

.trennerAmulett:hover {
  transform: rotate(180deg);
}

.cdCover {
  width: 100%;
  max-width: 400px;
}

@media only screen and (max-width: 768px) {
  .cdCover {
    max-width: 250px;
  }
}

.quote {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 20px;
  background-image: url("../images/quote.png");
  background-size: 100% 100%;
  width: 100%;
  max-width: 700px;
}

.quote strong {
  font-size: 1.6em;
  font-style: italic;
  line-height: 130%;
  display: block;
}

.contentAuthor {
  width: 100%;
  max-width: 1000px;
  color: #fff;
  margin: 0 auto;
  padding: 0 20px 140px 20px;
  z-index: 10;
}

.contentAuthor h2 {
  color: #fff;
  line-height: 100%;
  margin-bottom: 40px;
}

/* --------------------------------------Shop-------------------------------------- */

.shop {
  width: 100%;
  height: auto;
  min-height: 100vh;
  margin: 0 auto;
  text-align: center;
  padding: 100px 20px 60px 20px;
  background-color: #000;
  position: relative;
  background-image: url("../images/sep04.webp");
  background-size: cover;
  z-index: 500;
  display: flex;
  align-items: center;
}

.shop h2 {
  color: #fff;
  font-weight: normal;
}

.shop p {
  padding-bottom: 20px;
  display: block;
  color: #fff;
}

.shop .btn {
  margin: 10px;
}

.shopBtnContainer {
  z-index: 500;
  position: relative;
  width: 100%;
}

.himmel {
  background-image: url("../images/sternenhimmel.webp");
}

.txtWhite {
  color: #fff;
}

.darkGreen {
  background-color: #b29435;
}

/* --------------------------------------Rezensionen-------------------------------------- */

.rezension {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 650px) {
  .rezension {
    width: 100%;
    max-width: 80%;
  }
}

.rezensionContainer {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  background-color: #00000050;
  border-image-slice: 27 27 27 27;
  border-image-width: 3px 3px 3px 3px;
  border-image-outset: 0px 0px 0px 0px;
  border-image-repeat: repeat repeat;
  border-image-source: url("../images/border-grunge.jpg");
  border-style: solid;
}

.rezensionWrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.rezensionSlide {
  display: flex;
  flex: 0 0 100%;
  flex-direction: column;
  flex-direction: column; /* Elemente werden vertikal angeordnet */
  justify-content: center; /* Vertikale Zentrierung */
  align-items: center; /* Horizontale Zentrierung */
  box-sizing: border-box;
  padding: 10px;
  min-height: 300px;
  color: #fff;
  padding: 20px;
}

.stars {
  width: 120px;
  height: 20px;
  background-image: url("../images/star.svg");
  background-repeat: repeat-x;
  display: block;
  margin: 0 auto 10px auto;
}

.rezensionSlide img {
  flex: auto;
  max-width: 180px;
  width: 100%;
  margin: 0 auto;
}

.rezensionSlide p {
  font-style: italic;
}

.rezensionSlide p span {
  font-style: normal;
  font-size: 0.8em;
  display: block;
}
.rezensionSlide p span::before {
  content: "___";
  display: block;
  padding-bottom: 5px;
}

.rezensionNav {
  border: none;
  width: 35px;
  height: 100%;
  background-size: 30px 30px;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  position: absolute;
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
  top: 50%;
  transform: translate(0, -50%);
}

.rezensionNav:hover {
  opacity: 1;
}

#prevBtn {
  background-image: url(../images/icons/icon_prev.svg);
  left: -35px;
}

#nextBtn {
  background-image: url(../images/icons/icon_next.svg);
  right: -35px;
}

.buchcover {
  width: 100%;
  max-width: 250px;
}

.coverBg {
  width: 100%;
  background-image: url("../images/war.png");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center center;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .coverBg {
    width: 100%;
    background: none;
  }
}

.shopCover {
  width: 100%;
  max-width: 350px;
  margin-bottom: 20px;
}

.musicPlayerContainer {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 10px;
  text-align: center;
}

#musicPlayer {
  width: 100%;
  margin: 20px auto;
  padding: 10px;
  background-color: #00000050;
  border-image-slice: 27 27 27 27;
  border-image-width: 3px 3px 3px 3px;
  border-image-outset: 0px 0px 0px 0px;
  border-image-repeat: repeat repeat;
  border-image-source: url("../images/border-grunge.jpg");
  border-style: solid;
}
.track-list {
  max-height: 500px;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #fff;
  font-size: 1.2em;
  text-align: left;
}
.track {
  position: relative;
  padding: 10px 10px 10px 33px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.192);
  overflow: hidden;
  background-image: url("../images/musicnote.svg"), url("../images/musicplay.svg");
  background-repeat: no-repeat;
  background-position: left 5px center, right 5px center;
  background-size: 18px auto, 10px auto;
}

.track.trackActive {
  background-image: url("../images/musicnote.svg"), url("../images/currentTrack.svg");
  background-repeat: no-repeat;
  background-position: left 5px center, right 5px center;
  background-size: 18px auto, 14px auto;
}

.trackActive,
.track:hover {
  background-color: #ffffff0c;
}

.musicProgressBarContainer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: pointer;
  z-index: 1;
}

.track span {
  position: relative;
  z-index: 3;
}
.musicProgressBar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.192);
  z-index: -1;
}
#musicPlayerControls {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
#musicPlayerControls button {
  margin: 0 5px;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  background-image: url("../images/icons/icon_play.svg"); /* Standard Play-Symbol */
  width: 50px;
  height: 50px;
  background-color: transparent;
  opacity: 1;
  transition: opacity 0.3s ease;
}

#musicPlayerControls button:hover {
  opacity: 0.8;
}

#musicPlayerControls button.playerPause {
  background-image: url("../images/icons/icon_pause.svg"); /* Pausen-Symbol */
}

/* --------------------------------------Autorin-------------------------------------- */

.portrait {
  z-index: 100;
  position: relative;
  width: 100%;
  max-width: 350px;
}

.landscape {
  width: 100%;
  margin: 0 auto;
  height: 12px;
  background-image: url("../images/gras.png");
  position: absolute;
  left: 0;
  bottom: 0;
}

.village {
  position: absolute;
  width: 100%;
  max-width: 700px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

@keyframes animateBg {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.shootingstars {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 0;
  overflow: hidden;
}

.shootingstars span {
  position: absolute;
  top: 0;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1), 0 0 0 8px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 255, 255, 0.1);
  animation: animate 3.9s linear infinite; /* 30% langsamer */
}

.shootingstars span::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, #fff, transparent);
}

@keyframes animate {
  0% {
    transform: rotate(315deg) translateX(0);
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: rotate(315deg) translateX(-1000px);
    opacity: 0;
  }
}

.shootingstars span:nth-child(1) {
  left: 0%;
  animation-delay: 0s;
  animation-duration: 1.3s;
}

.shootingstars span:nth-child(2) {
  left: 33%;
  animation-delay: 0.2s;
  animation-duration: 3.9s;
}

.shootingstars span:nth-child(3) {
  left: 66%;
  animation-delay: 0.4s;
  animation-duration: 2.6s;
}

.shootingstars span:nth-child(4) {
  left: 100%;
  animation-delay: 0.6s;
  animation-duration: 1.95s;
}

/* --------------------------------------Footer-------------------------------------- */
.footer {
  width: 100%;
  position: relative;
  flex-shrink: 0;
  background-color: #000;
  padding: 20px;
}

.footerContent {
  color: #cbb56a;
  text-align: center;
  font-size: 0.8em;
  border-top: 1px solid #3a3a3a;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 20px;
}

.footerContent a:link,
.footerContent a:visited,
.footerContent a:active {
  color: #cbb56a;
  text-decoration: none;
  text-transform: uppercase;
  margin: 8px;
  letter-spacing: 2px;
}

.footerContent a:focus,
.footerContent a:hover {
  text-decoration: underline;
}

/* --------------------------------------Landkarte-------------------------------------- */

.mapFrame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.openMap {
  transition: opacity 0.5s ease;
}

.hidden {
  opacity: 0;
  pointer-events: none;
}
.map {
  position: absolute;
  cursor: grab;
  z-index: 1;
}

.map img {
  width: 2600px;
}

.kompass {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 100px;
  height: 100px;
  z-index: 6;
  background-image: url("../images/kompass.webp");
  background-size: contain;
  pointer-events: none;
}

.needle {
  position: absolute;
  width: 40px;
  height: 40px;
  transform-origin: 50% 50%;
  left: 33px;
  top: 30px;
}

.needle img {
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
}

.fire {
  position: absolute;
  width: 100%;
  max-width: 700px;
  height: 100%;
  max-height: 70%;
  overflow: hidden;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 10;
  display: flex;
  justify-content: center;
}

.spark {
  position: absolute;
  bottom: 0;
  width: 5px;
  height: 5px;
  background-color: rgba(255, 215, 0, 0.8);
  border-radius: 50%;
  animation: sparkAnimation 2s infinite;
  opacity: 0;
}

@keyframes sparkAnimation {
  0% {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-30px) translateY(-150px);
    opacity: 0.8;
  }
  100% {
    transform: translateX(30px) translateY(-300px);
    opacity: 0;
  }
}

/* Zufällige Platzierung der Funken */
.fire .spark:nth-child(odd) {
  animation-duration: 1.8s;
}

.fire .spark:nth-child(even) {
  animation-duration: 2.2s;
}

.fire .spark:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}
.fire .spark:nth-child(2) {
  left: 20%;
  animation-delay: 0.1s;
}
.fire .spark:nth-child(3) {
  left: 30%;
  animation-delay: 0.2s;
}
.fire .spark:nth-child(4) {
  left: 40%;
  animation-delay: 0.3s;
}
.fire .spark:nth-child(5) {
  left: 50%;
  animation-delay: 0.4s;
}
.fire .spark:nth-child(6) {
  left: 60%;
  animation-delay: 0.5s;
}
.fire .spark:nth-child(7) {
  left: 70%;
  animation-delay: 0.6s;
}
.fire .spark:nth-child(8) {
  left: 80%;
  animation-delay: 0.7s;
}
.fire .spark:nth-child(9) {
  left: 90%;
  animation-delay: 0.8s;
}
.fire .spark:nth-child(10) {
  left: 15%;
  animation-delay: 0.9s;
}
.fire .spark:nth-child(11) {
  left: 25%;
  animation-delay: 1s;
}
.fire .spark:nth-child(12) {
  left: 35%;
  animation-delay: 1.1s;
}
.fire .spark:nth-child(13) {
  left: 45%;
  animation-delay: 1.2s;
}
.fire .spark:nth-child(14) {
  left: 55%;
  animation-delay: 1.3s;
}
.fire .spark:nth-child(15) {
  left: 65%;
  animation-delay: 1.4s;
}
.fire .spark:nth-child(16) {
  left: 75%;
  animation-delay: 1.5s;
}
.fire .spark:nth-child(17) {
  left: 85%;
  animation-delay: 1.6s;
}
.fire .spark:nth-child(18) {
  left: 95%;
  animation-delay: 1.7s;
}
