/* =============================================================
   INDEX.CSS — Homepage — THE GENIUS BOY
   ============================================================= */

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 8vw, 100px);
}

.hero-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.hero-content {
  display: inline-block;
  padding: clamp(32px, 5vw, 56px) clamp(28px, 5vw, 60px);
  max-width: 680px;
}

.hero-label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 9vw, 96px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 0.95;
  color: var(--color-white);
  margin-bottom: 20px;
}

.title-dot { color: var(--color-accent); }

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.8vw, 16px);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-white-60);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Releases ───────────────────────────────────────────────── */
.home-releases {
  background: rgba(0,0,0,0.55);
  padding-top: 0;
}

.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.release-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.release-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,212,255,0.12);
}

.release-thumb {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.release-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: var(--glass-bg-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  opacity: 0.3;
}

.release-info {
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.release-type {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.release-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.release-date {
  font-family: var(--font-prose);
  font-size: 12px;
  color: var(--color-white-40);
  margin-bottom: 8px;
}

/* ── Home Shows ─────────────────────────────────────────────── */
.home-shows { background: rgba(0,0,0,0.65); }

.shows-list { display: flex; flex-direction: column; gap: 12px; }

.show-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  flex-wrap: wrap;
}

.show-date {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  min-width: 110px;
}

.show-venue {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  flex: 1;
  min-width: 140px;
}

.show-city {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-white-60);
  min-width: 100px;
}

.shows-cta { margin-top: 32px; }

/* ── Home News ──────────────────────────────────────────────── */
.home-news { background: rgba(0,0,0,0.60); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.news-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition);
}

.news-card:hover { transform: translateY(-4px); }

.news-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-card-img-placeholder {
  width: 100%;
  height: 180px;
  background: var(--glass-bg-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  opacity: 0.25;
}

.news-card-body {
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.news-card-date {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  text-transform: uppercase;
}

.news-card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
}

.news-card-summary {
  font-family: var(--font-prose);
  font-size: 13px;
  color: var(--color-white-60);
  line-height: 1.6;
  flex: 1;
}

/* ── Button small variant ───────────────────────────────────── */
.btn-sm {
  font-size: 10px;
  padding: 9px 18px;
  letter-spacing: 0.18em;
}

@media (max-width: 600px) {
  .show-row { gap: 10px; }
  .show-venue { min-width: 100%; }
  .hero-actions .btn { flex: 1; justify-content: center; }
}
