@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playwrite+CZ:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=MuseoModerno:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Finger+Paint&display=swap');


/* --- Reset & Basics --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --- Das ist notwendig für den Hover-Glow-Effekt bei den Artist-Boards --- */
:root {
  --neon-turquoise: #00F2E0;
}

body {
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;      /* entspricht ca. 14 pt */
  line-height: 2.0;
  color: #222;
  overflow-x: hidden;
}

.headline {
  font-family: "Playwrite CZ", cursive;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-size: 28px;
  color: var(--neon-pink);
  text-shadow: 0 0 10px rgba(255,77,240,0.6);
}

.subheadline_artists {
    font-family: "Righteous", cursive;
    font-optical-sizing: auto;
    text-align: right;
    color: #fff;
    font-style: normal;

    /* Schriftgröße dynamisch */
    font-size: clamp(18px, 4vw, 28px);
    line-height: 2.0;

    background-color: #111031;
    padding: 0px 20px 0px 0px;
    border-radius: 0px;
    text-shadow: 0 0 10px rgba(0,242,224,0.6);
}

.subheadline_crew {
    font-family: "Righteous", cursive;
    font-optical-sizing: auto;
    text-align: left;
    color: #fff;
    font-style: normal;

    /* Schriftgröße dynamisch */
    font-size: clamp(18px, 4vw, 28px);
    line-height: 2.0;

    background-color: #111031;
    padding: 0px 20px 0px 20px;
    border-radius: 0px;
    text-shadow: 0 0 10px rgba(0,242,224,0.6);
}

.coquet_brand {
  position: relative;
  z-index: 10; /* hebt Logo + Inhalt über Top-Frames */
  display: inline-block;

  font-family: "MuseoModerno", cursive;
  font-optical-sizing: auto;
  font-size: 44px;
  line-height: 1.4;
  color: #fff;

  background-color: #111031;
  padding: 0 20px;
  text-decoration: none;

  text-shadow: 0 0 40px rgba(0,242,224,0.6);

  /* eigener Hover-Underline UNTER dem Text */
  background-image: linear-gradient(#00f2e0, #00f2e0);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 2px;
  transition: background-size 0.3s ease;
}

.coquet_brand:hover {
  background-size: 100% 2px;
}

/* Sprechblase */
.coquet_brand .phonetic {
  position: absolute;
  top: -12px;
  right: -68px;
  z-index: 20; /* über Hover- & Link-Layern */

  background: #ffffff;
  color: #111031;
  font-size: 14px;
  font-family: "MuseoModerno", cursive;
  padding: 6px 10px;
  border-radius: 40px;

  white-space: nowrap;
  pointer-events: none;

  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;

  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Pfeil der Sprechblase */
.coquet_brand .phonetic::after {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent #ffffff transparent transparent;
}

/* Hover triggert Sprechblase */
.coquet_brand:hover .phonetic {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  width: 100%;
  height: 10vh; /* volle Höhe der Seite */
  overflow: hidden;
  z-index: 1;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 40%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover; /* schneidet passend zu */
  z-index: -1; /* hinter den Text */
}

.hero-text {
  position: relative;
  z-index: 2;
  padding: 5vh 0vw; /* Platz nach oben/Seite */
  font-size: 18px;      /* entspricht ca. 14 pt */
  line-height: 1.4;
  text-shadow: 0 0 10px rgba(255,77,240,0.6);;
}

.hero-text-2 {
  position: relative;
  z-index: 2;
  padding: 25vh 0vw; /* Platz nach oben/Seite */
  font-size: 20px;      /* entspricht ca. 14 pt */
  line-height: 1.4;
  text-shadow: 0 0 10px rgba(0,242,224,0.6); }

  /* Elterncontainer für beide Texte */
  .text-wrapper {
    position: relative;
    display: inline-block; /* Größe passt sich dem Text an */
  }

  /* Erster Textcontainer - gelb/cyan, -10° */
  .highlight-text-container {
    display: inline-block;
    position: relative;
    transform: rotate(-6deg);
  }

  .highlight-text-container .highlight-text {
    display: inline-block;
    font-size: calc(22px + 1.5vw);
    font-family: "Righteous", cursive;
    font-optical-sizing: auto;
    color: white;
    padding: 0 20px;
    text-decoration: none;
    text-shadow: 0 0 40px rgba(0,242,224,0.6);
    position: relative;
    z-index: 2;
  }

  .highlight-text-container .highlight-text::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 120%;
    background-color: #5A7FFF; /* Header-Blau */
    z-index: -1;
    border-radius: 40px;
  }

  /* Überlagernder Textcontainer am unteren Rand mittig */
  .overlay-text-container {
    position: absolute;
    bottom: -15%; /* nach unten unterhalb des gelben Textes */
    top: 120%;
    left: 70%; /* horizontal zentriert */
    transform: translateX(-50%) rotate(+1deg); /* mittig + Drehung */
    z-index: -1; /* über dem ersten Container */
    display: inline-flex; /* Container passt sich Text an */
    align-items: center; /* vertikal zentrieren */
    justify-content: center; /* horizontal zentrieren */
    padding: 0.2em 0.6em; /* etwas Platz um den Text */
    white-space: nowrap; /* Text bleibt in einer Zeile */
  }

  /* Text im Overlay-Container */
  .overlay-text-container .overlay-text {
    font-size: calc(10px + 1.5vw);
    font-weight: bold;
    padding: 0 20px;
    color: white;
    position: relative;
    z-index: 1;
  }

  /* Hintergrund der Markierung */
  .overlay-text-container .overlay-text::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; /* passt sich Containerbreite an */
    height: 100%; /* passt sich Containerhöhe an */
    background-color: #FDD835; /* gelb */
    z-index: -1;
    border-radius: 40px;
  }



