/* ===== Pride-Saison (15. Mai – 31. Juli) ===== */

/* ------- Rainbow-Bar: dicker + Shimmer + sanfte Flaggen-Welle ------- */
body.season-pride .rainbow-bar {
  height: 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  /* Gradient doppelt gekachelt → Background-Slide wirkt als scrollender Shimmer */
  background: linear-gradient(90deg,
    #e40303, #ff8c00, #ffed00, #008026, #00c2ff, #004dff, #750787, #e40303
  );
  background-size: 200% 100%;
  animation: prideSlide 18s linear infinite;
}

/* Schimmernder Glanz-Strahl (schräggestellter weißer Lichtstreifen) */
body.season-pride .rainbow-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent 20%,
    rgba(255,255,255,0.55) 50%,
    transparent 80%
  );
  animation: prideSheen 3.5s ease-in-out infinite;
}

/* Gradient-Scrolling */
@keyframes prideSlide {
  to { background-position: 200% 0%; }
}

/* Glanzstrahl-Sweep: schräg von links nach rechts */
@keyframes prideSheen {
  0%   { transform: skewX(-15deg) translateX(-200%); }
  100% { transform: skewX(-15deg) translateX(400%);  }
}

/* ------- Pride-Ticker (scrollende Botschaften) ------- */
.pride-ticker {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1; /* über dem Sheen-::after */
}

.pride-ticker__track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  animation: prideTicker 65s linear infinite;
}

.pt-p {
  font-family: 'Righteous', cursive;
  font-size: 14px;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 5px rgba(0,0,0,0.55);
  padding: 0 18em;
  flex-shrink: 0;
}
.pt-s {
  font-family: 'Righteous', cursive;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  padding: 0;
  flex-shrink: 0;
}
.pt-emote {
  height: 22px;
  width: auto;
  vertical-align: middle;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}

@keyframes prideTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Barrierefreiheit */
@media (prefers-reduced-motion: reduce) {
  body.season-pride .rainbow-bar {
    animation: none;
    background-size: 100% 100%;
  }
  body.season-pride .rainbow-bar::after { display: none; }
  .pride-ticker__track {
    animation: none;
    justify-content: center;
  }
  .pt-p[aria-hidden="true"],
  .pt-s[aria-hidden="true"],
  .pt-emote[aria-hidden="true"] { display: none; }
}

