/* =============================================
   GHIDRAH – Official Website
   Dark Metal Theme – Gold & Black
   ============================================= */

/* ===== LOKALE SCHRIFTEN ===== */
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/cinzel-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/cinzel-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/open-sans-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/open-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/open-sans-600.woff2') format('woff2');
}

:root {
  --bg-primary:    #0a0a0a;
  --bg-secondary:  #111111;
  --bg-card:       #161616;
  --bg-card-hover: #1e1e1e;
  --gold:          #c8972a;
  --gold-light:    #e4b84a;
  --gold-dim:      #8a6619;
  --text-primary:  #f0ece4;
  --text-secondary:#9a9080;
  --border:        #2a2520;
  --border-gold:   rgba(200, 151, 42, 0.3);
  --nav-height:    78px;
  --radius:        4px;
  --shadow-gold:   0 0 24px rgba(200, 151, 42, 0.2);
}

/* ===== SVG ICONS (ersetzt Font Awesome) ===== */
svg[aria-hidden] {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: -0.125em;
  overflow: visible;
}
.contact-item-icon svg { width: 1.4rem; height: 1.4rem; }
.social-link svg        { width: 1rem;   height: 1rem; }
.social-platform-btn svg{ width: 1.35rem; height: 1.35rem; }
.music-btn svg          { width: 1.1rem; height: 1.1rem; }
.rider-btn svg          { width: 1rem;   height: 1rem; }

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}

.section-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1rem auto 0.5rem;
}

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 24px;
  transition: background 0.3s, box-shadow 0.3s;
}

#navbar.scrolled,
#navbar.menu-open {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
  border-bottom: 1px solid var(--border-gold);
}

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

/* Logo: initially hidden, appears on scroll */
.nav-logo img {
  height: 72px;
  width: auto;
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(200,151,42,0.4));
  transition: opacity 0.4s ease, filter 0.2s;
}

#navbar.scrolled .nav-logo img,
#navbar.menu-open .nav-logo img {
  opacity: 1;
}

.nav-logo img:hover {
  filter: drop-shadow(0 0 14px rgba(200,151,42,0.7));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-primary);
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/band-hero.jpg');
  background-size: cover;
  background-position: center 25%;
  filter: brightness(0.28) saturate(0.7);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.3) 0%,
    rgba(10,10,10,0.1) 50%,
    rgba(10,10,10,0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 0;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-logo {
  width: min(580px, 85vw);
  margin: 0 auto 1.2rem;
  filter: drop-shadow(0 0 30px rgba(200,151,42,0.5));
  animation: heroFadeIn 0.9s ease 0.1s both;
}

.hero-genre {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1rem;
  animation: heroFadeIn 0.7s ease 0.55s both;
}

.hero-genre-br { display: none; }

.hero-tagline {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.75rem, 2vw, 1rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
  animation: heroFadeIn 0.7s ease 0.85s both;
}

.hero-origin {
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 2.5rem;
  animation: heroFadeIn 0.7s ease 1.05s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeIn 0.7s ease 1.35s both;
}

/* ===== BUTTONS ===== */
.btn {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
}

.btn-primary {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #0a0a0a;
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: rgba(200,151,42,0.1);
  color: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  color: var(--gold-dim);
  font-size: 1.4rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SECTIONS GENERAL ===== */
section {
  padding: 100px 0;
}

section:nth-child(odd) { background: var(--bg-primary); }
section:nth-child(even) { background: var(--bg-secondary); }

/* ===== ABOUT ===== */
#about .about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

#about .about-text p {
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}

/* erster Absatz wie alle anderen */

/* ===== H3-ÜBERSCHRIFTEN (Über Uns Bereich) ===== */
.section-h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 1.8rem;
}

/* ===== PRESSE ===== */
.press-grid {
  margin-top: 5rem;
}

/* press-grid-title: alles via .section-h3 geregelt */

.press-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.press-item {
  background: rgba(200,151,42,0.04);
  border-left: 2px solid var(--gold-dim);
  padding: 1rem 1.2rem;
}

.press-item blockquote {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.press-item cite {
  display: block;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 1px solid var(--border-gold);
  filter: saturate(0.7);
  transition: filter 0.4s;
}

.about-image img:hover { filter: saturate(1); }

.about-image::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid var(--border-gold);
  pointer-events: none;
  opacity: 0.4;
}

