/* Base District - Modern Responsive Stylesheet
   Retro Style preserved: Dark theme, orange accents, funk aesthetic */

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Verdana', 'Arial', sans-serif;
  background-color: #1a1b1e;
  color: #bfcbe2;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #ff7f00;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #fdbf6f;
}

a:visited {
  color: #fdbf6f;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h2 {
  font-size: 1.5rem;
  color: #ff7f00;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #ff7f00;
  display: inline-block;
}

h3 {
  font-size: 1.1rem;
  color: #fdbf6f;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

strong {
  color: #fff;
}

/* ===== Header ===== */
.site-header {
  background-color: #000;
  padding: 1rem 0;
  position: relative;
  z-index: 100;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo {
  flex-shrink: 0;
}

/* ===== Navigation ===== */
.main-nav {
  background-color: #33353a;
  border-top: 3px solid #ff7f00;
  border-bottom: 1px solid #444;
  position: sticky;
  top: 0;
  z-index: 99;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #ff7f00;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.75rem 0;
  width: 100%;
  text-align: right;
}

.nav-toggle:hover {
  color: #fdbf6f;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 0;
}

.nav-list li {
  flex: 1;
}

.nav-list a {
  display: block;
  padding: 1rem 1.25rem;
  text-align: center;
  color: #bfcbe2;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.nav-list a:hover,
.nav-list a:focus {
  color: #ff7f00;
  background-color: rgba(255, 127, 0, 0.08);
  border-bottom-color: #ff7f00;
}

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(135deg, #33353a 0%, #1a1b1e 50%, #33353a 100%);
  padding: 4rem 2rem;
  text-align: center;
  border-bottom: 3px solid #ff7f00;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255,127,0,0.05) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero .band-photo {
  max-width: 280px;
  margin: 0 auto 2rem;
  border: 3px solid #ff7f00;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(255, 127, 0, 0.2);
}

.hero h1 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.2em;
}

.hero .tagline {
  font-size: 1.1rem;
  color: #ff7f00;
  font-style: italic;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.hero .subtitle {
  font-size: 0.95rem;
  color: #bfcbe2;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Section Layout ===== */
.section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-dark {
  background-color: #33353a;
}

.section-darker {
  background-color: #1a1b1e;
}

.section-full {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.section-full > .section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== Aktuell Section ===== */
.aktuell-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.aktuell-text {
  padding-right: 1rem;
}

.aktuell-image {
  display: flex;
  justify-content: center;
  align-items: start;
}

.aktuell-image img {
  max-width: 260px;
  border: 2px solid #555;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

/* ===== Info Section ===== */
.info-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.info-text {
  padding-right: 1rem;
}

.info-sidebar {
  background: rgba(255, 127, 0, 0.05);
  border: 1px solid #444;
  border-radius: 4px;
  padding: 1.5rem;
}

.info-sidebar h3 {
  margin-top: 1.5rem;
}

.info-sidebar h3:first-child {
  margin-top: 0;
}

.press-images {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.press-images a {
  display: block;
  border: 1px solid #555;
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.press-images a:hover {
  transform: scale(1.05);
  border-color: #ff7f00;
}

.press-images img {
  width: 100px;
  height: auto;
}

/* ===== Musik Section ===== */
.musik-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.musik-text {
  padding-right: 1rem;
}

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

.cd-cover img {
  max-width: 220px;
  margin: 0 auto 1.5rem;
  border: 3px solid #ff7f00;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(255, 127, 0, 0.15);
}

/* Track List */
.tracklist {
  list-style: none;
  counter-reset: track;
  margin: 1.5rem 0;
}

.tracklist li {
  counter-increment: track;
  padding: 0.75rem;
  border-bottom: 1px solid #3a3c42;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  transition: background-color 0.2s ease;
}

.tracklist li:hover {
  background-color: rgba(255, 127, 0, 0.06);
}

.tracklist li::before {
  content: counter(track) ".";
  color: #ff7f00;
  font-weight: 700;
  min-width: 1.75rem;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.tracklist li .track-name {
  color: #bfcbe2;
  font-size: 0.95rem;
  min-width: 140px;
  flex-shrink: 0;
}

.tracklist li .track-note {
  color: #777;
  font-size: 0.85rem;
}

.tracklist li audio {
  height: 32px;
  flex: 1;
  min-width: 180px;
  filter: none;
  border-radius: 16px;
}

/* Custom audio player color override for dark theme */
.tracklist li audio::-webkit-media-controls-panel {
  background-color: #2a2c30;
}

.tracklist li audio::-webkit-media-controls-current-time-display,
.tracklist li audio::-webkit-media-controls-time-remaining-display {
  color: #bfcbe2;
  font-size: 0.7rem;
}

/* Downloads Section */
.downloads {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #444;
}

.downloads h3 {
  margin-bottom: 1rem;
}

.download-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.5rem 0;
  border-bottom: 1px solid #3a3c42;
}

.download-item .track-name {
  color: #bfcbe2;
  font-size: 0.95rem;
  min-width: 140px;
}

.download-item a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.download-item .size {
  color: #777;
  font-size: 0.8rem;
}

.download-item audio {
  height: 32px;
  flex: 1;
  min-width: 180px;
  border-radius: 16px;
}

/* ===== Band Section ===== */
.band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.band-member {
  text-align: center;
  background: #33353a;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #444;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.band-member:hover {
  transform: translateY(-4px);
  border-color: #ff7f00;
}

.band-member img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
}

.band-member .member-info {
  padding: 1rem;
}

.band-member .member-name {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.band-member .member-role {
  color: #ff7f00;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== Support Section ===== */
.support-list {
  margin-top: 1.5rem;
  columns: 2;
  column-gap: 2rem;
}

.support-list p {
  break-inside: avoid;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* ===== Kontakt Section ===== */
.kontakt-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.kontakt-info {
  padding-right: 1rem;
}

.kontakt-details {
  background: rgba(255, 127, 0, 0.05);
  border: 1px solid #444;
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.kontakt-details p {
  margin-bottom: 0.4rem;
  text-align: left;
}

.kontakt-details .label {
  color: #ff7f00;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== Footer ===== */
.site-footer {
  background-color: #000;
  border-top: 3px solid #ff7f00;
  padding: 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.site-footer p {
  color: #666;
  font-size: 0.8rem;
  text-align: center;
  margin-bottom: 0.3rem;
}

.site-footer a {
  color: #ff7f00;
}

/* ===== Decorative Line (retro style) ===== */
.retro-line {
  height: 4px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #ff7f00 20%, 
    #fdbf6f 50%, 
    #ff7f00 80%, 
    transparent 100%
  );
  opacity: 0.6;
}

/* ===== Audio Player Retro Style ===== */
audio {
  width: 100%;
  margin: 0.5rem 0;
  filter: sepia(20%) saturate(150%);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .aktuell-content,
  .info-content,
  .musik-content,
  .kontakt-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .aktuell-text,
  .info-text,
  .musik-text,
  .kontakt-info {
    padding-right: 0;
  }

  .aktuell-image {
    order: -1;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .band-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .support-list {
    columns: 1;
  }
}

@media (max-width: 700px) {
  .nav-toggle {
    display: block;
  }

  .nav-list {
    display: none;
    flex-direction: column;
  }

  .nav-list.open {
    display: flex;
  }

  .nav-list a {
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #444;
  }

  .nav-list li:last-child a {
    border-bottom: none;
  }

  .hero {
    padding: 2.5rem 1.5rem;
  }

  .hero .band-photo {
    max-width: 200px;
  }

  .section {
    padding: 2.5rem 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .band-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .band-member img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .header-inner {
    padding: 0 1rem;
  }

  .nav-inner {
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
  }

  .section {
    padding: 2rem 1rem;
  }

  .band-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .band-member img {
    height: 150px;
  }

  .press-images {
    justify-content: center;
  }
}