/* ------- Profilfoto: rotierender Regenbogen-Rand ------- */
body.season-pride .profile-photo{
  padding:8px;
  background:none;
  position:relative;
  overflow:hidden;
  box-shadow:0 16px 42px rgba(0,0,0,.5);
}
body.season-pride .profile-photo::before{
  content:"";
  position:absolute;
  inset:-55%;
  z-index:0;
  background:conic-gradient(from 0deg,#e40303,#ff8c00,#ffed00,#008026,#00c2ff,#004dff,#750787,#e40303);
  animation:prideSpin 7s linear infinite;
}
body.season-pride .profile-photo img{position:relative;z-index:1;}
@keyframes prideSpin{to{transform:rotate(1turn);}}
@media (prefers-reduced-motion:reduce){
  body.season-pride .profile-photo::before{animation:none;}
}

/* ------- Profilname: Regenbogen-Textshadow ------- */
body.season-pride .profile-head h2{
  text-shadow:
    2px 2px 0 #e40303,
    4px 4px 0 #ff8c00,
    6px 6px 0 #ffed00,
    8px 8px 0 #008026,
    10px 10px 0 #004dff,
    12px 12px 0 #750787;
}
body.season-pride .profile-role{margin-top:15px;}

/* ------- Statistik-Balken: Regenbogen ------- */
body.season-pride .stat-bar-fill{background:linear-gradient(90deg,#e40303,#ff8c00,#ffed00,#008026,#004dff,#750787);}

/* ------- Kontakt-Seite: Pride-Anpassungen ------- */

/* Einhorn-Emote: etwas mehr Abstand wegen Regenbogen-Schatten */
body.season-pride .contact-emote-inline {
  margin-left: 8px;
}

/* H1: Regenbogen-Textshadow */
body.season-pride .contact-head h1 {
  text-shadow:
    2px 2px 0 #e40303,
    4px 4px 0 #ff8c00,
    6px 6px 0 #ffed00,
    8px 8px 0 #008026,
    10px 10px 0 #004dff,
    12px 12px 0 #750787;
}

/* Kontakt-Info-Icons: dunklerer Regenbogen für bessere Icon-Lesbarkeit */
body.season-pride .info-ico {
  background: linear-gradient(135deg, #cc0404, #cc7600, #b3a200, #007a28, #0052cc, #6e0578);
}

/* ------- Kooperationen-Seite: Pride-Anpassungen ------- */

/* H1: Regenbogen-Textshadow */
body.season-pride .koop-page h1 {
  text-shadow:
    2px 2px 0 #e40303,
    4px 4px 0 #ff8c00,
    6px 6px 0 #ffed00,
    8px 8px 0 #008026,
    10px 10px 0 #004dff,
    12px 12px 0 #750787;
}

/* Partner-Logos: Regenbogen-Ring beim Hover */
body.season-pride .koop-card:hover .koop-logo img {
  box-shadow:
    0 0 0 3px #e40303,
    0 0 0 5px #ff8c00,
    0 0 0 7px #ffed00,
    0 0 0 9px #008026,
    0 0 0 11px #004dff,
    0 0 0 13px #750787,
    0 8px 20px rgba(0,0,0,.25);
}

/* ------- Musik-Seite: Pride-Anpassungen ------- */

/* H2-Überschriften: Regenbogen-Textshadow */
body.season-pride .musik-page h2 {
  text-shadow:
    2px 2px 0 #e40303,
    4px 4px 0 #ff8c00,
    6px 6px 0 #ffed00,
    8px 8px 0 #008026,
    10px 10px 0 #004dff,
    12px 12px 0 #750787;
}

/* Mehr Abstand H2 → Grid (Platz für den Regenbogen-Ring) */
body.season-pride .musik-page .musik-grid {
  margin-top: 3rem;
}

/* Mehr Abstand Cover → Titel */
body.season-pride .musik-card-title {
  margin-top: 1.2rem;
}

/* Album-Cover: Regenbogen-Ring beim Hover */
body.season-pride .cd-cover {
  transition: transform .3s, box-shadow .3s;
}
body.season-pride .cd-wrap:hover .cd-cover {
  box-shadow:
    0 0 0 4px #1a1a2e,
    0 0 0 6px #e40303,
    0 0 0 8px #ff8c00,
    0 0 0 10px #ffed00,
    0 0 0 12px #008026,
    0 0 0 14px #004dff,
    0 0 0 16px #750787,
    0 8px 32px rgba(0,0,0,.6);
}

/* Streaming-Chips: Regenbogen-Rand */
body.season-pride .plattform-leiste a {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    linear-gradient(90deg, #e40303, #ff8c00, #ffed00, #008026, #00c2ff, #750787) border-box;
}

/* ------- Blog-Seite: Pride-Anpassungen ------- */
body.season-pride .blog-single h1,
body.season-pride .blog-page h1 {
  text-shadow:
    2px 2px 0 #e40303,
    4px 4px 0 #ff8c00,
    6px 6px 0 #ffed00,
    8px 8px 0 #008026,
    10px 10px 0 #004dff,
    12px 12px 0 #750787;
}

body.season-pride .blog-readmore .blog-readmore-text {
  background: linear-gradient(90deg,#e40303,#ff8c00,#ffed00,#008026,#00c2ff,#750787);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.season-pride .blog-readmore i {
  color: #750787;
}

/* ------- Blog-Links: Regenbogen-Gradient ------- */
body.season-pride .blog-content a {
  background: linear-gradient(90deg,#e40303,#ff8c00,#ffed00,#008026,#00c2ff,#750787);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration-color: #ff8c00;
}