/* ===== BAND MITGLIEDER (Teil von Über uns, gleiche Hintergrundfarbe) ===== */
#about,
#band {
  background: var(--bg-secondary);
}

#band {
  padding-top: 3rem;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

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

.member-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}

.member-card:hover .member-photo {
  border-color: var(--border-gold);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: saturate(0.5) brightness(0.9);
  transition: filter 0.4s, transform 0.4s;
}

.member-card:hover .member-photo img {
  filter: saturate(0.85) brightness(1);
  transform: scale(1.04);
}

.member-name {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.member-role {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== MUSIK ===== */
#musik { background: var(--bg-primary); }

.music-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: stretch;
}

.music-grid > div {
  display: flex;
  flex-direction: column;
  min-height: 440px;
}

.video-wrapper {
  position: relative;
  flex: 1;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ── YouTube Facade ── */
.yt-facade {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  cursor: pointer;
  background: #000;
}

.yt-facade img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}

.yt-facade:hover img {
  opacity: 0.85;
}

.yt-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 48px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.6));
  transition: transform 0.15s, filter 0.15s;
  pointer-events: none;
}

.yt-facade:hover .yt-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.8));
}

.yt-play-btn svg {
  width: 100%; height: 100%;
  fill: none;
}

/* ── Spotify Facade ── */
.spotify-wrapper {
  border: 1px solid var(--border-gold);
  overflow: hidden;
  flex: 1;
}

.spotify-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
}

.spotify-facade {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  height: 100%;
  background: #121212;
  cursor: pointer;
  transition: background 0.2s;
}

.spotify-facade:hover {
  background: #1a1a1a;
}

.spotify-facade-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
}

.spotify-facade-logo {
  width: 56px; height: 56px;
}

.spotify-facade-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: #fff;
}

.spotify-facade-text strong {
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.spotify-facade-text span {
  font-size: 0.85rem;
  color: #aaa;
}

.spotify-facade-play {
  width: 48px; height: 48px;
  background: #1DB954;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #000;
  padding-left: 3px;
  transition: transform 0.15s, background 0.15s;
}

.spotify-facade:hover .spotify-facade-play {
  transform: scale(1.1);
  background: #1ed760;
}

.video-label {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  /* Gleiche Höhe wie .video-tabs: flex-end-Ausrichtung + Border-Linie */
  display: flex;
  align-items: flex-end;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--border-gold);
}

/* ── Video Tabs ── */
.video-tabs {
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--border-gold);
  margin-bottom: 0.8rem;
  gap: 0;
}

.video-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 0 0.9rem 0.35rem;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  line-height: 1.7;
}

.video-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.video-tab:hover:not(.active) {
  color: var(--gold-light);
}

/* ── Video Panels (Tab-Inhalt) ── */
.video-panel {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.video-panel.hidden {
  display: none;
}

.music-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.music-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 12px 24px;
  border: 1px solid var(--border-gold);
  color: var(--text-primary);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.25s;
  background: var(--bg-card);
}

.music-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,151,42,0.08);
}