.hero-shoplink {
  position: absolute; /* für Pseudo-Element */
  right: 40px;
  top: 440px;
  font-family: "MuseoModerno", cursive;
  font-size: calc(14px + 1.5vw);
  line-height: 1.1;

  padding: 16px 24px; /* Abstand zum Rand der Box */
  display: inline-block;

  /* Text unverändert */
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255,77,240,0.6);

  z-index: 1; /* Text über Hintergrund */
}

/* Schräge Hintergrund-Box */
  .hero-shoplink::before {
      content: "";
      position: absolute;
      top: -8px;
      bottom: -8px;
      left: -12px;
      right: -12px; /* Box größer als Textbereich */
      z-index: -1;

      background: #821378;
      transform: rotate(0deg); /* bleibt fix */
      transform-origin: center;

      border-radius: 40px;
      box-shadow: 2px 2px 12px rgba(0,0,0,0.3);

      transition: background 0.25s ease, box-shadow 0.25s ease; /* Rotation entfernt */
  }

  /* Hover-Effekt */
  .hero-shoplink:hover::before {
      background: #B91AAB;
      box-shadow: 3px 3px 16px rgba(0,0,0,0.4); /* nur Farbe und Schatten ändern */
  }


  /* 🔗 Link-Zustände */
  .hero-shoplink a {
    color: #ffffff;            /* Ausgangsfarbe */
    text-decoration: none;     /* keine Unterstreichung */
    transition: color 0.2s ease;
  }

  .hero-shoplink a:hover,
  .hero-shoplink a:active,
  .hero-shoplink a:focus {
    color: #ffffff;
    text-decoration: none;   /* Unterstreichung verhindern */
    text-shadow: 0 0 10px rgba(255,77,240,0.6);   /* Hover & Click */
  }


  .shoplink {
    position: relative; /* für Pseudo-Element */
    font-family: "MuseoModerno", cursive;
    font-size: calc(14px + 1.5vw);
    line-height: 1.1;

    padding: 16px 24px; /* Abstand zum Rand der Box */
    display: inline-block;

    /* Text unverändert */
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255,77,240,0.6);

    z-index: 1; /* Text über Hintergrund */
  }

  /* Schräge Hintergrund-Box */
    .shoplink::before {
        content: "";
        position: absolute;
        top: -8px;
        bottom: -8px;
        left: -12px;
        right: -12px; /* Box größer als Textbereich */
        z-index: -1;

        background: #821378;
        transform: rotate(0deg); /* bleibt fix */
        transform-origin: center;

        border-radius: 40px;
        box-shadow: 2px 2px 12px rgba(0,0,0,0.3);

        transition: background 0.25s ease, box-shadow 0.25s ease; /* Rotation entfernt */
    }

    /* Hover-Effekt */
    .shoplink:hover::before {
        background: #B91AAB;
        box-shadow: 3px 3px 16px rgba(0,0,0,0.4); /* nur Farbe und Schatten ändern */
    }


    /* 🔗 Link-Zustände */
    .shoplink a {
      color: #ffffff;            /* Ausgangsfarbe */
      text-decoration: none;     /* keine Unterstreichung */
      transition: color 0.2s ease;
    }

    .shoplink a:hover,
    .shoplink a:active,
    .shoplink a:focus {
      color: #ffffff;
      text-decoration: none;   /* Unterstreichung verhindern */
      text-shadow: 0 0 10px rgba(255,77,240,0.6);   /* Hover & Click */
    }


