body {
  font-family: "Playfair Display", serif;
  color: #f0f0f0;
  background-color: #222;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


#steffihandy {
  display: none;
}

header {
  background-color: #000000;
  color: white;
  padding: 20px;
  text-align: center;
  position: fixed;
  /* Fixiert den Header am oberen Bildschirmrand */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  /* Stellt sicher, dass der Header über anderen Elementen liegt */
  height: 110px;
}

#header-h1 {
  font-size: 50px;
  margin: 0;
}

section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

#hero {
  background-image: linear-gradient(30deg, black, rgb(22, 14, 27));
  position: relative;
}

#left-image,
#right-image {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  z-index: 0;
}

#left-image {
  left: 0;
  transform: translateX(-100%);
  /* Startposition außerhalb des Bildschirms */
}

#right-image {
  right: 0;
  transform: translateX(100%);
  /* Startposition außerhalb des Bildschirms */
}

#hero.visible #left-image,
#hero.visible #right-image {
  opacity: 1;
  transform: translateX(0);
  /* Endposition im sichtbaren Bereich */
}

/* Neue Klasse für den "Ausfliege"-Effekt */
#hero.hide-images #left-image {
  transform: translateX(-100vw);
  /* Bild nach links verschieben */
}

#hero.hide-images #right-image {
  transform: translateX(100vw);
  /* Bild nach rechts verschieben */
}












/* Container des gesamten Players – positioniert am unteren Rand der Section */
.player-container {
  position: absolute;
  /* oder relative zum übergeordneten Element */
  bottom: 150px;
  /* Abstand vom unteren Rand, anpassen nach Bedarf */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 100;
}

/* Controls: Navigationstasten und Play/Pause-Button in einer Zeile */
.controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  /* Abstand zum Titel */
}

/* Wrapper für den Play/Pause-Button als Kreis */
.play-label {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Play Button */
.play-btn {
  position: absolute;
  appearance: none;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(#ff6347, #ff6347);
  cursor: pointer;
  outline: none;
  transition: background 0.3s ease;
  animation: pulseShadow 2s infinite ease-in-out;
}

.play-btn::before {
  content: "";
  position: absolute;
  width: 93%;
  height: 93%;
  background-color: #000;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Hover-Effekt für den Play-Button */
.play-btn:hover {
  background: conic-gradient(#ff4500, #ff4500);
}

/* Pulsierender Schatten */
@keyframes pulseShadow {
  0% {
    box-shadow: 0 0 20px 0px rgba(255, 99, 71, 0.4);
  }

  50% {
    box-shadow: 0 0 50px 10px rgba(255, 99, 71, 0.7);
  }

  100% {
    box-shadow: 0 0 20px 0px rgba(255, 99, 71, 0.4);
  }
}

/* Animation bei aktiviertem Play-Button */
.play-btn:checked {
  animation: borderAnimate 700ms ease-in-out 1;
  animation-fill-mode: forwards;
}

@keyframes borderAnimate {
  0% {
    transform: rotate(0);
    background: conic-gradient(#ff6347, transparent 20%);
  }

  80% {
    background: conic-gradient(#ff6347, transparent 90%);
  }

  100% {
    transform: rotate(360deg);
    background: conic-gradient(#ff6347, #ff6347);
  }
}

/* Play-Icon (Dreieck) */
.play-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  left: 60%;
  top: 50%;
  background-color: #ff6347;
  transform: translate(-60%, -50%) rotate(90deg);
  clip-path: polygon(50% 15%, 0% 100%, 100% 100%);
  transition: all 400ms ease-in-out, background-color 0.3s ease;
  cursor: pointer;
}

/* Hover-Effekt für das Play-Icon */
.play-btn+.play-icon:hover {
  background-color: #ff4500;
}

/* Verwandelt das Play-Icon in einen Pause-Button */
.play-btn:checked+.play-icon {
  clip-path: polygon(0 100%, 0% 100%, 100% 100%);
}

/* Pause-Icon */
.pause-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.pause-icon::before,
.pause-icon::after {
  content: "";
  position: absolute;
  height: 100%;
  background-color: #ff6347;
  transition: background-color 0.3s ease;
}

/* Zunächst nicht sichtbar – wird per Animation eingeblendet */
.pause-icon::before {
  width: 0%;
  left: 0;
}

.pause-icon::after {
  width: 0;
  right: 0;
}

/* Hover-Effekt für Pause-Icon, wenn Play gedrückt wurde */
.play-btn:checked~.pause-icon:hover::before,
.play-btn:checked~.pause-icon:hover::after {
  background-color: #ff4500;
}

/* Animation zum Einblenden der Pause-Streifen */
.play-btn:checked~.pause-icon::before {
  animation: reveal 300ms ease-in-out 350ms 1;
  animation-fill-mode: forwards;
}

.play-btn:checked~.pause-icon::after {
  animation: reveal 300ms ease-in-out 600ms 1;
  animation-fill-mode: forwards;
}

@keyframes reveal {
  0% {
    width: 0;
  }

  100% {
    width: 35%;
  }
}

/* Navigationstasten (vor/zurück) */
.prev-btn,
.next-btn {
  width: 40px;
  height: 40px;
  background-color: #ff6347;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.prev-btn:hover,
.next-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}

/* Gestaltung der Pfeile */
.arrow-icon {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.left-arrow {
  border-right: 15px solid black;
}

.right-arrow {
  border-left: 15px solid black;
}

/* Titel – immer zentriert unter den Controls */
#track-title {
  color: red;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}

















#infos {
  width: 100vw;
  background-image: linear-gradient(30deg, black, rgb(22, 14, 27));
  margin: 0;
  display: flex;
  flex-direction: column;
  text-align: justify;
}



#links {
  position: relative;
  width: 100vw;
  background-color: black;
  height: 100vh;
}



/* Hintergrundbild absolut positioniert hinter den Inhalten */
.background-image-links {
  position: relative;
  z-index: 100;
  top: 0;
  left: 0;
z-index: 10;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* falls das Bild größer als der Container ist */
}

/* Optional: Bild strecken bzw. passend skalieren */
.background-image-links img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



#infos-h1 {
  font-size: 32px;
  color: white;
  text-align: center;
  margin-bottom: 10px;
}

#infos-h2 {
  font-size: 40px;
  font-style: bold;
  text-align: center;
  color: white;
  margin-bottom: 30px;
}

#right-div {
  color: white;
  font-size: 20px;
  margin-top: 10px;
  background-color: #ffffff06;
  border-radius: 15px;
  padding: 10px;
  margin: -5px;
  display: flex;
  margin-bottom: 30px;

}

#links-h1 {
  text-align: center;
  font-size: 32px;
  color: white;
  margin-top: 25px;
}

