


@media screen and (max-width: 768px) {
  body {
    margin: 0;
    padding: 0;
    font-family: "Playfair Display", serif;
    background-image: linear-gradient(10deg, black, rgb(22, 14, 27));


  }

  #header {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 120px;
    color: white;
    background-color: black;
    text-align: center;
    margin: 0;
    padding: 0;
    z-index: 2000;
    /* Hoch genug, damit er über anderen Elementen liegt */
  }


  #header-h1 {
    font-size: 40px;
    margin-bottom: 5px;
  }

  #header-h2 {
    font-size: 18px;
    margin-top: -10px;
    margin-bottom: 15px;
  }

  #hero {
    height: 100vh;
    width: 100vw;
    background-image: linear-gradient(10deg, black, rgb(22, 14, 27));
    overflow-x: hidden;

  }

  #left-image {
    display: none;
  }

  #right-image {
    display: none;
  }


  #steffihandy {
    height: auto;
    width: 90vw;
    position: absolute;
    bottom: 205px;
    top: 80px;
    right: 0;
    background-color: transparent;
  }


  *,
  :before,
  :after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }














  /* Container des gesamten Players – positioniert am unteren Rand der Section */
  .player-container {
    position: absolute;
    /* oder relative zum übergeordneten Element */
    bottom: 20px;
    /* Abstand vom unteren Rand, anpassen nach Bedarf */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* 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;
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: justify;
  }


  .background-image-links {
    width: 100vw;
    height: auto;
  }



  #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;
    height: 105vh;
  }

  #links {
    width: 100vw;
    background-color: black;
  }

  .iframe2 {
    position: relative;
    left: 50%;
    transform: translate(-50%);
    width: 85vw;
    min-height: 400px;
    margin-top: 20px;

  }



  /* Dunkles Thema für die Kontakt-Section auf Mobilgeräten */
  #kontakt {
    background-color: #222;
    /* dunkler Hintergrund */
    color: #fff;
    /* helle Schrift */
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 80vh;

  }



  /* Überschrift zentrieren */
  .rubrikueberschrift h1,
  #header-h1 {
    text-align: center;
    font-size: 32px;
    color: white;
    margin-top: 25px;
    margin-bottom: 20px;
  }

  /* Formular-Styling */
  #kontakt form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Eingabefelder, Textarea und Button */
  #kontakt input[type="text"],
  #kontakt input[type="email"],
  #kontakt textarea,
  #kontakt button {
    border: none;
    background-color: #333;
    color: #fff;
    width: 85vw;
    border-radius: 10px;
    font-size: 20px;
    padding: 10px;
    margin-bottom: -15px;
  }

  /* Textfeld (Textarea) mindestens 30% hoch */
  #kontakt textarea {
    min-height: 30vh;
    /* 30% der Viewport-Höhe */
    resize: vertical;
  }

  /* Button-Styling */
  #kontakt button {
    cursor: pointer;
    background-color: #444;
    transition: background-color 0.3s ease;
  }

  #kontakt button:hover {
    background-color: #555;
  }

  /* Erfolgsmeldungen, Fehlermeldungen und Listen */
  #kontakt p,
  #kontakt ul {
    margin: 5px;
    width: 85vw;
  }

  #label {
    margin: 10px;
    font-size: 18px;
    color: #999;
  }


  /* Schöner dunkel-lila Footer mit hellem Text */
  #footer {
    background-color: #07040a;
    /* Dunkel-lila Farbton */
    color: #f0f0f0;
    /* Heller Text */
    text-align: center;
    padding: 20px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
  }

  #footer a {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  #footer a:hover {
    color: #ddd;
  }
}