:root {
  --primary: #003300;
  --secondary: #4b004b;
  --background: #111;
  --text: #eee;
}

@font-face {
  font-family: 'Witching Hour';
  src: url('fonts/WitchingHour.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.slogan {
  font-family: 'Witching Hour', cursive;
  font-size: clamp(5.5rem, 5vw, 6.5rem) !important;
  color: #164b19;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: normal; /* ✅ verhindert fett */
}


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

body {
  background-color: var(--background);
  color: var(--text);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

header {
  background: linear-gradient(to right,
    #29083a 0%,      /* Lila */
    #4b0a6b 17%,     /* Lila */
    #076e3a 28%,     /* Grün */
    #000 38%,        /* Schwarz links vom Logo */
    #000 62%,        /* Schwarz rechts vom Logo */
    #076e3a 72%,     /* Grün */
    #4b0a6b 90%,     /* Lila */
    #29083a 100%     /* Lila */
  );
  padding: 2rem 1rem;
  text-align: center;
  border-bottom: 2px solid #00994d;
}

header img {
  max-width: 300px;
  height: auto;
}

.intro p {
  font-size: 1.2rem;
  color: #003300;
  text-align: center;
  margin: 2rem auto;
  font-style: italic;
}

.intro p strong {
  font-family: 'DeathToMetal', serif;
  font-size: 2.5rem;
  color: #003300;
  display: block;
  margin: 0 auto 0.5rem;
}

nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #111;
  padding: 1.5rem 0;
  text-align: center;
  border-bottom: 2px solid #00994d;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1rem;
  background-color: #1a1a1a;
  border-bottom: 1px solid #003300;
}

nav a {
  color: #9ae19d;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.7rem; /* vorher evtl. kleiner */
  padding: 0.5rem 1rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  border-radius: 5px;
}

nav a:hover {
  border-color: #5c0a83; /* etwas heller als zuvor */
; /* Lila Rahmen beim Hover */
}

/* Aktiver Link – z. B. beim Scrollen oder Auswahl */
nav a.active {
  border-color: #5c0a83;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
}

section {
  grid-column: span 3;
  margin-bottom: 3rem;
}

h2 {
  color: var(--primary);
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 0.5rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input,
textarea {
  padding: 0.75rem;
  background: #222;
  color: var(--text);
  border: 1px solid #003300;
}

button {
  padding: 0.75rem;
  background-color: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #005500;
}

.site-footer {
  background-color: #000;
  color: #9ae19d;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  border-top: 1px solid #00994d; /* gleiche grüne Linie wie oben */
}

.site-footer a.footer-link {
  color: #5c0a83;
  text-decoration: none;
  font-weight: bold;
}

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


/* Responsive Design */
@media (max-width: 768px) {
  main {
    grid-template-columns: 1fr;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }
}

/* News section */

.news-section {
  grid-column: span 3;
  padding: 2rem;
  background-color: #0a0a0a;
  color: #164b19; /* etwas heller als zuvor */
  border-top: 1px solid #164b19;
}

.news-section h2 {
  color: #5c0a83;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.news-section p {
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #164b19; /* angepasst */
}


.about-section {
  grid-column: span 3;
  padding: 2rem;
  background-color: #0a0a0a;
  color: #164b19; /* etwas heller als zuvor */
  border-top: 1px solid #164b19;
}

.about-section h2 {
  color: #5c0a83;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.about-section p {
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #164b19; /* angepasst */
}

.about-section blockquote {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #1a1a1a;
  border-left: 4px solid #5c0a83;
  color: #164b19;
  font-style: italic;
  text-align: center;
}

.contact-section {
  grid-column: span 3;
  padding: 2rem;
  background-color: #0a0a0a;
  color: #5c0a83; /* etwas heller als zuvor */
  border-top: 1px solid #00aa33;
}

.contact-section h2 {
  color: #5c0a83;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-section p {
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #5c0a83; /* angepasst */
}

.merch-section {
  grid-column: span 3;
  padding: 2rem;
  background-color: #0a0a0a;
  color: #00aa33; /* etwas heller als zuvor */
  border-top: 1px solid #00aa33;
}

.merch-section h2 {
  color: #5c0a83;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.merch-section p {
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #00aa33; /* angepasst */
}

.band-members {
  grid-column: span 3;
  padding: 2rem;
  background-color: #0a0a0a;
  color: #164b19;
}

.band-members h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #5c0a83;
}

.member-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.member-row.reverse {
  flex-direction: row-reverse;
}

.member-image img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border: 2px solid #5c0a83;
  border-radius: 0.5rem;
  box-shadow: 0 0 10px rgba(0, 170, 51, 0.3);
}

