@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

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

body {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  background: #fff;
  color: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Navigation ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 48px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #555;
}

.social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-icons a {
  color: #000;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}

.social-icons a:hover {
  opacity: 0.6;
}

.social-icons svg {
  width: 18px;
  height: 18px;
  fill: #000;
}

/* ── Main Content ── */
main {
  flex: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 40px;
  width: 100%;
}

/* ── Album Section ── */
.album-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 6px;
  text-align: center;
  margin-bottom: 48px;
  text-transform: uppercase;
}

.album-covers {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.album-covers img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.album-covers img:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,0.2);
  transition: box-shadow 0.3s;
}

.download-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.1s;
}

.btn:hover {
  background: #333;
}

.btn:active {
  transform: scale(0.98);
}

.btn-outline {
  background: transparent;
  color: #000;
  border: 1.5px solid #000;
}

.btn-outline:hover {
  background: #000;
  color: #fff;
}

/* ── Track List ── */
.tracklist-section {
  width: 100%;
}

.tracklist-section h2 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 16px;
}

.track {
  display: flex;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  gap: 14px;
}

.track:first-of-type {
  border-top: 1px solid #f0f0f0;
}

.track-number {
  width: 28px;
  font-size: 12px;
  color: #bbb;
  text-align: right;
  flex-shrink: 0;
  font-weight: 500;
}

.play-btn {
  width: 34px;
  height: 34px;
  border: 1.5px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  background: none;
  transition: background 0.2s;
}

.play-btn:hover {
  background: #000;
}

.play-btn:hover svg {
  fill: #fff;
}

.play-btn svg {
  width: 11px;
  height: 11px;
  fill: #000;
  margin-left: 2px;
  transition: fill 0.2s;
}

.play-btn.playing {
  background: #000;
}

.play-btn.playing svg {
  fill: #fff;
}

.track-info {
  flex: 1;
  min-width: 0;
}

.track-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-feat {
  font-size: 11px;
  color: #888;
  font-weight: 400;
  margin-left: 4px;
}

.track-badge {
  font-size: 10px;
  color: #888;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.track-duration {
  font-size: 12px;
  color: #999;
  flex-shrink: 0;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

/* ── Footer ── */
footer {
  border-top: 1px solid #e5e5e5;
  padding: 28px 48px;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 11px;
  color: #999;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 11px;
  color: #999;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #000;
}

/* ── Hero ── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px 64px;
  text-align: center;
  background: #fff;
}

.hero-portrait {
  width: 280px;
  height: 380px;
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-logo {
  height: 100px;
  width: auto;
  margin-bottom: 6px;
}

.hero-subtitle {
  font-size: 11px;
  letter-spacing: 3px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-social {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.hero-social a {
  width: 44px;
  height: 44px;
  border: 1.5px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: border-color 0.2s, background 0.2s;
}

.hero-social a:hover {
  border-color: #000;
  background: #000;
}

.hero-social a:hover svg {
  fill: #fff;
}

.hero-social svg {
  width: 18px;
  height: 18px;
  fill: #000;
  transition: fill 0.2s;
}

/* ── Generic Section ── */
.section {
  padding: 80px 40px;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

.section-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  max-width: 860px;
  margin: 0 auto;
}

.section-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e5e5;
}

/* ── Bio ── */
.bio-text p {
  font-size: 15px;
  line-height: 1.85;
  color: #222;
  margin-bottom: 20px;
  font-weight: 300;
}

.bio-text p:last-child {
  margin-bottom: 0;
}

/* ── Konzerte ── */
.tour-empty {
  font-size: 13px;
  color: #aaa;
  letter-spacing: 1px;
  text-align: center;
  padding: 40px 0;
}

/* ── Downloads ── */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.download-card {
  border: 1px solid #e5e5e5;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  transition: border-color 0.2s;
}

.download-card:hover {
  border-color: #000;
}

.download-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-card-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: #000;
  stroke-width: 1.5;
}

.download-card-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.download-card-sub {
  font-size: 11px;
  color: #999;
  letter-spacing: 1px;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.contact-block h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 12px;
}

.contact-block p {
  font-size: 14px;
  line-height: 1.7;
  color: #222;
}

.contact-block a {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  transition: border-color 0.2s;
}

.contact-block a:hover {
  border-color: #000;
}

/* ── Sponsors ── */
.sponsors-section {
  padding: 48px 40px;
  border-top: 1px solid #e5e5e5;
  text-align: center;
  background: #111;
}

.sponsors-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 24px;
}

.sponsors-logos img {
  max-width: 600px;
  width: 100%;
  height: auto;
}

/* ── Dropdown ── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > a::after {
  content: '▾';
  font-size: 9px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #e5e5e5;
  min-width: 200px;
  padding: 8px 0;
  z-index: 200;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
}

/* ── Smooth Scroll ── */
html {
  scroll-behavior: smooth;
}

/* ── Responsive ── */
@media (max-width: 720px) {
  nav {
    padding: 16px 24px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-links {
    gap: 18px;
    order: 3;
    width: 100%;
    justify-content: center;
  }

  main {
    padding: 40px 24px;
  }

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

  .album-covers img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .album-title {
    font-size: 22px;
    letter-spacing: 4px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 10px;
  }
}