.wwy-container {
  position: relative; /* Bezugsrahmen herstellen */
}

.wwy-container .highlight-text {
  position: absolute;     /* vom normalen Fluss lösen */
  top: -100px;              /* Abstand vom oberen Rand */
  right: 30px;            /* Abstand vom rechten Rand */
  display: inline-block;
  font-size: calc(26px + 1.5vw);
  font-family: "Righteous", cursive;
  font-optical-sizing: auto;
  color: white;
  padding: 0 20px;
  text-decoration: none;
  text-shadow: 0 0 40px rgba(0,242,224,0.6);
  z-index: 2;
  transform: rotate(3.5deg);
}

.wwy-container .highlight-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 120%;
  background-color: #5A7FFF; /* Header-Blau */
  z-index: -1;
  border-radius: 40px;
}

.coquet_brandfont {
  font-family: "MuseoModerno", cursive;
  font-optical-sizing: auto;
  font-style: normal;
}

.hero_headline_tuerkis {
  font-family: "MuseoModerno", cursive;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 34px;
  line-height: 1.0;
  padding: -15vh 0vw; /* Platz nach oben/Seite */
  text-shadow: 0 0 14px rgba(0,242,224,0.6);
}

.highlight {
  color: #fff;
  background-color: #821378;   /* Hintergrundfarbe  PINK: FF4DF0  BLUE: A4FFFC  VIO: 821378 */
  padding: 0px 0px;         /* Abstand über den Textrand hinaus */
  border-radius: 0px;       /* Optional: leicht abgerundete Ecken */
}

.highlightmainblue {
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.5);
  text-shadow: 0 0 10px rgba(0,242,224,0.6); /* nur der Glow ist turquoise */

}

.highlightmainpink {
  color: #821378;
  background-color: rgba(255, 255, 255, 0.5); /* Weiß mit 50% Transparenz */
  padding: 0px 0px;         /* Abstand über den Textrand hinaus */
  border-radius: 0px;       /* Optional: leicht abgerundete Ecken */
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255,77,240,0.6); }
}

.neon-pink { color: var(--neon-pink); text-shadow: 0 0 10px rgba(255,77,240,0.6); }
.neon-turquoise { color: var(--neon-turquoise); text-shadow: 0 0 10px rgba(0,242,224,0.6); }
.neon-violet { color: var(--neon-violet); text-shadow: 0 0 10px rgba(157,77,255,0.6); }
.neon-blue { color: var(--neon-blue); text-shadow: 0 0 10px rgba(60,195,255,0.6); }

/* --- PARALLAX WRAPPER Mitte --- */

.parallax-wrapper {
  position: relative;
  height: 150vh;          /* Scroll-Strecke */
  margin-top: 0vh;        /* überlappt Hero nicht */
  z-index: 2;
  width: 100%;            /* 100% des Parents */
  max-width: 100%;        /* keine Begrenzung */
  padding: 0;             /* kein Padding */
  margin-left: 0;         /* links am Rand */
}

