/*------------------
    MAIN STYLES
-------------------*/

body {
  background: #961dff; /*#00bf30*/
  color: white;
  overflow-x: hidden;
}

/*------------------
        GRID
-------------------*/

.GTG-grid {
  display: grid;
  padding: 2rem;
  grid-template-columns: repeat(5, 1fr);
  gap: 0rem 2rem;
}

@media (max-width: 1200px) {
  .GTG-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .GTG-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .GTG-grid {
    grid-template-columns: 1fr;
  }
}

/*------------------
     TYPO
-------------------*/

@font-face {
  font-family: "Manifont Grotesk"; /* Name der Schriftart */
  src: url("/assets/fonts/ManifontGroteskBook.woff2") format("woff2"),
    /* Pfad zur Schriftartdatei */ url("/assets/fonts/ManifontGroteskBook.woff")
      format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Manifont Bold"; /* Name der Schriftart */
  src: url("/assets/fonts/ManifontGroteskBold.woff2") format("woff2"),
    /* Pfad zur Schriftartdatei */ url("/assets/fonts/ManifontGroteskBold.woff")
      format("woff");
  font-weight: bold;
  font-style: normal;
}

.Titel {
  font-weight: normal;
  font-size: 1.2rem;
  margin-top: 0.3rem;
  color: white;
  font-family: "Manifont Grotesk", sans-serif;
}

.Name {
  font-size: 1.2rem;
  margin-top: -0.3rem;
  color: white;
  font-family: "Manifont Grotesk", sans-serif;
  /*text-transform: uppercase;*/
}

.button {
  text-decoration: none;
}

.Impressum {
  margin-top: 6rem;
  margin-left: 2rem;
  margin-bottom: 2rem;
  color: #000000;
  font-family: "Manifont Grotesk", sans-serif;
  text-transform: uppercase;
}

.Impressum:hover {
  cursor: pointer;
  font-family: "Manifont Grotesk", sans-serif;
}
/*.Kachel:hover .Name,
.Kachel:hover .Titel {
  opacity: 1;
}*/

h1 {
  font-family: "Manifont Grotesk", sans-serif;
  font-size: 6rem;
  font-weight: bold;
  margin-top: 15rem;
  margin-left: 7rem;
  text-transform: uppercase;
}
h2 {
  font-family: "Manifont Grotesk", sans-serif;
  font-size: 6rem;
  font-weight: bold;
  margin-left: 26rem;
  text-transform: uppercase;
}
.about-text {
  margin-bottom: 10rem;
  margin-top: 3rem;
  font-size: 1.8rem;
}

p,
.last-p {
  margin-left: 15rem;
  margin-right: 55rem;
  margin-top: 1.6rem;
  color: white;
  font-family: "Manifont Grotesk", sans-serif;
}

.last-p {
  width: 80ch;
}

em {
  font-family: "Manifont Bold", sans-serif;
  text-transform: uppercase;
}

/*------------------
    Button
-------------------*/

.btn-back {
  font-size: 6rem;
  margin-left: 2rem;
  position: fixed;
  color: white;
  font-family: "Manifont Grotesk", sans-serif;
  transition: all 0.3s ease;
}

.btn-back:hover {
  cursor: pointer;
  text-shadow: 5px -5px 5px #00bf30;
}
.About {
  position: absolute;
  z-index: 1000;
  bottom: -2rem;
  left: 20rem;
  background: none;
  color: white;
  border: none;
  padding: 0.8rem 1.2rem;
  font-family: "Manifont Grotesk", sans-serif;
  font-size: 6vw;
  font-weight: bold;
  transition: all 0.3s ease;
  /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);*/
  cursor: pointer;
}
.About:hover {
  text-shadow: 5px -5px 5px #00bf30;
}

body.groove-mode .About:hover {
  text-shadow: 5px -5px 5px #961dff;
}

@keyframes pulse {
  0% {
    letter-spacing: 0rem;
    transform: scale(0.98);
  }
  100% {
    letter-spacing: 0.01em;
    transform: scale(1.02);
  }
}

/*------------------
    VIDEO-STYLES
-------------------*/

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.preview,
.hover-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-container .hover-video {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-container:hover .hover-video {
  opacity: 1;
}

/*------------------
    TOGGLE BUTTON
-------------------*/

#groove {
  position: fixed;
  z-index: 1000;
  bottom: 2rem;
  right: 2rem;
  background: none;
  color: white;
  border: none;
  padding: 0.8rem 1.2rem;
  font-family: "Manifont Grotesk", sans-serif;
  font-size: 6vw;
  font-weight: bold;
  /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);*/
  cursor: pointer;
  transition: all 0.3s ease;
  /*animation: pulse 2.5s infinite ease-in-out alternate;*/
}

#groove:hover {
  text-shadow: 5px -5px 5px #00bf30;
}

body.groove-mode #groove:hover {
  text-shadow: 5px -5px 5px #961dff;
}
/*------------------
    GROOVE MODUS
-------------------*/

body.groove-mode {
  background-color: #00bf30;
}

body.groove-mode .GTG-grid {
  /* padding: 2rem;*/
  box-sizing: border-box;
  overflow: visible;
}

.Kachel {
  background: none;
  padding: 0.5rem;
  box-shadow: none;
  text-align: left;
  color: white;
  transition: transform 0.3s ease, z-index 0s;
}

.Kachel img {
  display: block;
  width: 100%;
  margin-bottom: 0.3rem;
  mix-blend-mode: luminosity;
  filter: blur(5px);
}

.img {
  mix-blend-mode: luminosity;
  filter: blur(5px);
}

.Kachel:hover {
  z-index: 500 !important;
  transform: scale(1.05) rotate(0deg) !important;
}

/* Kachel im Groove-Mode einzeln ansprechen: */
body.groove-mode .Kachel img {
  margin-top: -3rem;
  margin-left: 1rem;
  filter: blur(5px);
  aspect-ratio: 16 / 9;
}
body.groove-mode .video-container {
  mix-blend-mode: luminosity;
  aspect-ratio: 16 / 9;
}