.links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  top: 0;}

.iframe2 {
  position: relative;
  left: 50%;
  transform: translate(-50%);
  width: 75vw;
  min-height: 400px;
  margin-top: 20px;
  z-index: 1;
}




footer {
  background-color: #333;
  /* Dunkelgrauer Hintergrund */
  color: #fff;
  /* Weiße Schriftfarbe */
  padding: 20px;
  /* Innenabstand */
  text-align: center;
  /* Zentrierter Text */
}

footer a {
  color: #fff;
  /* Weiße Linkfarbe */
  text-decoration: none;
  /* Keine Unterstreichung */
  margin: 0 10px;
  /* Abstand zwischen Links */
}

footer a:hover {
  text-decoration: underline;
  /* Unterstreichung beim Hover */
}

footer p {
  margin: 0;
  /* Kein Standard-Margin für Absätze */
  font-size: 14px;
  /* Kleine Schriftgröße */
}





#infos .container {
  display: flex;
  /* Aktiviert Flexbox für die Anordnung der divs */
  align-items: center;
  /* Zentriert die Inhalte vertikal */
  padding: 20px;
  /* Fügt Innenabstand hinzu */
}

#left-div {
  flex: 1;
  /* Nimmt den verfügbaren Platz ein */
  text-align: left;
  /* Text linksbündig */
}

#left-div p {
  font-size: 3em;
  /* Vergrößert den Namen */
  font-weight: bold;
  /* Macht den Namen fett */
  margin: 0;
  /* Entfernt Standard-Margins */
  color: #ffffff;
  --interval: 1s;
  display: block;
  text-shadow:
    0 0 10px rgb(43, 28, 53),
    0 0 20px rgba(61, 39, 75, 0.753),
    0 0 40px rgba(119, 76, 146, 0.74),
    0 0 80px rgba(169, 107, 207, 0.541);
}


#right-div {
  flex: 2;
  /* Nimmt doppelt so viel Platz ein wie left-div */
  text-align: justify;
  /* Blocksatz für den Infotext */
  font-size: 1.2em;
  padding-left: 20px;
  /* Abstand zwischen Name und Infotext */
}

#right-div p {
  font-size: 1.2em;
  /* Angenehme Lesegröße für den Infotext */
  line-height: 1.5;
  /* Zeilenabstand für bessere Lesbarkeit */
  margin: 0;
  /* Entfernt Standard-Margins */
}













#kontakt {
  padding: 40px;
  background-color: #333;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: #eee;
}

.kontakt-container {
  width: 50vw;
  height: auto;
}

#kontakt h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #eee;
}



#kontakt input,
#kontakt textarea {
  padding: 12px;
  border: 1px solid #555;
  border-radius: 4px;
  font-size: 16px;
  background-color: #444;
  color: #eee;
  width: 100%;
  transition: border-color 0.3s ease;
}

#kontakt input:focus,
#kontakt textarea:focus {
  border-color: #ff6347;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
}

#kontakt textarea {
  resize: vertical;
  min-height: 200px;
  grid-column: span 2;
  /* Über beide Spalten */
}

#kontakt button {
  background-color: #ff6347;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
  grid-column: span 2;
}

#kontakt button:hover {
  background-color: #ff7057;
}

#kontakt button:active {
  background-color: #ff6347;
}








/* CSS für die Erfolgsmeldung */
.erfolgsmeldung {
  background-color: #d4edda;
  /* Grüner Hintergrund */
  border: 1px solid #c3e6cb;
  /* Grüner Rahmen */
  color: #155724;
  /* Dunkler grüner Text */
  padding: 10px;
  /* Innenabstand */
  border-radius: 5px;
  /* Abgerundete Ecken */
  margin-bottom: 10px;
  /* Abstand nach unten */
}




