@font-face {
  font-family: "FKGrotesk";
  src: url("/assets/fonts/FKGrotesk-Bold.otf") format("opentype");
}

* {
  box-sizing: border-box;
  font-family: "FKGrotesk";
}

body {
  background-color: black;
  margin: 0;
  overflow: hidden;
}

main {
  margin-left: 30px;
}

.font-big,
li {
  font-size: 85px;
  letter-spacing: -3px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(227, 227, 227, 0.9) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 1;
}

.font-small {
  font-size: 16px;
  letter-spacing: -0.5px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(227, 227, 227, 0.9) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 1;
  border: 2.3px solid #ededed;
  border-radius: 21px;
  padding: 6px 12px;
  max-height: 35.5px;
}

.header {
  margin-top: 10px;
  display: flex;
  flex-direction: row-reverse;
  position: absolute;
}

.claim {
  gap: 0px;
  display: flex;
}

.links {
  position: absolute;
  display: flex;
  gap: 5px;
  bottom: 25px;
  z-index: 5;
}

.video-container {
  z-index: -1;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.video-wrapper {
  min-width: 500px;
  border-radius: 40px;
  overflow: hidden;
}

.video {
  object-fit: cover;
  width: 100%;
  height: 100vh;
  filter: blur(8px);
  transition: filter 0.5s;
}

.slider-fix,
li {
  margin: 0;
}

.slider-container {
  display: grid;
  grid-template-rows: 1fr 1fr;
  position: absolute;
  z-index: 1;
  top: 42.5%;
  visibility: hidden;
  animation: listSlidersTitel 6s cubic-bezier(0.7, 0.1, 0.1, 1) forwards;
  animation-delay: 1s;
}

@keyframes listSlidersTitel {
  /* Für 5 Items mit korrekten Prozentangaben */
  0%,
  99% {
    /* Item 4 */
    visibility: visible;
  }
  99%,
  100% {
    /* Item 5 */
    visibility: hidden;
  }
}

.height-container {
  /* background-color: red; */
  margin-top: -35px;
  height: 0;
  min-height: 100%;
  clip-path: inset(18% 0 0 0);
  opacity: 1;
  /* animation: listSliderCoSo cubic-bezier(0.7, 0.1, 0.1, 1) 1s 9s 6000 forwards; */
}

.transition-container {
  height: 100%;
  overflow: hidden;
  transform: translateZ(0);
  /* ^ Needed for 'overflow: hidden' and 'transform' to work in Safari */
}

.sliders {
  margin: 0;
  padding: 0;
  list-style-type: none;
  animation: listSlider 6s cubic-bezier(0.7, 0.1, 0.1, 1) forwards;
  animation-delay: 1s;
}

.comingSoon {
  top: 42.5%;
  position: absolute;
  z-index: 2;
  opacity: 0;
  animation: CoSo 1s 7s 5 cubic-bezier(0.7, 0.1, 0.1, 1);
}

@keyframes CoSo {
  0%,
  12.5% {
    will-change: transform;
    transform: translate3d(0, 0, 0);
    filter: blur(8px);
    -webkit-filter: blur(8px);
    opacity: 0;
  }
  100% {
    will-change: transform;
    transform: translate3d(0, 0, 0);
    filter: blur(0px);
    -webkit-filter: blur(0px);
    opacity: 1;
  }
}

@keyframes listSlider {
  /* Für 5 Items mit korrekten Prozentangaben */
  0%,
  15% {
    /* Item 1 */
    visibility: visible;
    transform: none; /* Bleibt unverändert */
  }
  35%,
  40% {
    /* Item 2 */
    visibility: visible;
    transform: translateY(-25%); /* Verschiebt um 25% für das zweite Item */
  }
  60%,
  65% {
    /* Item 3 */
    visibility: visible;
    transform: translateY(-50%); /* Verschiebt um 50% für das dritte Item */
  }
  85%,
  90% {
    /* Item 4 */
    visibility: visible;
    transform: translateY(-75%); /* Verschiebt um 75% für das vierte Item */
  }
  90%,
  99% {
    /* Item 4 */
    visibility: visible;
    transform: translateY(-75%); /* Verschiebt um 75% für das vierte Item */
  }
  99%,
  100% {
    /* Item 4 */
    visibility: hidden;
    transform: translateY(-75%); /* Verschiebt um 75% für das vierte Item */
  }
}

a:has(img) {
  height: 35.5px;
  width: 35.5px;
}

a:has(img) img {
  padding: none;
  margin: 1px -5px;
}

.tiktok {
  transform: translateY(-1px);
}

.ticker-wrapper {
  opacity: 0.5;
  left: 310px;
  bottom: 32px;
  color: #ededed;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  width: calc(100% - 310px);
  position: absolute;
  z-index: 3000;
}

.ticker {
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 800px) {
  main {
    margin-left: 10px;
  }

  ul {
    animation-delay: 1s;
  }
  section {
    animation-delay: 1s;
  }

  .logo {
    transform: translateY(-5px);
  }
  .links {
    bottom: 42px;
  }

  .header {
    flex-direction: column;
    margin-top: 12px;
  }
  .comingSoon {
    top: 45%;
  }

  .comingSoon,
  .slider-container {
    transform: translateY(-10%);
  }

  .video-container {
    pointer-events: none;
  }

  .video {
    filter: blur(0px);
  }

  .video-wrapper {
    width: 100vw;
    height: 100svh;
    animation: listSlidersVideo 10s forwards;
  }

  @keyframes listSlidersVideo {
    /* Für 5 Items mit korrekten Prozentangaben */
    0%,
    99% {
      filter: blur(8px);
    }

    100% {
      /* Item 5 */
      filter: blur(0px);
    }
  }

  .font-big,
  li {
    font-size: 15.75vw;
  }

  .height-container {
    /* background-color: red; */
    margin-top: -6.5vw;
    height: 0;
    min-height: 100%;
    clip-path: inset(18% 0 0 0);
  }

  .ticker-wrapper {
    left: 0px;
    bottom: 10px;
    color: #ededed;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    width: 100%;
    position: absolute;
    z-index: 3000;
  }
}

/* a:hover,
button:hover,
.button:hover {
  border-radius: 0px;
  transition: 200ms;
} */

@media (min-width: 800px) {
  section {
    grid-template-columns: 1fr 1fr;
  }

  .height-container {
    /* background-color: red; */
    margin-top: 0px;
    margin-left: -40px;
    height: 0;
    min-height: 100%;
  }

  .claim {
    margin-top: 48px;
    margin-left: 15px;
  }
}

.mc-field-group,
.optionalParent {
  margin-bottom: 10px;
}

/*////////////DROPDOWN/////////////////*/
input,
label {
  background: none;
  outline: none;
  box-shadow: none;
  border: none;
  caret-color: white;
  width: 270px;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}
input:focus::-moz-placeholder {
  color: transparent;
}
input:-moz-placeholder {
  color: transparent;
}
input:focus::-webkit-input-placeholder {
  opacity: 0;
}
input:focus::-moz-placeholder {
  opacity: 0;
}
input:-moz-placeholder {
  opacity: 0;
}

.button,
button {
  cursor: pointer;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-text-fill-color: #ededed !important;
}

/* button:hover {
  border-color: transparent;
  transition-duration: 1s;
  transition-timing-function: ease-out;
} */

.button {
  opacity: 0.5;
  font-style: normal;
  font-weight: normal;
}

.opacity {
  opacity: 0.5;
  transform: scale(0.97);
  transform-origin: left;
  /* margin-right: -2px; */
}

.dropdown {
  position: relative;
  display: inline-block;
}

/* Der Container für die Dropdown-Inhalte. Jetzt öffnet er sich nach oben */
.dropdown-content {
  display: none;
  position: absolute;
  bottom: 100%; /* Positioniert den Inhalt oben am Button */
  z-index: 2;
}

.show {
  display: block;
}