.member-text {
  flex: 1;
  min-width: 280px;
}

.member-text h4 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  color: #164b19;
}

@media (max-width: 768px) {
  .member-row,
  .member-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .member-image img {
    margin-bottom: 1rem;
  }
}

.discography-section {
  grid-column: span 3;
  padding: 3rem 2rem;
  background-color: #0a0a0a;
  color: #164b19;
}

.discography-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #5c0a83;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.album-card {
  background-color: #111;
  border: 1px solid #5c0a83;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 0 15px rgba(0, 170, 51, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.album-card:hover {
  transform: scale(1.03);
}

.album-cover img {
  width: 100%;
  height: auto;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
  background-color: #222;
}

.album-info h3 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  color: #164b19;
}

.album-info .format {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 0.5rem;
}

.album-info a {
  color: #164b19;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.album-info a:hover {
  color: #88ff88;
}

.album-info details {
  margin-top: 1rem;
  width: 100%;
  text-align: left;
  background-color: #151515;
  border: 1px solid #00aa33;
  border-radius: 0.25rem;
  padding: 0.5rem;
  color: #66ff66;
  transition: all 0.3s ease;
}

.album-info details summary {
  cursor: pointer;
  font-weight: bold;
  color: #88ff88;
  outline: none;
  font-size: 0.95rem;
}

.album-info details[open] summary {
  color: #b8ffb8;
}

.album-info details ul {
  margin: 0.5rem 0 0 1rem;
  padding-left: 1rem;
}

.album-info details li {
  margin-bottom: 0.3rem;
}

.album-info details p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.live-section {
  background-color: #0a0a0a;
  padding: 2rem;
}

.live-section h2 {
  color: #5c0a83;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.gig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.gig-card {
  background-color: #000;
  border: 2px solid #5c0a83;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 153, 77, 0.3);
}

.gig-card h3 {
  color: #164b19;
  margin-bottom: 0.5rem;
}

.gig-card p {
  color: #164b19;
  margin: 0.25rem 0;
}

.gig-card a {
  display: inline-block;
  margin-top: 0.5rem;
  text-decoration: none;
  color: #5c0a83;
  font-weight: bold;
  transition: color 0.3s ease;
}

.gig-card a:hover {
  color: #9400D3;
}
@media screen and (max-width: 768px) {
  /* Navigation vertikal anzeigen */
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  nav a {
    font-size: 1.1rem;
    padding: 0.5rem;
  }

  /* Logo zentriert und kleiner */
  .logo-container img {
    max-width: 150px;
  }

  /* Startseite – Text kleiner und mittig */
  .home {
    padding: 1.5rem 1rem;
  }

  .slogan {
    font-size: 1.5rem;
    text-align: center;
  }

  /* About Us – Profilbilder stapeln */
  .member-profile {
    flex-direction: column !important;
    text-align: center;
  }

  .member-profile img {
    margin-bottom: 1rem;
  }

  /* Discography Cards – 1 Spalte */
  .album-grid {
    grid-template-columns: 1fr;
  }

  /* Kontaktformular, Live-Area etc. padding anpassen */
  section {
    padding: 1.5rem 1rem;
  }

  /* Header-Verlauf kürzer */
  header {
    padding: 1.5rem 0.5rem;
  }

  /* Mobile Schriftanpassung allgemein */
  body {
    font-size: 16px;
  }

  .about h2,
  .discography-section h2 {
    font-size: 1.5rem;
  }
}

/* Burger Icon */
.burger {
  display: none;
  font-size: 2rem;
  color: #9ae19d;
  cursor: pointer;
  padding: 0 1rem;
}

/* Mobile Menu */
@media screen and (max-width: 768px) {
  .burger {
    display: block;
  }

  #nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #111;
    border-top: 2px solid #00994d;
  }

  #nav-links.active {
    display: flex;
  }

  nav ul li {
    margin: 0.5rem 0;
  }
}

.live-section {
  background-color: #0a0a0a;
  padding: 2rem;
  text-align: center;
}

.live-section h2 {
  color: #5c0a83;
  margin-bottom: 1.5rem;
}