/* Parallax Section Mitte */
.parallax-section {
  position: sticky;
  top: 0;
  z-index: 2;        /* obere Sektion ganz vorne */
  height: auto;
  width: 100%;            /* volle Breite */
  max-width: 100%;
  margin: 0;
  left: 0;                /* ganz links */
  background-image: url("img/parallax.jpg");
  background-size: contain;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Content */
.parallax-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  text-align: center;
  font-size: 18px;      /* entspricht ca. 14 pt */
  line-height: 1.4;
  max-width: 860px;
  padding: 2rem;
  opacity: 0;                   /* startet unsichtbar */
  transform: translateY(30px);
  transition: opacity 0.5s linear, transform 0.5s ease-out;
}

@media (max-width: 768px) {
  .parallax-content {
    max-width: 90%;   /* passt auf Smartphones */
    padding: 1rem;    /* etwas engeres Padding */
    font-size: 16px;  /* etwas kleinere Schrift */
  }
}

/* Parallax Section Unten */
.parallax-wrapper-down {
  position: relative;
  -webkit-overflow-scrolling: touch; /* smoother scroll */
  height: 140vh;          /* Scroll-Strecke */
  margin-top: 0vh;        /* überlappt Hero nicht */
  z-index: 1;
  width: 100%;            /* 100% des Parents */
  max-width: 100%;        /* keine Begrenzung */
  padding: 0;             /* kein Padding */
  margin-left: 0;         /* links am Rand */
  overflow: hidden;      /* wichtig für sticky */
}

.parallax-section-down {
  position: relative;
  z-index: 1;        /* untere Sektion darunter */
  top: 0;
  height: 100%;
  min-height: 100vh;
  width: 100%;
  background-image: url('img/background_bottom.png');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-attachment: scroll; /* sorgt für Parallax-Effekt beim Scrollen */

  display: flex;
  align-items: flex-end;
  padding-bottom: 40px;
  justify-content: center;
}

/* Content Down*/
.parallax-content-down {
  position: relative;
  z-index: 2;
  color: black;
  text-align: center;
  font-size: 18px;
  max-width: 720px;
  padding: 2rem;
  opacity: 0;
  transform: translateY(10px) translateZ(0);
  transition: opacity 0.5s linear, transform 0.5s ease-out;
  will-change: opacity, transform;
}

@supports (-webkit-overflow-scrolling: touch) {
  .parallax-content-down {
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  }
}

@media (max-width: 768px) {
  .parallax-content-down {
    max-width: 90%;   /* passt auf Smartphones */
    padding: 1rem;    /* etwas engeres Padding */
    font-size: 16px;  /* etwas kleinere Schrift */
  }
}

/* Overlay – OPACITY WIRD PER JS GESTEUERT */
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,16,49,0.9);
  opacity: 0.2;                 /* Start-Transparenz */
  transition: opacity 0.05s linear;
  z-index: 1;
}

/* --- Content-Divider --- */
.content-divider {
    display: block;
    width: 50%;         /* Länge des Strichs */
    height: 2px;         /* Dicke des Strichs */
    background-color: #B91AAB; /* Farbe passend zum Shop-Button */

    transform: rotate(0deg); /* gleiche Schräge wie Shop-Button */
    transform-origin: center;

    margin: 24px auto;   /* Abstand oben/unten, zentriert */
    border-radius: 3px;  /* leicht abgerundet für weicheren Look */
}

.content-divider-white {
    display: block;
    width: 10%;         /* Länge des Strichs */
    height: 2px;         /* Dicke des Strichs */
    background-color: #FFFFFF; /* Farbe passend zum Shop-Button */

    transform: rotate(0deg); /* gleiche Schräge wie Shop-Button */
    transform-origin: center;

    margin: 24px auto;   /* Abstand oben/unten, zentriert */
    border-radius: 3px;  /* leicht abgerundet für weicheren Look */
}

