/* =========================
   BASE RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background: #000;
  color: #fff;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

/* =========================
   LINKS
========================= */

a {
  color: #6aa8ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =========================
   HERO (HOMEPAGE)
========================= */

.hero {
  position: relative;
  height: 60vh;
  background-image: url("maggot_house.jpg");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero-overlay {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* =========================
   SIMPLE HEADER (NON-HOME)
========================= */

.simple-header {
  padding: 3rem 3rem 2rem;
}

.simple-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.simple-header .subtitle {
  margin-top: 0.5rem;
  opacity: 0.7;
}

/* =========================
   NAV
========================= */

.nav {
  padding: 1rem 3rem;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav a {
  color: #6aa8ff;
}

.nav a.active {
  color: #fff;
  text-decoration: underline;
}

/* =========================
   MAIN CONTENT WRAPPER
========================= */

.content {
  max-width: 900px;
  padding: 3rem;
}

.content.wide {
  max-width: 1100px;
}

/* =========================
   UNIVERSAL CONTENT SPACING
   (THIS IS THE IMPORTANT PART)
========================= */

/* global breathing room */
.content * {
  margin-bottom: 0.6em;
}

/* section headers */
.content h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.content h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #222;
  margin-top: 0.5rem;
}

/* paragraphs */
.content p {
  font-size: 0.95rem;
  color: #e5e5e5;
  max-width: 800px;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

/* album / subsection titles */
.content strong {
  display: block;
  margin-top: 2.2rem;
  margin-bottom: 0.6rem;
}

/* lists */
.content ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.content li {
  margin-bottom: 0.35rem;
}

/* quotes */
.quote {
  font-style: italic;
  margin: 1.2rem 0;
  padding-left: 12px;
  border-left: 3px solid #777;
}

/* horizontal rules (if used) */
.content hr {
  margin: 3rem 0;
  border: none;
  border-top: 1px solid #222;
}

/* =========================
   ARTISTS INDEX PAGE
========================= */

.artist-index {
  margin-top: 2rem;
}

.index-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 1.25rem;
}

.artist-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  padding: 0.75rem 0;
  border-bottom: 1px solid #1a1a1a;
}

.artist-row:hover {
  background: rgba(255,255,255,0.03);
}

.artist-name {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}

.artist-meta {
  font-size: 0.85rem;
  color: #aaa;
}

/* =========================
   FOOTER
========================= */

footer {
  padding: 2rem 3rem;
  border-top: 1px solid #222;
  font-size: 0.8rem;
  color: #777;
}