.carousel {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  overflow: hidden;
  border: 2px solid #00994d;
  border-radius: 10px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-track img {
  width: 100%;
  flex-shrink: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  border: 2px solid #00994d;
  color: #5c0a83;
  font-size: 18px;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
  border-radius: 50%;     /* macht den Button rund */
  width: 30px;
  height: 30px;
    display: flex;
  align-items: center;    /* vertikal zentrieren */
  justify-content: center; /* horizontal zentrieren */
}

.carousel-btn:hover {
  background: #222;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

@media screen and (max-width: 768px) {
  .carousel-btn {
    font-size: 1.5rem;
    padding: 0.25rem;
  }
}
/* Galerie */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

.load-more {
  display: block;
  margin: 0 auto 4rem auto;
  padding: 0.75rem 2rem;
  background-color: #9ae19d;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.load-more:hover {
  background-color: #b2f0b4;
}


.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border: 2px solid #00994d;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
  border-color: #d38ef4;
}

.gallery-section {
  background-color: #0a0a0a;
  padding: 2rem;
  border-top: 1px solid #00aa33;
   text-align: center;
}

.gallery-section h2 {
  color: #5c0a83;
  text-align: center;
     font-size: 2rem;
  margin-bottom: 1rem;
}

/* Galerie */

/*.gallery-section {
  background-color: #000;
  padding: 3rem 2rem;
  text-align: center;
}

.gallery-section h2 {
  color: #5c0a83;
  text-align: center;
  margin-bottom: 1rem;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 2px solid #00994d;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.gallery-item img:hover {
  transform: scale(1.05);
  border-color: #d38ef4;
}

.load-more {
  display: block;
  margin: 0 auto 4rem auto;
  padding: 0.75rem 2rem;
  background-color: #9ae19d;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.load-more:hover {
  background-color: #b2f0b4;
}*/

/* Lightbox Styles */

.lightbox {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
}

.lightbox.visible {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.8);
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
}

#toggleGalleryBtn {
  background-color: #111;
  border: 2px solid #00994d;
  color: #9ae19d;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, border 0.3s ease;
}

#toggleGalleryBtn:hover {
  background-color: #222;
  border-color: #5c0a83;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: 2px solid #00994d;
  border-radius: 8px;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.carousel-toggle {
  text-align: center;
  margin-bottom: 1rem;
  color: #9ae19d;
  font-weight: bold;
}

.carousel-image {
  display: none;
}

.carousel-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border: 2px solid #d38ef4;
  border-radius: 8px;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 2;
}

#prevSlide {
  left: 10px;
}

#nextSlide {
  right: 10px;
}

.carousel-container {
  display: none;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

/* Lightbox */
.lightbox-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999;
}

.lightbox-container.active {
  display: flex;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90%;
  border: 4px solid #00994d;
  box-shadow: 0 0 20px #5c0a83;
  border-radius: 10px;
}

.lightbox-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.lightbox-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 2rem;
}

.lightbox-controls button {
  background: none;
  border: none;
  color: #9ae19d;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox-controls button:hover {
  color: #5c0a83;
}
/* Toggle Switch */
.switch {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: relative;
  width: 60px;
  height: 30px;
  background-color: #444;
  border-radius: 30px;
  transition: background-color 0.4s;
  cursor: pointer;
}

.slider::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: 3px;
  bottom: 3px;
  background-color: #9ae19d;
  border-radius: 50%;
  transition: transform 0.4s;
}

input:checked + .slider {
  background-color: #5f1782;
}

input:checked + .slider::before {
  transform: translateX(30px);
}

.toggle-label {
  color: #9ae19d;
  font-weight: bold;
  font-size: 1rem;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .toggle-label {
    font-size: 0.9rem;
  }

  .slider {
    width: 50px;
    height: 26px;
  }

  .slider::before {
    width: 20px;
    height: 20px;
    left: 3px;
    bottom: 3px;
  }

  input:checked + .slider::before {
    transform: translateX(24px);
  }
}
.carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: nowrap;
}

.carousel-container img {
  max-width: 90%;
  border: 2px solid #00994d;
  border-radius: 10px;
}

.lightbox-btn {
  background: none;
  border: none;
  color: #5c0a83;
  font-size: 2rem;
  cursor: pointer;
}

.newsletter-section {
  padding: 2rem;
  background-color: #0a0a0a;
  border-top: 2px solid #00994d;
  text-align: center;
  color: #164b19;
}

.newsletter-section h2 {
  color: #5c0a83;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.newsletter-form input[type="email"] {
  padding: 0.5rem;
  width: 100%;
  max-width: 300px;
  border: 2px solid #00994d;
  background-color: #000;
  color: #9ae19d;
  border-radius: 5px;
}

.checkbox-label {
  color: #9ae19d;
  font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
  margin-right: 0.5rem;
}

