* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #0d0d0d;
  color: #f0f0f0;
  font-family: "Oswald", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
}

.page {
  width: 100%;
  min-height: 100vh;
  background: #0d0d0d;
  position: relative;
  overflow-x: hidden;
}

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 12px;
  background: #0d0d0d;
}

.menu-btn,
.close-btn,
.player-controls button {
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
}

.menu-btn {
  position: fixed;
  top: 10px;
  left: 10px;
  font-size: 1.1rem;
  line-height: 1;
  z-index: 1001;
}

.logo {
  flex: 1;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  font-family: 'Bebas Neue', sans-serif;
  color: #fff;
  -webkit-text-stroke: 1.5px #d4ab29;
}

.logo-link {
  color: inherit;
  text-decoration: none;
}

.topbar-spacer {
  width: 2rem;
}

.desktop-nav {
  display: none;
}

/* Mobile Menü */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 40;
}

.overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.side-menu {
  position: fixed;
  top: 0;
  left: -88%;
  width: 84%;
  max-width: 320px;
  height: 100%;
  background: #000;
  color: #fff;
  z-index: 50;
  padding: 24px 22px;
  transition: left 0.28s ease;
}

.side-menu.open {
  left: 0;
}

.side-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 2.2rem;
  font-weight: 700;
}

.close-btn {
  font-size: 2rem;
  line-height: 1;
  color: #fff;
}

.menu-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.2s ease;
  color: rgba(255,255,255,0.75);
}

.menu-links a:hover {
  color: #d4ab29;
  transform: translateX(4px);
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 20px 140px;
  background: #0d0d0d;
}

.hero-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  display: block;
  width: 100%;
  max-width: 900px; /* vorher zu klein */
  height: auto;

  margin: 0 auto;
}

.band-intro {
  white-space: normal;
  text-align: center;

  margin: 20px auto 0;

  font-size: 1rem;
  letter-spacing: 0.02em;

  color: #c0c0c0;
  max-width: 340px;
  line-height: 1.6;
}

.about-page {
  padding: 0 20px 140px;
  background: #0d0d0d;
}

.about-section {
  max-width: 1100px;
  margin: 0 auto;
}

.about-top-image {
  margin-bottom: 40px;
}

.about-top-image img {
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.about-text h1 {
  margin: 0 0 16px;
  font-size: 2rem;
  text-transform: uppercase;
}

.about-subtitle {
  margin: 0 0 20px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-text p {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.65;
}

.about-side-image img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
}

@media (min-width: 900px) {
  .about-page {
    padding: 20px 24px 120px;
  }

  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }

  .about-top-image img {
    max-width: 980px;
  }

  .about-side-image img {
    max-width: 380px;
  }
}


/* Alte Artwork-Elemente deaktiviert */
.artwrap,
.figure,
.figure-left,
.figure-right,
.shape,
.left-shape,
.right-shape,
.triangle,
.mouth,
.fringe,
.top-triangle,
.nose,
.eye,
.mask {
  display: none !important;
}

/* Player */
.player {
  position: fixed;
  right: 20px;
  bottom: 20px;

  width: 250px;
  height: 64px;
  padding: 0 18px;

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

  background: #d4ab29;
  color: #0d0d0d;

  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);

  z-index: 1000;
}

/* Titel */
.player-left {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1;
}

#trackTitle {
  display: block;
  max-width: 260px;

  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Controls */
.player-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.player-controls button {
  border: none;
  background: none;
  color: #0d0d0d;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.player-controls button:hover {
  color: #fff;
  transform: scale(1.05);
}

#playBtn {
  font-size: 1.35rem;
}

.content {
  height: 1px;
}

/* Desktop */
@media (min-width: 900px) {
  .topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 40px 0;
    background: #0d0d0d;
  }

  .menu-btn {
    display: none;
  }

  .topbar-spacer {
    display: none;
  }

  .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.0rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    -webkit-text-stroke: 2px #d4ab29;
    margin-bottom: 16px;
  }

  .desktop-nav {
    display: flex;
    gap: 0;
    width: 100%;
    justify-content: center;
    border-top: 1px solid rgba(212,171,41,0.3);
    padding: 12px 0;
  }

  .desktop-nav a {
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #aaa;
    padding: 6px 18px;
    transition: color 0.2s ease;
  }

  .desktop-nav a:hover,
  .desktop-nav a.active {
    color: #d4ab29;
    text-decoration: underline;
    text-underline-offset: 6px;
  }

  .hero {
    min-height: auto;
    padding: 6px 24px 200px;
  }

  .hero-image img {
    width: auto;
    max-width: min(90vw, 1180px);
    max-height: calc(100vh - 280px);
    height: auto;
  }

  .side-menu {
    width: 360px;
    max-width: 360px;
  }

  .player {
    right: 28px;
    bottom: 28px;
    min-width: 280px;
    max-width: 460px;
    height: 60px;
    padding: 0 18px;
  }

  #trackTitle {
    max-width: 210px;
    font-size: 0.78rem;
  }

  .player-controls {
    gap: 12px;
  }

  .player-controls button {
    font-size: 1.1rem;
    color: #0d0d0d;
  }

  .player-controls button:hover {
    color: #fff;
  }

  #playBtn {
    font-size: 1.5rem;
  }
}

/* Mobile */
@media (max-width: 420px) {
  .logo {
    font-size: 1.4rem;
  }

  .menu-links a {
    font-size: 1.3rem;
  }

  .hero {
    padding: 14px 14px 80px;
  }

  .player {
    left: 0;
    right: 0;
    bottom: 0;
    min-width: unset;
    max-width: 100%;
    width: 100%;
    height: 52px;
    padding: 0 16px;
    gap: 12px;
    border-radius: 0;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
    background: #d4ab29;
    color: #0d0d0d;
  }

  #trackTitle {
    max-width: 160px;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
  }

  .player-controls {
    gap: 10px;
    margin-left: 0;
  }

  .player-controls button {
    font-size: 0.95rem;
  }

  #playBtn {
    font-size: 1.2rem;
  }
}