/* ── ERGÄNZUNGEN FÜR DIE EVENTS SEITE ── */
/* Konsistent mit style.css: --accent (Cyan), --pink (Magenta), --radius, --border */
/* ── NAVIGATION ── */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15, 15, 18, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo-img {
  height: 40px;   /* Höhe passend zu deinem Header einstellen */
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a:first-child { color: #fff; }

/* Burger – hidden on desktop */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-family: 'Anybody', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 50px;
  white-space: nowrap;
  transition: opacity .2s, transform .15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }

.nav-cta { margin-left: 16px; }


/* Events Hero */
.events-hero {
  padding: calc(var(--nav-h) + 92px) 0 80px;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.4) 100%), url('Material/Cta_03.webp') center/cover no-repeat;
  border-bottom: 1px solid var(--border);
}

.events-hero h1 {
  font-family: 'Anybody', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.events-hero .hero-subtext {
  font-size: 15px;
  color: var(--text);
  max-width: 600px;
}

/* Events Liste (Rows) */
.events-list-section {
  padding: 72px 0 80px;
}

.events-list-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-row {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  transition: border-color .2s, transform .2s;
}

.event-row:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Date Box – im Ton der --accent-Farbe, wie event-date-badge auf der Startseite */
.event-date-box {
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 8px;
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.event-date-box .month {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 1px;
}

.event-date-box .day {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

/* Info Bereich */
.event-info { flex-grow: 1; }

.event-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.event-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 20px;
}

/* Aktionen (Buttons & Pills) */
.event-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.status-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 50px;
  border: 1px solid currentColor;
  white-space: nowrap;
}

/* Nur die beiden Markenfarben nutzen statt neuer Farbe */
.status-pill.available { color: var(--accent); }
.status-pill.sold-out   { color: var(--muted); }
.status-pill.low-stock  { color: var(--pink); }

/* Tickets Button – analog btn-primary Look, aber eckig wie im Screenshot */
.btn-ticket {
  background: var(--text);
  color: #000;
  font-family: 'Anybody', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 12px 24px;
  border-radius: 4px;
  text-transform: uppercase;
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
}

.btn-ticket:hover {
  opacity: .88;
  transform: translateY(-2px);
}

.btn-ticket.btn-disabled {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  cursor: not-allowed;
  transform: none;
}
.btn-ticket.btn-disabled:hover { opacity: 1; }

/* Gig Booking Banner */
.gig-booking { padding-bottom: 100px; }

.gig-booking-inner {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gig-booking-inner h2 {
  font-family: 'Anybody', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  color: #fff;
  letter-spacing: .5px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.gig-booking-inner p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 15px;
  position: relative;
  z-index: 2;
}

.gig-booking-inner .btn-primary {
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.music-note-bg {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 64px;
  line-height: 1;
  color: rgba(0, 240, 255, 0.08);
  pointer-events: none;
  z-index: 1;
}

/* Responsive Anpassungen für Events Page */

@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(15,15,18,.97);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: flex;
  }

  .nav-cta {
    display: none; /* optional: Button auch ins Menü packen statt daneben */
  }
}

@media (max-width: 850px) {
  .event-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }
  .event-meta { flex-direction: column; gap: 6px; }
  .event-actions {
    width: 100%;
    justify-content: space-between;
    margin-top: 10px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
  }
}

@media (max-width: 600px) {
  .event-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .btn-ticket, .status-pill { text-align: center; }
  .music-note-bg { display: none; }
}

.events-list-section {
  display:none!important;
}

.events {
  display:none!important;
}