.music-btn .icon { font-size: 1.1rem; }
.music-btn.youtube:hover { color: #ff4444; border-color: #ff4444; }
.music-btn.spotify:hover { color: #1db954; border-color: #1db954; }

/* ===== TOURDATEN ===== */
#tourdaten { background: var(--bg-secondary); }

.tours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.tours-table thead th {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-gold);
}

.tours-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.tours-table tbody tr:hover {
  background: rgba(200,151,42,0.05);
}

.tours-table td {
  padding: 16px;
  color: var(--text-secondary);
}

.tours-table td.date-col {
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.tours-table td.venue-col {
  color: var(--text-primary);
  font-weight: 600;
}

.tours-table td.info-col {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.ticket-link {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.ticket-link:hover {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}

.no-tours {
  text-align: center;
  padding: 3rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* ===== MERCH ===== */
#merch { background: var(--bg-primary); }

.merch-notice {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(200,151,42,0.08);
  border: 1px solid var(--border-gold);
  padding: 14px 20px;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.merch-notice .icon { font-size: 1.2rem; flex-shrink: 0; }

.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.merch-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
}

.merch-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.merch-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.merch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.merch-card:hover .merch-img img {
  transform: scale(1.05);
}

.merch-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.merch-placeholder .ph-icon {
  font-size: 2.5rem;
  opacity: 0.3;
}

.merch-info {
  padding: 1rem 1.2rem 1.2rem;
}

.merch-name {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.merch-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.merch-price {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
}

.merch-tag {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ===== LIVE-GALERIE ===== */
#galerie { background: var(--bg-secondary); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 380px;
  gap: 10px;
}

/* picture-Element transparent machen für alle Bereiche AUSSER Gallery
   (Gallery braucht picture als Grid-Item für korrekte nth-child-Platzierung) */
.nav-logo picture,
.footer-logo picture,
.member-photo picture,
.about-image picture {
  display: contents;
}

/* Gallery: picture ist das Grid-Item — img füllt es komplett aus */
.gallery-grid picture {
  display: block; /* Default, kein display:contents! */
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.85);
  transition: filter 0.35s;
  cursor: pointer;
  display: block;
}

.gallery-grid img:hover {
  filter: saturate(1) brightness(1);
}

/* ── Mosaic layout: grid-column direkt auf picture (= Grid-Item) ── */
/* Row 1: span2 | span1 | span1 */
.gallery-grid picture:nth-child(1)  { grid-column: 1 / 3; }
.gallery-grid picture:nth-child(2)  { grid-column: 3 / 4; }
.gallery-grid picture:nth-child(3)  { grid-column: 4 / 5; }
/* Row 2: span1 | span2 | span1 */
.gallery-grid picture:nth-child(4)  { grid-column: 1 / 2; }
.gallery-grid picture:nth-child(5)  { grid-column: 2 / 4; }
.gallery-grid picture:nth-child(6)  { grid-column: 4 / 5; }
/* Row 3: span2 | span1 | span1 */
.gallery-grid picture:nth-child(7)  { grid-column: 1 / 3; }
.gallery-grid picture:nth-child(8)  { grid-column: 3 / 4; }
.gallery-grid picture:nth-child(9)  { grid-column: 4 / 5; }
/* Row 4: span1 | span2 | span1 */
.gallery-grid picture:nth-child(10) { grid-column: 1 / 2; }
.gallery-grid picture:nth-child(11) { grid-column: 2 / 4; }
.gallery-grid picture:nth-child(12) { grid-column: 4 / 5; }
/* Row 5: 4 equal */
.gallery-grid picture:nth-child(13) { grid-column: 1 / 2; }
.gallery-grid picture:nth-child(14) { grid-column: 2 / 3; }
.gallery-grid picture:nth-child(15) { grid-column: 3 / 4; }
.gallery-grid picture:nth-child(16) { grid-column: 4 / 5; }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-inner img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid var(--border-gold);
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.lightbox-close:hover { color: var(--gold); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.2s;
}

.lightbox-nav:hover { background: rgba(200,151,42,0.2); }
.lightbox-prev { left: -56px; }
.lightbox-next { right: -56px; }

/* ===== KONTAKT ===== */
#booking { background: var(--bg-primary); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.contact-card h3 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.contact-card > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding: 0.8rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
}

.contact-item-icon {
  width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1.4rem;
}

.contact-item-info {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.15rem;
}

.contact-value {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-value:hover { color: var(--gold); }

.rider-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  padding: 11px 20px;
  background: rgba(200,151,42,0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.25s;
  width: 100%;
  justify-content: center;
}

.rider-btn:hover {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}

/* Social Media in Kontakt */
.social-platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  flex: 1;
  align-content: stretch;
}

.social-platform-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 14px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.25s;
}

.social-platform-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,151,42,0.08);
}

.social-platform-btn .icon {
  color: var(--gold);
  font-size: 1.35rem;
  flex-shrink: 0;
}

.social-tagline {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.6;
  margin-top: auto;
  /* padding-top = card padding-bottom (2rem) → gleicher visueller Abstand oben/unten */
  padding-top: 2rem;
}

/* ===== FOOTER ===== */
footer {
  background: #050505;
  border-top: 1px solid var(--border-gold);
  padding: 60px 0 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo img {
  height: 90px;
  filter: drop-shadow(0 0 8px rgba(200,151,42,0.3));
  margin-bottom: 0.8rem;
}

.footer-tagline {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 0.3rem;
}

.footer-about {
  flex: 1;
}

.footer-about h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.footer-about p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0.8rem 0;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all 0.25s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,151,42,0.08);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-secondary);
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: var(--text-secondary);
}
.footer-bottom a:hover { color: var(--gold); }
.footer-nav { display: flex; gap: 1.5rem; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BACK TO TOP ===== */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  z-index: 999;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.3s;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--gold);
  color: #0a0a0a;
}

