/* ========================= */
/* GLOBAL */
/* ========================= */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0a0a0a;
  color: #fff;
}

/* GOLD AKZENT */
:root {
  --gold: #d4af37;
  --gold-dark: #b8942e;
}

/* ========================= */
/* HERO */
/* ========================= */

.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background:
  radial-gradient(circle at top, #1b1b1b, #000);
}

.hero-content {
  padding: 20px;
}

.hero h1 {
  font-size: 64px;
  letter-spacing: 6px;
  margin: 0;
  color: var(--gold);

  text-shadow:
  0 0 15px rgba(212,175,55,0.25);
}

.hero p {
  margin: 10px 0 30px;
  color: var(--gold);
  opacity: 0.9;
}

/* ========================= */
/* BUTTONS */
/* ========================= */

.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.buttons a {
  font-size: 14px;
  padding: 12px 18px;

  border: 1px solid var(--gold);

  color: var(--gold);
  text-decoration: none;

  transition: 0.3s ease;

  border-radius: 10px;

  background:
  rgba(255,255,255,0.02);

  backdrop-filter: blur(3px);
}

.buttons a:hover {
  background: var(--gold);
  color: #000;

  transform: translateY(-2px);
}

/* ========================= */
/* SECTIONS */
/* ========================= */

.section {
  padding: 90px 20px;
  text-align: center;
}

.section.dark {
  background: #111;
}

h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: var(--gold);

  letter-spacing: 1px;
}

/* ========================= */
/* CARD */
/* ========================= */

.card {
  width: 95%;
  max-width: 1000px;

  margin: 0 auto;

  padding: 35px;

  border:
  1px solid rgba(255,255,255,0.08);

  background:
  rgba(15,15,15,0.85);

  border-radius: 22px;

  backdrop-filter: blur(8px);

  box-shadow:
  0 10px 40px rgba(0,0,0,0.4);
}

/* ========================= */
/* FORM */
/* ========================= */

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

input,
textarea {
  padding: 14px;

  background: #000;

  border:
  1px solid #333;

  border-radius: 10px;

  color: #fff;

  transition: 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;

  border-color: var(--gold);

  box-shadow:
  0 0 12px rgba(212,175,55,0.15);
}

button {
  padding: 14px;

  border: none;

  border-radius: 10px;

  background: var(--gold);

  color: #000;

  font-weight: bold;

  cursor: pointer;

  transition: 0.3s ease;
}

button:hover {
  transform: translateY(-2px);
}

/* ========================= */
/* LOGO */
/* ========================= */

.logo {
  width: 100%;
  max-width: 760px;
  height: auto;
}

/* ========================= */
/* BAND */
/* ========================= */

.band-group-image {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.band-group-image img {
  width: 100%;
  max-width: 850px;

  border-radius: 20px;

  border:
  1px solid rgba(255,255,255,0.08);

  object-fit: cover;

  box-shadow:
  0 10px 35px rgba(0,0,0,0.45);
}

.band-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 50px;

  margin-bottom: 40px;
}

.band-row.small {
  gap: 70px;
}

/* MEMBER */

.member {
  text-align: center;
  cursor: pointer;

  transition:
  transform 0.35s ease;
}

.member:hover {
  transform:
  translateY(-8px)
  scale(1.03);
}

.member img {
  width: 240px;
  height: 240px;

  object-fit: cover;

  border-radius: 20px;

  border:
  1px solid rgba(255,255,255,0.08);

  margin-bottom: 14px;

  transition:
  transform 0.4s ease,
  box-shadow 0.4s ease,
  border-color 0.4s ease;

  box-shadow:
  0 10px 30px rgba(0,0,0,0.35);
}

.member:hover img {
  transform: scale(1.04);

  border-color: var(--gold);

  box-shadow:
  0 20px 40px rgba(0,0,0,0.55);
}

.member p {
  margin: 0;
  opacity: 0.9;
  letter-spacing: 0.3px;
}

/* ========================= */
/* MEMBER MODAL */
/* ========================= */

.member-modal {
  position: fixed;
  inset: 0;

  background:
  rgba(0,0,0,0.8);

  backdrop-filter: blur(8px);

  display: none;

  align-items: center;
  justify-content: center;

  z-index: 9999;
}

.member-modal-content {
  position: relative;

  background:
  rgba(15,15,15,0.95);

  border:
  1px solid rgba(255,255,255,0.08);

  width: 90%;
  max-width: 520px;

  padding: 45px;

  border-radius: 24px;

  text-align: center;

  box-shadow:
  0 0 45px rgba(0,0,0,0.5);

  animation:
  modalFade 0.3s ease;
}

.member-modal-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.member-modal-content p {
  color: #bbb;
  line-height: 1.8;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 22px;

  font-size: 2rem;

  cursor: pointer;

  color: #fff;
}

