/* ==========================================================================
   The Pepper People — newspaper-style theme
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Old+Standard+TT:ital@0;1&family=Special+Elite&display=swap');

:root {
  --paper: #f2ede1;
  --paper-dark: #e6ddc9;
  --ink: #1a1a1a;
  --ink-soft: #333;
  --red: #a3231f;
  --rule: #1a1a1a;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--paper-dark);
  color: var(--ink);
  font-family: 'Old Standard TT', 'Georgia', serif;
  line-height: 1.55;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--paper);
  padding: 0 2rem 3rem;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  box-shadow: 0 0 25px rgba(0,0,0,0.25);
}

a {
  color: var(--red);
}

/* -------------------- Masthead -------------------- */
.masthead {
  text-align: center;
  padding: 1.5rem 0 1rem;
  border-bottom: 6px double var(--rule);
}

.masthead .kicker {
  font-family: 'Special Elite', monospace;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.masthead h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 4.5rem;
  margin: 0.2rem 0 0.3rem;
  letter-spacing: 0.02em;
}

.masthead .tagline {
  font-style: italic;
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.masthead .meta-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-top: 2px solid var(--rule);
  border-bottom: 2px solid var(--rule);
  padding: 0.35rem 0;
  margin-top: 0.5rem;
}

/* -------------------- Navigation -------------------- */
nav.section-nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 0.7rem 0;
  border-bottom: 3px solid var(--rule);
  margin-bottom: 2rem;
  font-family: 'Special Elite', monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

nav.section-nav a {
  color: var(--ink);
  text-decoration: none;
}

nav.section-nav a:hover,
nav.section-nav a.active {
  color: var(--red);
  text-decoration: underline;
}

/* -------------------- Headlines -------------------- */
h2.headline {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  font-weight: 900;
  border-bottom: 3px solid var(--rule);
  padding-bottom: 0.3rem;
  margin-bottom: 0.2rem;
}

.byline {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}

.drop-cap:first-letter {
  font-family: 'Playfair Display', serif;
  float: left;
  font-size: 4.2rem;
  line-height: 0.8;
  font-weight: 900;
  padding: 0.05em 0.08em 0 0;
  color: var(--red);
}

/* -------------------- Columns -------------------- */
.columns {
  column-count: 2;
  column-gap: 2.5rem;
  column-rule: 1px solid #999;
  margin-bottom: 2rem;
}

.columns p {
  margin: 0 0 1rem;
  text-align: justify;
}

/* -------------------- Video placeholder -------------------- */
.video-placeholder {
  border: 3px solid var(--rule);
  background: repeating-linear-gradient(
    45deg,
    #d8d0bd,
    #d8d0bd 10px,
    #cfc6b0 10px,
    #cfc6b0 20px
  );
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  margin: 1.5rem 0 2.5rem;
  color: var(--ink);
}

.video-placeholder .play-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--red);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.video-placeholder figcaption {
  font-family: 'Special Elite', monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

/* -------------------- Band photo strip -------------------- */
.photo {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #000;
}

.bw {

  filter: grayscale(1) contrast(1.1);

}

figure.clipping {
  margin: 0 0 1rem;
}

figure.clipping figcaption {
  font-size: 0.75rem;
  font-style: italic;
  text-align: center;
  padding-top: 0.3rem;
  color: var(--ink-soft);
}

.hero-photo {
  margin: 1.5rem 0 2rem;
}

/* -------------------- Members grid (About page) -------------------- */
.members-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.member-card {
  border: 1px solid #999;
  padding: 1rem;
  background: var(--paper);
}

.member-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin: 0.8rem 0 0;
}

.member-card .role {
  font-family: 'Special Elite', monospace;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--red);
  margin: 0.2rem 0 0.6rem;
}

.member-card p {
  text-align: justify;
  font-size: 0.95rem;
}

/* -------------------- Contact page -------------------- */
.contact-block {
  border: 3px double var(--rule);
  padding: 2rem;
  max-width: 480px;
  margin: 1rem auto 2rem;
  text-align: center;
}

.contact-block dt {
  font-family: 'Special Elite', monospace;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-top: 1.2rem;
}

.contact-block dd {
  margin: 0.2rem 0 0;
  font-size: 1.25rem;
}

.contact-block dd a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--red);
}

.contact-block dd a:hover {
  color: var(--red);
}

/* -------------------- Footer -------------------- */
footer.masthead-footer {
  border-top: 6px double var(--rule);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-family: 'Special Elite', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}

/* -------------------- Responsive -------------------- */
@media (max-width: 700px) {
  .masthead h1 {
    font-size: 2.6rem;
  }

  .columns {
    column-count: 1;
  }

  .members-grid {
    grid-template-columns: 1fr;
  }

  .masthead .meta-line {
    flex-direction: column;
    gap: 0.2rem;
    text-align: center;
  }
}
