@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Petit+Formal+Script&display=swap");
:root {
  --color-primary: #83cabc;
  --color-secondary: #4542db;
  --color-background: #505050;
  --color-accent: #ff62e5;
  --color-gradient-1: #939393;
  --color-gradient-2: #8e89c9;
  --color-gradient-3: #86cdac;
  --color-gradient-4: #4d4d4d;
  --color-white: #ffffff;
  --color1: #bbff96;
  --color2: #83cabc;
  --color3: #4542db;
  --color4: #ff62e5;
}

body {
  margin: 0;
  background-color: var(--color-background);
  color: var(--color-primary);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  box-sizing: border-box;
}

.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

#trailer-container {
  height: 100vh;
  width: 100vw;
  z-index: 20;
}

#trailer-button-floating {
  color: var(--color-white);
  width: 40vw;
  height: 40vh;
  border: none;
  cursor: pointer;
  font-size: 3.4rem;
  text-transform: uppercase;
  font-weight: 800;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.trailer-btn {
  color: inherit;
  font-size: 2.6rem;
  border: none;
  cursor: pointer;
  font-size: 7.4rem;
  text-transform: none;
  font-weight: 800;
  background-color: transparent;
  padding: 0;
  font-family: "Petit Formal Script", serif;
  border: 3px solid;
  border-radius: 50%;
  position: relative;
}
.trailer-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  pointer-events: none;
  left: 0;
  z-index: -1;
  transform: scale(2);
}
.trailer-btn img.hidden {
  visibility: hidden;
}

.trailer-btn-sml {
  display: block;
  font-size: 1.6rem;
  font-family: Helvetica, Arial, sans-serif;
}

header {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

h1 {
  font-size: 18rem;
  width: 100%;
  position: fixed;
  text-align: center;
  margin: 0;
  color: var(--color-accent);
  font-family: Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  z-index: 10;
  -webkit-text-stroke: 8px var(--color-background);
  z-index: 10;
}

h3 {
  color: var(--color-secondary);
  font-size: 4rem;
  line-height: 3.4rem;
  text-transform: uppercase;
  margin: 0 0 3rem 0;
}

nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 16vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 30;
}

.nav-btn {
  background-color: var(--color-primary);
  opacity: 0.9;
  color: var(--color-secondary);
  width: 24%;
  height: 14vh;
  border: none;
  cursor: pointer;
  font-size: 3.4rem;
  text-transform: uppercase;
  font-weight: 800;
  border: 20px solid var(--color-secondary);
  border-style: ridge;
}

.nav-btn:hover {
  border-style: groove;
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

#player-container #play-pause {
  cursor: pointer;
  text-indent: -999999px;
  position: fixed;
  top: 8rem;
  right: 1rem;
  height: 4rem;
  width: 4rem;
  /* padding: 12px 18px; */
  z-index: 31;
}

#player-container #play-pause svg {
  height: 100%;
  position: absolute;
  fill: var(--color-secondary);
}

.play #pausebuttonsvg {
  display: none;
}

.play #playbuttonsvg {
  display: block;
}

.pause #pausebuttonsvg {
  display: block;
}

.pause #playbuttonsvg {
  display: none;
}

.marquee {
  width: 100%;
  position: absolute;
  height: 10vh;
  background-color: var(--color-primary);
  color: var(--color-secondary);
  overflow: hidden;
  white-space: nowrap;
  z-index: 1;
  width: 100%;
  height: 10vh;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  margin-top: 0;
  border-bottom: 20px solid var(--color-secondary);
  border-style: ridge;
  z-index: 1;
}