@keyframes modalFade {

  from {
    opacity: 0;
    transform:
    translateY(20px)
    scale(0.95);
  }

  to {
    opacity: 1;
    transform:
    translateY(0)
    scale(1);
  }
}

/* ========================= */
/* EVENTS */
/* ========================= */

.event-poster {
  width: 100%;
  margin-bottom: 20px;
}

.event-poster img {
  width: 100%;
  max-width: 700px;

  border-radius: 18px;

  border:
  1px solid rgba(255,255,255,0.08);

  display: block;
  margin: 0 auto;

  transition: 0.3s ease;
}

.event-poster img:hover {
  transform: scale(1.01);

  border-color: var(--gold);
}

.event-info p {
  line-height: 1.7;
}

/* ========================= */
/* FOOTER */
/* ========================= */

footer {
  background: #0a0a0a;
  padding: 40px 20px;
  text-align: center;
}

.footer-divider {
  width: 80%;
  height: 1px;
  margin: 15px auto;

  background:
  linear-gradient(
    90deg,
    transparent,
    var(--gold),
                  transparent
  );
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  max-width: 1100px;

  margin: 0 auto;
  padding: 20px 0;
}

.footer-left,
.footer-right {
  flex: 1;
  text-align: center;
  color: #aaa;
}

.footer-center {
  flex: 2;

  display: flex;
  justify-content: center;
  align-items: center;

  gap: 18px;
}

/* SOCIAL */

.social-icons a img {
  width: 38px;
  height: 38px;

  opacity: 0.75;

  transition:
  transform 0.25s ease,
  opacity 0.25s ease;
}

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

/* LEGAL */

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 20px;

  padding: 15px 10px 25px;

  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.85rem;

  opacity: 0.7;

  text-decoration: none;

  color: inherit;

  transition: 0.2s ease;
}

.footer-legal a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* WAPPEN */

.footer-right img {
  width: 54px;
  height: 54px;

  object-fit: contain;

  opacity: 0.85;
}

/* ========================= */
/* LEGAL PAGES */
/* ========================= */

.legal-page {
  background: #0f0f0f;
  color: #eaeaea;

  padding: 80px 20px;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.legal-subtitle {
  color: #999;
  margin-bottom: 50px;
}

.legal-block {
  margin-bottom: 40px;
  padding-bottom: 30px;

  border-bottom:
  1px solid rgba(255,255,255,0.08);
}

.legal-block h2 {
  font-size: 20px;
  margin-bottom: 15px;
}

.legal-block p {
  color: #cfcfcf;
  line-height: 1.7;
}

/* LISTEN */

.datenschutz-liste {
  list-style: none;
  padding: 0;
  margin: 0;
}

.datenschutz-liste li {
  padding: 7px 0 7px 18px;
  position: relative;
  color: #cfcfcf;
}

.datenschutz-liste li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #777;
}

/* BACK LINK */

.back-link {
  position: fixed;
  top: 15px;
  left: 15px;

  z-index: 1000;

  text-decoration: none;

  color: var(--gold);

  padding: 10px 14px;

  border:
  1px solid rgba(212,175,55,0.25);

  border-radius: 10px;

  background:
  rgba(0,0,0,0.5);

  backdrop-filter: blur(6px);

  transition: 0.3s ease;
}

.back-link:hover {
  background: var(--gold);
  color: #000;
}

/* ========================= */
/* COOKIE BANNER */
/* ========================= */

.cookie-banner {
  position: fixed;

  bottom: 20px;
  left: 50%;

  transform: translateX(-50%);

  background:
  rgba(15,15,15,0.95);

  border:
  1px solid rgba(212,175,55,0.4);

  border-radius: 18px;

  padding: 18px 22px;

  max-width: 620px;
  width: 92%;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;

  z-index: 9999;

  flex-wrap: wrap;

  backdrop-filter: blur(10px);
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;

  flex: 1;
  min-width: 200px;
}

.cookie-overlay {
  position: fixed;
  inset: 0;

  background:
  rgba(0,0,0,0.75);

  z-index: 9998;

  backdrop-filter: blur(3px);
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons button {
  padding: 10px 14px;
  border-radius: 10px;
}

.cookie-buttons .accept {
  background: var(--gold);
  color: #000;
}

.cookie-buttons .decline {
  background: #333;
  color: #fff;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 768px) {

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 14px;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
  }

  .buttons a {
    width: 80%;
    text-align: center;
  }

  .band-row {
    flex-direction: column;
    align-items: center;
  }

  .member img {
    width: 190px;
    height: 190px;
  }

  .footer-row {
    flex-direction: column;
    gap: 20px;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}
