/* 
 * BUNKERBANDITS Theme - Developed by Dennis Joest
 */
/* styles for downloads page */
.downloads-page {
  padding-top: 10px;
  padding-bottom: 80px;
}

.downloads-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-top: 60px;
  /* Mehr Platz nach oben zur Überschrift */
  margin-bottom: 80px;
  /* Mehr Platz nach unten zu den Buttons */
  text-align: center;
  color: var(--color-text-white);
  /* Ersetzt --color-text mit zentraler Variable */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Download Buttons Grid Layout */
.download-links-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.flyer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.flyer-col {
  flex: 1;
  min-width: 300px;
}

.flyer-title {
  font-family: var(--font-accent);
  /* Handschrift-Style für Sektions-Titel */
  font-size: 2.5rem;
  color: var(--color-brand-orange);
  /* Ersetzt --color-accent */
  margin-bottom: 20px;
}

.flyer-col p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-text-white);
  /* Einheitliche Textfarbe */
  margin-bottom: 20px;
}

.flyer-image-container {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.flyer-image {
  width: 100%;
  height: auto;
  display: block;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.text-center {
  text-align: center;
}

/* Contact Box */
.flyer-contact-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid var(--color-brand-orange);
  /* Linke Akzentlinie in Markenfarbe */
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.contact-list li {
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-list a {
  color: var(--color-brand-orange);
  /* Kontakt-Links in Markenfarbe */
  text-decoration: none;
  transition: color 0.3s;
}

.contact-list a:hover {
  color: var(--color-white);
}

.emoji {
  font-size: 1.5rem;
}

/* Setlist Table */
.setlist-date {
  font-size: 1.2rem;
  font-family: var(--font-primary);
  /* Hauptschriftart */
  color: var(--color-text-dim);
  /* Datum in gedimmter Farbe */
  font-weight: normal;
}

.setlist-table-wrapper {
  overflow-x: auto;
  margin-bottom: 50px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 20px;
}

.setlist-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.1rem;
}

.setlist-table th,
.setlist-table td {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.setlist-table th {
  color: var(--color-brand-orange);
  /* Tabellen-Header in Markenfarbe */
  font-weight: bold;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.setlist-table th.text-center,
.setlist-table td.text-center {
  text-align: center;
}

.setlist-table tr:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.setlist-table tr:last-child td {
  border-bottom: none;
}

.bb-highlight {
  color: var(--color-brand-orange);
  /* Highlight-Farbe */
  font-weight: bold;
}

/* Download Buttons Layout (List Style) */
.download-links-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 15px 25px;
  background-color: rgba(255, 94, 0, 0.1);
  /* Transparenter Untergrund passend zu Orange */
  color: var(--color-white);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 94, 0, 0.3);
}

.download-btn:hover {
  background-color: var(--color-brand-orange);
  /* Vollflächig Orange bei Hover */
  color: #fff;
  border-color: var(--color-brand-orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 94, 0, 0.3);
}

.download-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 15px;
  margin-bottom: 0;
  color: var(--color-brand-orange);
  /* Icon in Markenfarbe */
  transition: color 0.2s ease;
}

.download-btn:hover .download-icon {
  color: #fff;
}

@media (max-width: 768px) {
  .flyer-row {
    flex-direction: column;
  }

  .download-btn {
    font-size: 1rem;
    padding: 12px 20px;
  }
}