/* ===== STYLE 6 – Indie Bookstore System ===== */

:root {
  --bg: #f5f1e8;          /* warm cream */
  --text: #1f1f1f;        /* soft black */
  --accent: #c0392b;      /* Bloodsucker red (default) */
  --accent-soft: rgba(192, 57, 43, 0.12);
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
  font-size: 18px;
}

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-narrow {
  max-width: 640px;
}

.site-header {
  text-align: center;
  padding: 3rem 1rem 2rem 1rem;
}

.site-header img {
  width: 100%;
  height: auto;
}

.main-nav {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.10rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  transition: color 0.2s ease;
  border-bottom: none;
}

.main-nav a:hover {
  color: var(--accent);
  border-bottom: none;
}

h2 { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; 
color: var(--accent); 
font-size: 1.7rem; 
font-weight: 350; 
letter-spacing: 0.02em; 
margin-top: 3rem;
margin-bottom: 1rem;
}

h3 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 350;
  letter-spacing: 0;
  margin-top: 1.5rem;
  margin-bottom: 0.50rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

@media (max-width: 700px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}

.album img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.album h3 {
  margin: 0.75rem 0 0.25rem 0;
  font-weight: normal;
}

.album .year {
  font-size: 0.85rem;
  opacity: 0.6;
  margin: 0;
}

.site-footer {
  max-width: 760px;
  margin: 6rem auto 3rem auto;
  padding: 0 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
  display: flex;
  justify-content: space-between;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Body links */
  article a,
  p a,
  li a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.listen-player iframe {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  width: 100%;
  max-width: 640px;
  border: none;
}

.listen-entry {
  margin-top: 4.5rem;
}

.listen-entry h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: normal;
  color: var(--text);
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.listen-entry .meta {
  font-size: 0.85rem;
  color: rgba(31, 31, 31, 0.45);
}

.listen-entry:first-child {
  margin-top: 2rem;
}

.show-venue {
  margin: 0;
}

.show-bill {
  margin-top: 0.1rem;
  opacity: 0.7;
}

.show-date {
  font-weight: 600;
  margin-bottom: 0.25rem;
  letter-spacing: 0.02rem;
}

.show-history {
  list-style: none;
  padding-left: 0;
}

.show-history li {
  margin-bottom: 2rem;
}

.show-history li::before {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  opacity: 0.5;
  margin-bottom: 0.25rem;
}

.show-number {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 0.25rem;
}

.upcoming-show span {
  display: block;
}

.upcoming-show {
  margin-bottom: 2rem;
}
