@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@100;300;400;500;700&display=swap");

html,
body {
  margin: 0;
  padding: 0;
}

html {
  background: black;
  color: white;
  font-family: Arial, sans-serif;
  height: 100vh;
  overflow: hidden;
}

.logoContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.Logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#Logo {
  cursor: pointer;
  -webkit-filter: invert(100%);
  filter: invert(100%);
  width: 35vw;
  position: relative;
  pointer-events: none;
  border-radius: 50%;
}

#LogoButton {
  aspect-ratio: 1 / 1;
  display: block;
  position: absolute;
  width: 25.3%;
  top: 38%;
  left: 25%;
  border-radius: 50%;
  z-index: 999;
}

.cta-button {
  position: fixed;
  bottom: 50%;
  right: 2%;
  transform: translateY(50%);
  z-index: 999;
}

.cta-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.arrow-icon {
  width: 3rem; /* Anpassen der Größe des Icons nach Bedarf */
  margin-right: 10px;
}

.event-page {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 98vh;
  background: rgb(0, 0, 0);
  margin: 0 auto;
  padding: 1rem;
  opacity: 0;
  padding-right: 5%;
}

.left-wrapper,
.right-wrapper {
  width: 50%;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  position: relative;
}

.left-wrapper::after {
  content: "";
  border-right: #ccc 2px solid;
  position: absolute;
  top: 15%;
  bottom: 15%;
  right: 13%;
}

.right-wrapper {
  overflow-y: auto;
  display: block;
  padding-right: 1rem;
  padding-bottom: 4rem;
}

/* Chrome, Safari und Edge */
.right-wrapper::-webkit-scrollbar {
  width: 1rem;
}

.right-wrapper::-webkit-scrollbar-track {
  background-color: white;
}

.right-wrapper::-webkit-scrollbar-thumb {
  background-color: black;
}

/* Firefox */
.right-wrapper {
  scrollbar-width: thin;
  scrollbar-color: black white;
}

.right-wrapper::-moz-scrollbar-thumb {
  background-color: black;
}

.right-wrapper::-moz-scrollbar-track {
  background-color: white;
}

.timetable {
  display: none;
  list-style-type: none;
  font-size: larger;
  font-weight: 600;
  line-height: 2rem;
}

.eventtime {
  list-style-type: none;
  font-size: larger;
  font-weight: 600;
  line-height: 2rem;
}

.info-boxes {
  border-top: 2px solid white;
}

.InfoBox {
  padding: 10px;
  border-radius: 5px;
}

.InfoTitle {
  cursor: pointer;
}

.InfoIcon {
  margin-right: 5px;
}

.InfoContent {
  display: none;
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
}

.InfoBox.open .InfoContent, .InfoBox.open .timetable {
  display: block;
  animation: slide-down 0.5s ease-in-out;
}

@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#logo-small {
  aspect-ratio: 1 / 1;
  padding: 0;
  -webkit-filter: invert(100%);
  filter: invert(100%);
  width: 83%;
}

.longdelay {
  opacity: 0;
  margin-top: 10%;
}

.pretix-wrapper-wrapper {
  opacity: 0;
}

p {
  margin-bottom: 20px;
  padding: 1rem;
  font-family: "Kanit", "sans-serif";
  font-size: large;
}

.footer-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}

.footer-buttons button {
  margin-top: 10px;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  background-color: transparent;
  color: white;
  cursor: pointer;
}

.footer-buttons button:hover {
  background-color: white;
  color: black;
}

.ContractText {
  overflow-y: scroll;
  display: block;
  height: 100vh;
  width: 90%;
  margin: auto;
}

/* Chrome, Safari und Edge */
.ContractText::-webkit-scrollbar {
  width: 1rem;
}

.ContractText::-webkit-scrollbar-track {
  background-color: white;
}

.ContractText::-webkit-scrollbar-thumb {
  background-color: black;
}

/* Firefox */
.ContractText {
  scrollbar-width: thin;
  scrollbar-color: black white;
}

.ContractText::-moz-scrollbar-thumb {
  background-color: black;
}

.ContractText::-moz-scrollbar-track {
  background-color: white;
}

.pretixButton {
  background-color: white;
  color: black;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
}

.cta-swipe {
  display: flex;
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.cta-swipe img{
  padding: 2rem;
}

.cta-swipe.swiping {
  transition: none;
}

@media (min-width:768px) {
  .cta-swipe{
    display: none;
  }
}

@media (max-width: 767px) {
  #Logo {
    width: 100vw;
  }

  .event-page {
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    max-width: 600px;
    overflow-y: scroll;
  }

  /* Chrome, Safari und Edge */
  .event-page::-webkit-scrollbar {
    width: 1rem;
  }

  .event-page::-webkit-scrollbar-track {
    background-color: white;
  }

  .event-page::-webkit-scrollbar-thumb {
    background-color: black;
  }

  /* Firefox */
  .event-page {
    scrollbar-width: thin;
    scrollbar-color: black white;
  }

  .event-page::-moz-scrollbar-thumb {
    background-color: black;
  }

  .event-page::-moz-scrollbar-track {
    background-color: white;
  }

  .left-wrapper::after {
    border: 0px solid;
  }

  .left-wrapper,
  .right-wrapper {
    width: 100%;
  }

  #logo-small {
    width: 100%;
  }

  .left-wrapper {
    justify-content: start;
  }

  .right-wrapper {
    width: 90%;
    height: unset;
    overflow-y: visible;
    display: block;
  }

  .cta-button{
    display: none;
  }

}

.pretixCustomButtonWrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.pretixCustomButton {
  display: inline-block;
  background-color: #000;
  color: #fff;
  border: 2px solid #fff;
  padding: 0.75em 1.5em;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  border-radius: 2em;
  transition: all 0.3s ease;
}

.pretixCustomButton:hover {
  background-color: #222;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 255, 255, 0.2);
}