.newsletter-form button {
  background-color: #00994d;
  color: #000;
  padding: 0.5rem 1rem;
  border: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.newsletter-form button:hover {
  background-color: #5f1782;
  color: #fff;
}

.legal-section {
  background-color: #111;
  color: #a2f1ac;
  padding: 2rem;
  border-top: 2px solid #00994d;
  border-bottom: 2px solid #00994d;
}

.legal-section h2, .legal-section h3 {
  color: #5c0a83;
  margin-bottom: 1rem;
  text-align: center;
}

.legal-section p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.legal-section a {
  color: #9ae19d;
  text-decoration: underline;
}

.legal-section a:hover {
  color: #5c0a83;
}

/* Bestehendes CSS (z. B. header, nav, etc.) bleibt unverändert */

/* DSGVO Cookie Consent */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #111;
  color: #9ae19d;
  padding: 1rem;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.8);
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner h4 {
  color: #5c0a83;
  margin-bottom: 0.5rem;
}

.cookie-banner p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.cookie-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cookie-options label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-buttons button {
  background-color: #00994d;
  color: #000;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cookie-buttons button:hover {
  background-color: #00cc66;
}

@media screen and (max-width: 600px) {
  .cookie-options, .cookie-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

#loadMoreBtn {
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  background-color: #00994d;
  border: none;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#loadMoreBtn:hover {
  background-color: #00cc66;
}

.social-media-icons {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding: 0.5rem 1rem;
}

.social-media-icons a img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(0) saturate(100%) invert(20%) sepia(90%) saturate(700%) hue-rotate(75deg); /* dunkles Grün */
}

.social-media-icons a:hover img {
  transform: scale(1.2);
  filter: brightness(0) saturate(100%) invert(15%) sepia(95%) saturate(1200%) hue-rotate(270deg); /* dunkles Lila */
}

/* Für mobile Ansicht individuelle Farben */
@media (max-width: 768px) {
  .social-media-icons {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
  }

 
  .social-media-icons a.patreon img,
  .social-media-icons a.tiktok img,
  .social-media-icons a.bandcamp img,
  .social-media-icons a.spotify img {
    filter: brightness(0) saturate(100%) invert(20%) sepia(90%) saturate(700%) hue-rotate(75deg); /* dunkles Grün */
  }

  .social-media-icons a.instagram img,
  .social-media-icons a.facebook img,
  .social-media-icons a.amazonmusic img,
  .social-media-icons a.youtube img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(95%) saturate(1200%) hue-rotate(270deg); /* dunkles Lila */
  }
}

@media (min-width: 768px) {
  .epk-section {
    padding-left: 5rem;
    padding-right: 3rem;
    border-top: 2px solid #00994d;
    background-color: #0a0a0a;
  }
}
.epk-section h2 {
  text-align: center;
  color: #5c0a83;  
  padding: 2rem;
}

.epk-subsection {
  margin-bottom: 3rem;
  padding: 1.5rem;
  background-color: #1b1b1b;
  border: 1px solid #333;
  border-radius: 8px;
}

.epk-subsection h3 {
  color: #92ffce;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.epk-subsection a {
  color: #76e0a4;
  text-decoration: none;
}

.epk-subsection a:hover {
  text-decoration: underline;
}

.epk-media {
  max-width: 720px;
  margin: 0 auto;
}

.epk-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.video-item iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 6px;
}

.video-frame {
  width: 100%;
  max-width: 560px;
  height: 450px;
  border: none;
  display: block;
  margin: 2rem auto;
}

.epk-spotify-button {
  margin-top: 1rem;
  text-align: center;
}

.epk-spotify-button a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #1DB954;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.2s ease-in-out;
}

.epk-spotify-button a:hover {
  background-color: #17a64a;
}

.epk-spotify-button img {
  width: 20px;
  height: 20px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.4;
}

.contact-list a {
  color: #76e0a4;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.social-fixed {
  position: fixed;
  top: 40%;
  left: 1rem; /* Oder 'right: 1rem;' für rechte Seite */
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}

.social-fixed a img {
  width: 28px;
  height: 28px;
  filter: invert(80%) sepia(30%) saturate(150%) hue-rotate(90deg); /* grünlich */
  opacity: 0.8;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-fixed a:hover img {
  transform: scale(1.2);
  opacity: 1;
}

.epk-link-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.tile {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  background-color: #222;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.tile:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.tile img {
  width: 20px;
  height: 20px;
  filter: invert(100%);
}
.logo-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.logo-item img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  background-color: #1a1a1a;
  padding: 0.5rem;
}

.logo-item p {
  margin-top: 0.5rem;
  color: #aaa;
  font-size: 0.9rem;
}

.logo-dark-bg {
  background-color: #333;
  padding: 1rem;
  border-radius: 6px;
}

.bandfoto-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.bandfoto-item img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  background-color: #1a1a1a;
  padding: 0.5rem;
}

.bandfoto-item p {
  margin-top: 0.5rem;
  color: #aaa;
  font-size: 0.9rem;
}