.marquee-content {
  display: inline-block;
  font-size: 4rem;
  font-style: italic;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marquee:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  background-color: rgba(106, 192, 166, 0.7);
  z-index: 32;
  animation: fadeIn 5s forwards;
  border: 20px solid var(--color-secondary);
  border-style: ridge;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.popup-content {
  overflow-y: scroll;
  color: var(--color-background);
  padding: 0;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  font-size: 1.5rem;
}
.popup-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.popup .close {
  position: absolute;
  top: 0;
  right: 30px;
  font-size: 6rem;
  cursor: pointer;
  color: var(--color-secondary);
  font-weight: 100;
  z-index: 30;
  transition: transform 0.3s ease;
}

@keyframes crazyClose {
  0% {
    transform: rotate(0) scale(1);
  }
  20% {
    transform: rotate(360deg) scale(1);
  }
  40% {
    transform: rotate(720deg) scale(1.6);
  }
  60% {
    transform: rotate(1080deg) scale(1.6);
  }
  80% {
    transform: rotate(1080deg) scale(1);
  }
  100% {
    transform: rotate(1080deg) scale(1);
  }
}
.popup .close:hover {
  animation: crazyClose 1s ease forwards;
}

.highlight {
  color: var(--color-secondary);
}

.highlight2 {
  color: var(--color-white);
  opacity: 0.4;
}

.highlight3 {
  border-bottom: 2px solid var(--color-secondary);
}

.popup-content {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-secondary) transparent;
}

.popup-content::-webkit-scrollbar {
  width: 8px;
}

.popup-content::-webkit-scrollbar-thumb {
  background-color: var(--color-secondary);
  border-radius: 4px;
}

.popup-content::-webkit-scrollbar-track {
  background: transparent;
}

#popup-info .popup-content .infos-text {
  width: 60%;
  letter-spacing: -0.025rem;
  padding: 2rem 2rem 2rem 2rem;
  font-size: 2.4rem;
  line-height: 2.4rem;
  position: absolute;
  margin-left: 20%;
}

#popup-info .popup-content img,
#popup-info .popup-content video {
  position: sticky;
  top: 0;
  height: 100%;
  width: 20%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
  filter: saturate(0.5);
}

#popup-info .popup-content video:first-child {
  left: 0;
}

#popup-info .popup-content video:last-child {
  right: 0;
  margin-left: 80%;
}

.popup-content-bios {
  display: grid;
  grid-template-columns: 50% 50%;
  letter-spacing: -0.025rem;
}

.popup-content-bios div {
  padding: 2rem;
  font-size: 2.6rem;
  line-height: 2.5rem;
}

.popup-content-support {
  display: flex;
  flex-direction: row;
}

.popup-content-support div {
  width: 50%;
  padding: 2rem;
  font-size: 2.6rem;
  line-height: 2.5rem;
}

.popup-content-contact {
  font-size: 3rem;
  line-height: 3.6rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  /* Lässt den Container den verfügbaren Platz einnehmen */
  justify-content: space-between;
  /* Verteilt den Inhalt: Hauptteil oben, Impressum unten */
}

.art-rev {
  margin-top: 4rem;
  color: var(--color-secondary);
}
.art-rev > div:first-child {
  margin-bottom: 3rem;
}

.good-vibes {
  margin-top: 4rem;
  font-size: 4rem;
  font-family: "Petit Formal Script", serif;
  color: #bbff96;
}

#popup-trailer {
  height: auto;
  line-height: 0;
  aspect-ratio: 16/9;
}
#popup-trailer > .popup-trailer {
  width: 100%;
  height: 100%;
}
#popup-trailer > .popup-trailer > .popup-content {
  display: block;
}
#popup-trailer > .popup-trailer > .popup-content > .popup-content-trailer {
  height: 100%;
  padding: 5rem;
}
#popup-trailer > .popup-trailer > .popup-content > .popup-content-trailer iframe {
  width: 100%;
  height: 100%;
}
#popup-trailer .close {
  top: 40px;
}
#popup-trailer video {
  width: 100%;
}

a {
  color: var(--color-secondary);
  border-bottom: 2px solid rgb(187, 255, 150);
  text-decoration: none;
}

.imprint {
  color: var(--color-secondary);
  font-size: 0.8rem;
  color: #828282;
  line-height: 1rem;
  margin-top: auto;
  /* Drückt das Impressum an den unteren Rand */
  margin-bottom: 0;
}

