/* ── PAGE HEADER ── */
.page-header {
  position: relative;
  z-index: 5;
  padding: 3.5rem 2.5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}
.page-header p { font-size: 0.85rem; color: var(--muted); }

/* ── FESTIVAL GRID & CARDS ── */
.festival-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2.5rem 5rem;
}

.festival-card {
  background: var(--surface);
  border: 1px solid rgba(200, 255, 0, 0.1);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  animation: fadeUp 0.5s ease both;
}
.festival-card:hover { border-color: rgba(200, 255, 0, 0.3); transform: translateY(-2px); }
.festival-card:nth-child(2) { animation-delay: 0.1s; }
.festival-card:nth-child(3) { animation-delay: 0.2s; }

.festival-card.coming-soon { border-color: rgba(154, 123, 191, 0.12); cursor: default; }
.festival-card.coming-soon:hover { border-color: rgba(154, 123, 191, 0.2); transform: none; }

.card-visual {
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.sziget-visual      { background: #0d0020; }
.coming-soon-visual { background: #0d0020; }

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-body.muted h2 { color: var(--muted); }

.card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.card-date {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--acid);
  border: 1px solid rgba(200, 255, 0, 0.3);
  padding: 0.2rem 0.6rem;
}

.card-location {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

.card-body h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.4rem;
  line-height: 1.1;
}
.card-body p {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}

.card-actions { display: flex; gap: 0.6rem; }

.btn-lineup {
  flex: 1;
  background: var(--acid);
  color: var(--deep);
  border: none;
  padding: 0.6rem 1rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s;
}
.btn-lineup:hover { opacity: 0.85; }

.btn-schedule {
  flex: 1;
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(154, 123, 191, 0.3);
  padding: 0.6rem 1rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, color 0.15s;
}
.btn-schedule:hover { border-color: var(--acid); color: var(--acid); }

.btn-disabled {
  flex: 1;
  background: transparent;
  color: rgba(154, 123, 191, 0.3);
  border: 1px solid rgba(154, 123, 191, 0.15);
  padding: 0.6rem 1rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: not-allowed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-badge {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(154, 123, 191, 0.3);
  padding: 0.35rem 0.85rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  nav, .page-header, .festival-grid { padding-left: 1.25rem; padding-right: 1.25rem; }
  .festival-grid { grid-template-columns: 1fr; }
}