/* ---------------------------------------------------
   GRUNDEINSTELLUNGEN
--------------------------------------------------- */

body {
  margin: 0;
  background: #0a0a0a;
  color: #f5f5f5;
  line-height: 1.6;

  font-family:
    "Bahnschrift SemiLight",
    "Bahnschrift",
    "Segoe UI",
    Arial,
    sans-serif;
}

h1, h2, h3 {
  margin-top: 0;
  font-weight: normal;
}

p {
  margin: 0 0 1rem 0;
}


/* ---------------------------------------------------
   HERO (PLAKAT)
--------------------------------------------------- */

.hero {
  min-height: 95vh;

  background-image: url("assets/plakat.jpg");
  background-size: cover;
  background-position: center top;

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

.hero-overlay {
  background: rgba(0,0,0,0.75);
  padding: 60px 40px;
  max-width: 900px;
}


/* Titel */

.hero h1 {
  font-family:
    "Book Antiqua",
    "Palatino Linotype",
    Palatino,
    serif;

  font-size: 72px;
  letter-spacing: 4px;

  color: #d4b26a;

  text-shadow: 0 0 20px rgba(0,0,0,0.9);
  margin-bottom: 10px;
}


/* Untertitel */

.subtitle {
  font-size: 26px;
  color: #d4b26a;
  margin-bottom: 10px;
}

.tagline {
  font-size: 20px;
  margin-bottom: 35px;
}


/* ---------------------------------------------------
   BUTTONS
--------------------------------------------------- */

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

.button {
  padding: 14px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.25s;

  background: #222;
  color: #fff;
}

.button:hover {
  background: #444;
}

.button.gold {
  background: #d4b26a;
  color: #000;
}

.button.gold:hover {
  background: #e7c680;
}


/* ---------------------------------------------------
   CONTENT
--------------------------------------------------- */

.content {
  padding: 80px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.content.dark {
  background: #111;
}

.content h2,
.cta h2 {
  font-family:
    "Book Antiqua",
    "Palatino Linotype",
    Palatino,
    serif;

  font-size: 38px;
  color: #d4b26a;
  margin-bottom: 25px;
}


/* ---------------------------------------------------
   DAS PROJEKT
--------------------------------------------------- */

.project-text {
  max-width: 860px;
  margin: auto;
}

.song-list {
  color: #d4b26a;
  font-size: 1.15rem;
  margin: 25px 0;
}

.project-highlight {
  font-size: 1.3rem;
  color: #d4b26a;
  font-weight: bold;
  margin: 30px 0;
}

.project-closing {
  font-size: 1.2rem;
  color: #d4b26a;
}


/* ---------------------------------------------------
   KONZERTE
--------------------------------------------------- */

.concerts {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.concert {
  background: #111;
  padding: 30px;
  border: 1px solid #333;
  width: 260px;
  transition: 0.25s;
}

.concert:hover {
  border-color: #d4b26a;
  transform: translateY(-5px);
}

.concert h3 {
  font-size: 24px;
  color: #d4b26a;
}

.concert p {
  margin: 6px 0;
}


/* ---------------------------------------------------
   MITWIRKENDE (OHNE KASTEN)
--------------------------------------------------- */

.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.logos img {
  max-height: 100px;
  max-width: 300px;
  object-fit: contain;

  /* leichter Bühnen-Glow */
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}


/* ---------------------------------------------------
   FÖRDERER (WEISSER BLOCK)
--------------------------------------------------- */

.sponsor-box {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;

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

  max-width: 1100px;
  margin: 40px auto;

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

.sponsor-box img {
  max-height: 60px;
  max-width: 180px;
  object-fit: contain;
}


/* ---------------------------------------------------
   CTA
--------------------------------------------------- */

.cta {
  background: #111;
  padding: 90px 20px;
  text-align: center;
}


/* ---------------------------------------------------
   FOOTER
--------------------------------------------------- */

footer {
  text-align: center;
  padding: 40px;
  font-size: 14px;
  background: #000;
}

footer a {
  color: #d4b26a;
  text-decoration: none;
}

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


/* ---------------------------------------------------
   MOBILE
--------------------------------------------------- */

@media (max-width: 900px) {

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

  .subtitle {
    font-size: 20px;
  }

  .tagline {
    font-size: 18px;
  }

  .concert {
    width: 100%;
    max-width: 320px;
  }

}

@media (max-width: 700px) {

  .sponsor-box {
    flex-direction: column;
    gap: 25px;
  }

}

@media (max-width: 600px) {

  .hero {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 38px;
    letter-spacing: 2px;
  }

  .button {
    width: 100%;
    max-width: 260px;
  }

}