/* ===== SUBPAGES (Impressum / Datenschutz) ===== */
.subpage-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 60px) 24px 80px;
}

.subpage-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--gold);
  margin-bottom: 2rem;
}

.subpage-content h2 {
  font-size: 1.1rem;
  color: var(--gold);
  margin: 2rem 0 0.8rem;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.subpage-content p, .subpage-content li {
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
  line-height: 1.8;
}

.subpage-content ul,
.subpage-content ol {
  padding-left: 1.8rem;
  margin-bottom: 0.8rem;
}

.subpage-content a { color: var(--gold); }
.subpage-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.subpage-back:hover { color: var(--gold); }

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
  .members-grid { grid-template-columns: repeat(3, 1fr); }
  .press-items { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-genre-br { display: block; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-gold);
    animation: navMenuFadeIn 0.3s ease;
  }
  @keyframes navMenuFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  /* Navbar-Hintergrund erscheint sofort wenn Menü offen ist (kein Fade) */
  #navbar.menu-open {
    transition: none;
  }
  .nav-hamburger { display: flex; }

  section { padding: 70px 0; }
  .section-subtitle { margin-bottom: 2.5rem; }

  /* Bilder-Tausch: Hero bekommt Hochformat, About bekommt Breiformat */
  .hero-bg {
    background-image: url('../images/band-photo.jpg');
    background-position: top center;
  }
  /* display:none-Hack entfernt — Bildauswahl erfolgt jetzt über <picture>-Element im HTML */

  #about .about-inner { grid-template-columns: 1fr; }
  #about .about-image { order: -1; }
  #about .about-image img { aspect-ratio: 16/9; object-fit: cover; }

  .music-grid { grid-template-columns: 1fr; }
  .music-grid > div { min-height: auto; }
  .video-wrapper { flex: none; width: 100%; aspect-ratio: 16 / 9; }

  .press-items { grid-template-columns: 1fr; }

  .tours-table thead { display: none; }
  .tours-table tbody tr {
    display: block;
    padding: 16px;
    margin-bottom: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
  }
  .tours-table td { display: block; padding: 4px 0; border: none; }
  .tours-table td.date-col { font-size: 1rem; }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .gallery-grid picture { grid-column: span 1 !important; }

  .contact-grid { grid-template-columns: 1fr; align-items: start; }
  /* Karten auf Mobile nur so hoch wie nötig — kein Strecken */
  .contact-card { height: auto; }

  .lightbox-prev { left: -44px; }
  .lightbox-next { right: -44px; }
}

@media (max-width: 480px) {
  .members-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
  }
  .merch-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  /* social-platform-grid bleibt 2-spaltig auf Mobile */
  .lightbox-prev, .lightbox-next { display: none; }
}

/* ===== SUBPAGE: Logo immer sichtbar ===== */
#navbar.subpage .nav-logo img {
  opacity: 1;
}

/* ===== MERCH SLIDER ===== */
.merch-slider {
  position: relative;
  overflow: hidden;
}

/* All slides overlap — container height comes from aspect-ratio on .merch-img */
.merch-slide {
  position: absolute !important;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.merch-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.merch-slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 3;
}

.merch-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.merch-dot.active {
  background: var(--gold);
  border-color: var(--gold);
}

.merch-slider-label {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,0.65);
  color: var(--gold);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  z-index: 3;
  transition: opacity 0.3s;
}

/* Slider Pfeil-Buttons */
.merch-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  z-index: 4;
  padding: 0;
  opacity: 0;
  transition: opacity 0.25s, background 0.2s;
}

.merch-slider:hover .merch-arrow {
  opacity: 1;
}

.merch-arrow:hover {
  background: rgba(200, 151, 42, 0.35);
  border-color: var(--gold);
}

.merch-arrow-prev { left: 6px; }
.merch-arrow-next { right: 6px; }