.content-divider-blue {
    display: block;
    width: 10%;         /* Länge des Strichs */
    height: 2px;         /* Dicke des Strichs */
    background-color: #111031; /* Header-blau */

    transform: rotate(0deg); /* gleiche Schräge wie Shop-Button */
    transform-origin: center;

    margin: 24px auto;   /* Abstand oben/unten, zentriert */
    border-radius: 3px;  /* leicht abgerundet für weicheren Look */
}

.content-divider-left {
    display: block;     /* Block-Element, nötig für Breite */
    width: 50px;         /* Länge des Strichs */
    height: 2px;         /* Dicke des Strichs */
    background-color: #B91AAB; /* Farbe passend zum Shop-Button */

    transform: rotate(0deg); /* gleiche Schräge wie Shop-Button */
    transform-origin: center;

    margin: 24px 0;   /* Abstand oben/unten, zentriert */
    border-radius: 3px;  /* leicht abgerundet für weicheren Look */
}

.artist-images {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Neuer Container pro Bild */
.artist-item {
  display: flex;
  flex-direction: column;   /* Bild oben, Text unten */
  align-items: center;
  width: 320px;
}

/* Bildcontainer bleibt wie bisher */
.artist-link {
  position: relative;
  width: 240px;
  height: 400px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.artist-link img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: filter 0.3s ease, transform 0.3s ease;
}

/* Click2Buy Marker */
.click2buy {
  opacity: 0;                     /* unsichtbar standardmäßig */
  transform: rotate(-3deg);       /* leichte Schrägung */
  background-color: #B91AAB;      /* Pink hintergrund */
  color: #ffffff;                 /* Textfarbe */
  font-family: "MuseoModerno", cursive;
  font-size: calc(12px + 1vw);
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 30px;
  margin-top: 8px;                /* Abstand zur Grafik */
  text-align: center;
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hover-Effekt: erscheint beim Hover auf die Grafik */
.artist-item:hover .click2buy {
  opacity: 1;
  transform: rotate(-3deg) translateY(-2px); /* leicht aufsteigen */
}


/* Glow-Effekt beim Hover */
.artist-link:hover img {
  filter: drop-shadow(0 0 14px var(--neon-turquoise))
          drop-shadow(0 0 38px rgba(0,242,224,0.7));
}

/* Bildbeschreibung */
.artist-caption {
  margin-top: 10px;
  font-size: 16px;
  text-align: center;
  color: #222;
  line-height: 1.4;
}



/* --- Header & Menü --- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #111031;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 34px 40px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

header.shrink {
  padding: 14px 40px;
  background-color: #111031;
}


/* --- Navigation --- */
nav {
  display: flex;
  gap: 30px;
}

nav a {
  position: relative;
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 500;
  transition: color 0.2s ease;
}

/* Hover: Text wird violett */
nav a:hover {
  color: #FFFFFF;
}

/* Linie unter dem Text */
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;              /* etwas tiefer wegen größerer Schrift */
  width: 0%;
  height: 2px;
  background: #821378;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
  animation: lineColor 0.4s forwards;
}

/* Aktiver Menüpunkt */
nav a.active {
  color: #FFFFFF;
}

/* Unterstrich dauerhaft sichtbar */
nav a.active::after {
  width: 100%;
  background: #00F2E0; /* hellblau */
}

/* Farbverlaufsanimation: von violett → cyan */
@keyframes lineColor {
  0% {
    background: #821378;
  }
  100% {
    background: #00F2E0;
  }
}


/* --- Hamburger Menü --- */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
}

/* --- Mobile Styles --- */
@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background-color: #111031;
    width: 200px;
    padding: 20px;
    gap: 20px;
    transition: right 0.3s ease;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    height: calc(100% - 70px);
  }

  nav.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .parallax-section {
    background-attachment: scroll;
  }
}


/* --- Inhalt --- */
main {
  padding-top: 100px;
}

/* Alle Links innerhalb von main */
main a {
  color: #B91AAB;
  text-decoration: none; /* optional, entfernt Unterstreichung */
  transition: color 0.2s ease;
}