.blur-img {
  -webkit-mask-image: radial-gradient(circle, black, transparent 70%);
          mask-image: radial-gradient(circle, black, transparent 70%);
}

/* MEDIA QUERY */
@media (max-width: 1300px) {
  body {
    font-size: 18px;
  }
  .nav-btn {
    font-size: 2.6rem;
    width: 24%;
    height: 10vh;
  }
  header h1 {
    font-size: 14rem;
    color: yellow;
  }
}
@media (max-width: 1024px) {
  .nav-btn {
    font-size: 2.1rem;
    width: 24%;
    height: 9vh;
    border: 14px solid var(--color-secondary);
    border-style: ridge;
  }
  header h1 {
    font-size: 10rem;
    color: #b4befe;
    -webkit-text-stroke: 6px var(--color-background);
  }
  #popup-info .popup-content video {
    display: none;
  }
  #popup-info .popup-content .infos-text {
    width: 100%;
    margin-left: 0%;
  }
  .popup-content-bios {
    display: grid;
    grid-template-columns: 1fr;
  }
  .popup-content-support {
    flex-direction: column;
  }
  .popup-content-support div {
    width: 100%;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  header h1 {
    font-size: 8rem;
    -webkit-text-stroke: 5px var(--color-background);
    color: var(--color-primary);
  }
  .nav-btn {
    font-size: 2.4rem;
    width: 60%;
    height: 8vh;
    margin: 0.3rem 0;
  }
  nav {
    flex-direction: column;
    height: auto;
  }
  .popup {
    width: 90%;
    height: 90%;
    border: 14px solid var(--color-secondary);
    border-style: ridge;
  }
  .popup-content {
    padding: 0;
    font-size: 1.6rem;
  }
  .popup-content-bios div,
  .popup-content-contact,
  .popup-content-support div {
    font-size: 2.2rem;
    line-height: 2rem;
  }
  .popup-content-bios {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  header h1 {
    font-size: 8rem;
    -webkit-text-stroke: 4px var(--color-background);
    color: var(--color-accent);
    margin-top: 2rem;
  }
  .nav-btn {
    font-size: 2rem;
    width: 80%;
    height: 12vh;
    margin: 0;
  }
  nav {
    flex-direction: column;
    height: 50vh;
    margin-bottom: 1rem;
  }
  .nav-btn + .nav-btn {
    margin-top: 1rem;
  }
  header {
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    margin: 0;
    padding: 0;
  }
  header h1 {
    font-size: 5rem;
  }
  h3 {
    font-size: 2.6rem;
    line-height: 2.8rem;
  }
  .marquee-content {
    font-size: 2rem;
  }
  #player-container #play-pause {
    top: 5rem;
    right: 1rem;
    height: 3.4rem;
    width: 3.4rem;
  }
  #trailer-button-floating {
    width: 80vw;
    height: 80vh;
  }
  .trailer-btn {
    font-size: 3rem;
  }
  .good-vibes {
    font-size: 4.6rem;
    line-height: 4.2rem;
    max-width: 8ch;
  }
  #popup-info .popup-content .infos-text,
  .popup-content-bios div,
  .popup-content-contact,
  .popup-content-support div {
    font-size: 1.6rem;
    line-height: 1.8rem;
  }
  .popup-content-contact {
    padding: 6rem 2rem 2rem 2rem;
  }
  .popup-content-contact a {
    line-height: 2.3rem;
  }
  .popup .close {
    font-size: 5rem;
    line-height: 4.5rem;
    right: 15px;
  }
  div.hed-mail > div > a {
    word-break: break-all;
    max-width: 17ch;
  }
  div.art-rev > div:nth-child(4) {
    word-break: break-all;
    max-width: 12ch;
  }
  div.art-rev > div:nth-child(2) > span {
    display: block;
  }
  #popup-trailer > .popup-trailer > .popup-content > .popup-content-trailer {
    padding: 1rem;
  }
}/*# sourceMappingURL=style.css.map */