/* Hover, Active, Focus */
main a:hover,
main a:active,
main a:focus {
  color: #B91AAB; /* gleiche Farbe oder z.B. heller für Hover */
  text-decoration: underline; /* optional, nur bei Hover */
}

section {
  padding: 80px 40px;
  min-height: 100vh;
}


/* Wrapper für die beiden Spalten */
.main-section {
  display: flex;
  gap: 40px;           /* Abstand zwischen den Spalten */
  justify-content: space-between;
  flex-wrap: wrap;     /* Damit auf kleinen Screens untereinander */
}

/* Jede Spalte nimmt gleich viel Platz */
.main-section .column {
  flex: 1 1 45%;       /* wächst, schrumpft, Basisbreite 45% */
  min-width: 280px;    /* verhindert zu kleine Spalten auf Smartphones */
}

/* Optional: Abstand innerhalb der Spalten */
.main-section .column p {
  margin-bottom: 1em;
}

/* Mobile Ansicht */
@media (max-width: 768px) {
  .main-section {
    flex-direction: column; /* untereinander */
    gap: 20px;
  }

  .main-section .column {
    flex: 1 1 100%;
  }
}


/* --- Libellenflug --- */

#dragonfly {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 120px;
  pointer-events: none;
  transform-origin: center;
  will-change: transform;
}

/* --- Newsletter --- */
.newsletter-box {
      background: #fff;
      padding: 20px;
      max-width: 500px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    label {
      font-size: 18px;
      display: block;
      margin-bottom: 6px;
    }
    input[type="email"] {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 18px;
    }
    button {
      margin-top: 12px;
      width: 100%;
      padding: 10px;
      background: #821378;
      color: #fff;
      border: none;
      border-radius: 40px;
      font-size: 20px;
      cursor: pointer;
    }
    button:hover {
      background: #B91AAB;
    }
    .confirmation {
      margin-top: 12px;
      color: hotpink;
      font-weight: bold;
      display: none;
    }

    /* --- Footer --- */
    footer {
      position: relative;
      z-index: 10;
      background-color: #f5f5f5;
      padding: 20px 40px;
      border-top: 1px solid #e0e0e0;
      margin-top: 0px;
      font-size: 0.95rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 40px; /* sorgt für Abstand zwischen den drei Spalten */
    }

    .music {
      display: flex;
      flex-direction: row-reverse;   /* center: sorgt dafür: Text oben, Bild darunter */
      justify-content: center;
      align-items: left;             /* Text ebenfalls mittig: center */
      gap: 6px;                      /* Abstand zwischen Text und Bild */
    }

    /* --- Wrapper für Spotify-Link --- */
  .spotify-wrapper {
    display: inline-block;
    cursor: pointer;
  }

  .applemusic-wrapper {
    display: inline-block;
    cursor: pointer;
  }

  /* Spotify-Bild optional für Zoom-Effekt */
  .spotify-img {
    width: 140px;
    height: 140px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    transform: scale(0.9); /* leichter Zoom */
  }

  .spotify-wrapper:hover .spotify-img {
    transform: scale(1.00); /* leichtes Aufzoomen */
  }

  /* Textlink unter dem Bild, alle Zustände gleich grün */
  .spotify-wrapper a,
  .spotify-wrapper a:hover,
  .spotify-wrapper a:visited {
    color: #1AA34A;           /* dunkelgrün */
    text-decoration: underline;
    transition: color 0.3s ease, text-decoration 0.3s ease;
  }

  /* Textlink unter dem Bild, alle Zustände gleich grün */
  .applemusic-wrapper a,
  .applemusic-wrapper a:hover,
  .applemusic-wrapper a:visited {
    color: #D32F2F;           /* sattes rot */
    text-decoration: underline;
    transition: color 0.3s ease, text-decoration 0.3s ease;
  }



    /* --- Rest --- */
    .footer-footer {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-links {
      display: flex;
      gap: 20px;
    }

    .footer-links a {
      color: #333;
      text-decoration: none;
      font-size: 0.95rem;
    }

    .footer-links a:hover {
      text-decoration: underline;
    }

    footer .copyright {
      font-size: 0.95rem;
    }
