/* ===================== base.css ===================== */
/* =========================================================
   base.css — shared across every page (single source of truth)
   Reset, body, header, navigation, and mobile menu.
   Page-specific styles live in style.css / style_portfolio.css / music.css.
   ========================================================= */

/* === Reset === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;   /* never scroll sideways on any screen */
}

body {
  font-family: Georgia, serif;
  background: #fffbe3;
  color: black;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hidden {
  display: none;
}

/* === Header === */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 20px;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(to right, black, rgba(0, 0, 0, 1) 75px, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 225px, black 225px);
  border-image-slice: 1;
  height: 60px;
  flex-shrink: 0;
}

.logo img {
  max-width: min(265px, 45vw);   /* shrink with the screen so the header never overflows */
  height: auto;
}

.logo a {
  display: inline-block;
}

/* === Navigation === */
.nav-links {
  display: flex;
  gap: 15px;
}

.nav-links a {
  text-decoration: underline;
  color: inherit;
  font-size: 1rem;
  white-space: nowrap;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover {
  background-color: #e5e5e5;
  border-color: black;
}

/* === Mobile Menu === */
.mobile-menu-toggle {
  display: none;
  padding: 8px 12px;
  background: #fffdf2;
  color: #000;
  border: 1px solid #000;
  border-radius: 6px;
  cursor: pointer;
  font-family: Georgia, serif;
  font-weight: bold;
}

.mobile-dropdown {
  display: none;
  position: absolute;
  top: 66px;
  right: 20px;
  background: #fffdf2;
  border: 1px solid #000;
  border-radius: 6px;
  padding: 4px 16px;
  z-index: 1000;
  font-family: Georgia, serif;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.14);
}

.mobile-dropdown.show {
  display: flex;
  flex-direction: column;
}

.mobile-dropdown a {
  padding: 9px 0;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #e0d8ba;
}

.mobile-dropdown a:last-child { border-bottom: none; }
.mobile-dropdown a:hover { text-decoration: underline; }

/* === Responsive: swap nav for mobile menu === */
@media screen and (max-width: 800px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }
}

/* === Shared footer (version label + cache-refresh help) === */
.site-footer {
  margin-top: auto; /* pins to the bottom (body is a flex column) */
  flex-shrink: 0;
  border-top: 3px double #000;
  padding: 12px 20px 22px;
  text-align: center;
  font-family: Georgia, serif;
  font-size: 0.85rem;
  color: #5a5647;
}

.site-footer__line {
  margin: 0;
}

.site-footer a {
  color: #0077cc;
  text-decoration: underline;
}

.site-footer ul {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  font-size: 0.82rem;
}

.site-footer li {
  margin: 3px 0;
}


/* ===================== style.css ===================== */
/* =========================================================
   style.css — article-view pages (index.html, movies.html)
   Requires base.css to be linked first.
   Newspaper-style treatment for the article column + sidebar index.
   ========================================================= */

/* === Layout === */
.container {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  max-width: 1200px;
  width: 100%;
  margin: 16px auto;
  padding: 0 20px;
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 0;
  /* a hairline separating the index from the main column */
  border-right: 1px solid #d8d0b0;
  padding-right: 20px;
}

/* === Sidebar: "In This Issue" index === */
.sidebar-head {
  font-family: 'Abril Fatface', Georgia, serif;
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  border-bottom: 3px double #000;
  padding-bottom: 4px;
  margin-bottom: 2px;
}

.article-block {
  cursor: pointer;
  padding: 6px 4px;
  border-bottom: 1px solid #e0d8ba;
  transition: background-color 0.2s;
}

.article-block:last-child { border-bottom: none; }

.article-block:hover {
  background-color: #e5e5e5;
}

/* Sidebar thumbnails are pre-dithered PNGs (black + cream), baked in JS. */
.article-block img {
  width: 100%;
  max-width: 160px;
  display: block;
  margin: auto;
  border-radius: 2px;
}

/* Hover: recolor the dithered thumbnail's cream tone to the gray hover shade */
.article-block:hover img {
  filter: url(#thumb-hover);
}

.caption {
  text-align: center;
  font-weight: bold;
  font-size: 0.92em;
  line-height: 1.25;
  text-decoration: none; /* index style, not a link underline */
  margin-top: 4px;
}

/* === Main Content === */
.main-column {
  min-height: 400px;
}

.text-article {
  max-width: 100%;
  padding-bottom: 20px;
  word-break: break-word;
  overflow: hidden;
}

/* --- Article masthead: kicker, headline, byline --- */
.article-head {
  border-bottom: 3px double #000;
  margin-bottom: 12px;
  padding-bottom: 8px;
}

.article-head .kicker {
  display: block;
  font-family: Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7a1f1f;
  margin-bottom: 4px;
}

.article-head h2 {
  font-family: 'Abril Fatface', Georgia, serif;
  font-weight: 400;
  font-size: 2.6rem;
  line-height: 1.02;
  letter-spacing: 0.01em;
  margin: 0 0 5px;
  border: none;
}

.article-head .byline {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

/* --- In-article section subheads (stay Georgia, smaller) --- */
.text-article h1,
.text-article h2,
.text-article h3 {
  font-family: Georgia, serif;
  font-weight: bold;
  margin: 14px 0 5px;
}

.text-article h2 {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #d8d0b0;
  padding-bottom: 3px;
}

.text-article h3 {
  font-size: 1.1rem;
  font-variant: small-caps;
  letter-spacing: 0.03em;
}

/* --- Body copy: justified, drop cap on the opening paragraph --- */
.text-article p {
  margin-bottom: 0.7em;
  line-height: 1.5;
  text-align: justify;
  hyphens: auto;
}

.text-article > p:first-of-type::first-letter {
  font-family: 'Abril Fatface', Georgia, serif;
  float: left;
  font-size: 2.9rem;
  line-height: 0.82;
  padding: 2px 8px 0 0;
  color: #000;
}

/* --- Pull quotes --- */
.text-article blockquote {
  border-left: 3px solid #000;
  margin: 12px 0;
  padding: 2px 0 2px 16px;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.35;
  color: #333;
  text-align: left;
}

/* === Floated lead image (now right, newspaper-style) === */
.float-image {
  float: right;
  max-width: 380px;
  margin: 4px 0 18px 26px;
  border-radius: 4px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.35);
}

.text-article::after {
  content: "";
  display: table;
  clear: both;
}

/* === Responsive === */
@media screen and (max-width: 800px) {
  .container {
    display: flex;
    flex-direction: column;
    padding: 0 10px;
  }

  .main-column { order: 1; width: 100%; }
  .left-column {
    order: 2;
    width: 100%;
    border-right: none;
    border-top: 3px double #000;
    padding-right: 0;
    padding-top: 12px;
    margin-top: 24px;
  }

  .article-head h2 { font-size: 2.1rem; }

  .article-block img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .float-image {
    float: none;
    display: block;
    margin: 0 auto 20px;
    width: 100%;
    max-width: 100%;
  }
}

/* ===================== style_portfolio.css ===================== */
/* =========================================================
   style_portfolio.css — portfolio page (portfolio.html)
   Requires base.css to be linked first.
   ========================================================= */

/* === Portfolio Layout === */
.page-content {
  text-align: center;
  padding: 10px 20px 20px;
}

/* Newspaper masthead, matching the rest of the site */
.gallery-head {
  max-width: 1000px;
  margin: 4px auto 26px;
}

.gallery-kicker {
  font-family: Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7a1f1f;
  margin-bottom: 6px;
}

.gallery-title {
  font-family: 'Abril Fatface', Georgia, serif;
  font-weight: 400;
  font-size: 2.6rem;
  line-height: 1.05;
  border-bottom: 3px double #000;
  padding-bottom: 10px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  max-width: 1000px;
  margin: auto;
}

/* Each piece set like a newspaper photo: flush image, thin ink keyline,
   small cutline caption underneath. No card, no drop shadow. */
.portfolio-item {
  transition: transform 0.15s ease;
}

.portfolio-item img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  display: block;
  border: 1px solid #000;
  border-radius: 8px;
  cursor: pointer;
}

/* === Deter casual copying/saving of artwork === */
.portfolio-item img,
.lightbox img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none; /* stops the iOS long-press save menu */
}

.portfolio-item .label {
  margin-top: 6px;
  text-align: left;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 0.82rem;
  color: #444;
  line-height: 1.3;
}

.portfolio-item:hover {
  transform: translateY(-1px);
}

/* === Lightbox === */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 4px;
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox img.loaded {
  opacity: 1;
  transform: scale(1);
}

/* spinner shown while the full-size image downloads */
.lightbox__spinner {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
  animation: lb-spin 0.8s linear infinite;
}

.lightbox.loading .lightbox__spinner {
  opacity: 1;
}

@keyframes lb-spin {
  to { transform: rotate(360deg); }
}

#closeBtn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 1;
}

/* === Footer === */
.disclaimer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #333;
  margin-top: 24px;
}

/* === Responsive === */
@media screen and (max-width: 800px) {
  .portfolio-item img {
    height: 240px;
  }
}

/* ===================== music.css ===================== */
/* =========================================================
   music.css — "Album of the Week" page (music.html)
   Requires base.css to be linked first.
   Flat, printed "newspaper" styling. Record + sleeve are pure CSS.
   ========================================================= */

.album-week {
  flex: 1;
  width: 100%;
  max-width: 1180px;
  margin: 24px auto 0;
  padding: 0 20px 40px;
}

.album-week__kicker {
  text-align: center;
  font-family: Georgia, serif;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7a1f1f;
  border-bottom: 3px double #000;
  padding-bottom: 8px;
  margin-bottom: 26px;
}

/* ===== Three-column feature spread ===== */
.album-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 210px;
  gap: 26px;
  align-items: stretch; /* side columns match the center so the rules run full height */
}

.album-col-head {
  font-family: 'Abril Fatface', Georgia, serif;
  font-weight: 400;
  font-size: 1.2rem;
  border-bottom: 3px double #000;
  padding-bottom: 5px;
  margin-bottom: 8px;
}

.album-side-col {
  min-width: 0;
  border-inline: 1px solid #e6ddbf;
  padding-inline: 14px;
}

/* --- Archive of past picks (left) --- */
.archive-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 9px 2px;
  border-bottom: 1px solid #e0d8ba;
  cursor: pointer;
}

.archive-item:last-child { border-bottom: none; }
.archive-item:hover { background: #e5e5e5; }

.archive-cover {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  object-fit: cover;
  border: 1px solid #cbbf98;
  background:
    radial-gradient(circle, rgba(0, 0, 0, 0.16) 1px, transparent 1.4px) 0 0 / 4px 4px,
    #e9dfbf;
}

.archive-meta {
  min-width: 0;
  font-family: Georgia, serif;
  font-size: 0.8rem;
  line-height: 1.25;
  text-align: left;
}

.archive-meta .t { font-weight: bold; }
.archive-meta .a { font-style: italic; color: #666; }
.archive-meta .d {
  color: #7a1f1f;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- Now Spinning (right) --- */
.spin-item {
  padding: 9px 2px;
  border-bottom: 1px solid #e0d8ba;
  font-family: Georgia, serif;
  font-size: 0.85rem;
  line-height: 1.3;
  text-align: left;
}

.spin-item:last-child { border-bottom: none; }
.spin-item .s { font-weight: bold; }
.spin-item .a { font-style: italic; color: #666; }

/* hidden until the songs are ready, then fade in (like the lyrics) */
#nowSpinning {
  opacity: 0;
  transition: opacity 0.4s ease;
}

#nowSpinning.ready { opacity: 1; }

@media screen and (max-width: 860px) {
  .album-layout { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  /* stack order: album of the week, then Now Spinning, then Archive */
  .album-main { order: 1; }
  .album-nowspinning { order: 2; }
  .album-archive { order: 3; }
  .album-side-col {
    border-inline: none;
    padding-inline: 0;
    border-top: 3px double #000;
    padding-top: 12px;
  }
}

/* ===== Framed like a newspaper press photo ===== */
.album-figure {
  max-width: 580px;
  margin: 0 auto 30px;
  padding: 26px 20px 12px;
  background: #fffdf2;
  border: 1px solid #000;
  text-align: center;
}

.album-figure figcaption {
  margin-top: 16px;
  padding-top: 8px;
  border-top: 1px solid #d8d0b0;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 0.82rem;
  color: #5a5647;
}

/* ===== Vinyl-in-sleeve display ===== */
/* The record is a fixed 520x300 composition; the stage scales it to fit
   the screen width (JS sets the scale + the stage's height). */
.album-stage {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin: 0 auto 30px;
}

.album-display {
  position: relative;
  width: 520px;
  height: 300px;
  margin: 0;
  flex-shrink: 0;
  transform-origin: top center;
}

/* --- The record: flat black disc with fine printed grooves --- */
.vinyl {
  position: absolute;
  top: 0;
  left: 220px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 50% 50%,
      #050505 0 2px, #1d1d1d 2px 3px),
    #111;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.28);
}

/* Physical glossy shine sweeping across the record (over grooves, under label) */
.vinyl::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  /* two cone-shaped highlights from the center (offset); the lower one subtler */
  background: conic-gradient(from 0deg at 50% 50%,
    rgba(255, 255, 255, 0) 4deg,
    rgba(255, 255, 255, 0.06) 26deg,
    rgba(255, 255, 255, 0.32) 50deg,
    rgba(255, 255, 255, 0.06) 74deg,
    rgba(255, 255, 255, 0) 96deg,
    rgba(255, 255, 255, 0) 192deg,
    rgba(255, 255, 255, 0.03) 212deg,
    rgba(255, 255, 255, 0.12) 230deg,
    rgba(255, 255, 255, 0.03) 248deg,
    rgba(255, 255, 255, 0) 268deg,
    rgba(255, 255, 255, 0) 360deg);
}

.vinyl__label {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34%;
  height: 34%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 3;                               /* above the shine */
  background: #b1a45f;                       /* muted antique gold (cardboard label) */
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.vinyl__label span {
  font-family: Georgia, serif;
  font-size: 0.62rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3a3212;                           /* dark bronze, reads on the muted gold */
}

.vinyl__hole {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3.2%;
  height: 3.2%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 4;                               /* above the label */
  background: #fffdf2;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}

/* --- The sleeve: flat aged paper with a thin ink border --- */
.sleeve {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  z-index: 6;                               /* always covers the record's left side */
  padding: 9px;
  border: 1px solid #000;
  background:
    radial-gradient(120px 80px at 28% 22%, rgba(120, 90, 40, 0.10), transparent 60%),
    radial-gradient(100px 70px at 76% 78%, rgba(120, 90, 40, 0.10), transparent 60%),
    linear-gradient(135deg, #f5efd8, #ece3c6);
  box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.18);
}

/* .cover is the album art. Style works for a placeholder <div> OR an <img>. */
.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #6a5f3d;
  border: 1px solid #cbbf98;
  background:
    radial-gradient(circle, rgba(0, 0, 0, 0.16) 1.2px, transparent 1.6px) 0 0 / 6px 6px,
    #e9dfbf;                               /* faint halftone dots on tan */
}

.cover__title {
  font-family: 'Abril Fatface', Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
}

.cover__note {
  margin-top: 8px;
  font-family: Georgia, serif;
  font-size: 0.66rem;
  font-style: italic;
  padding: 0 14px;
}

/* ===== Album review article ===== */
.album-article {
  max-width: 640px;
  margin: 0 auto;
}

/* Album feature — animated swap + close bar */
.album-main {
  position: relative;
  min-width: 0;                  /* allow it to shrink below the record's fixed width */
  transform-origin: left center; /* the swap "minimizes" toward the archive */
}

.close-bar {
  position: absolute;
  top: 24px;                 /* up near the record */
  right: -13px;              /* sits in the gap toward Now Spinning */
  width: 13px;
  height: 190px;             /* ~2 inches */
  padding-top: 8px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #ece3c6;
  border: none;              /* strip the default <button> border */
  border-radius: 4px;
  color: #000;
  font-size: 10px;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.close-bar::before { content: "\25C0"; }   /* ◀ back to current */
.close-bar:hover { background: #e5e5e5; }
.close-bar[hidden] { display: none; }

/* the archived album currently open: lighter + outlined */
.archive-item.active {
  background: #f4efd6;
  outline: 1px solid #000;
  outline-offset: -1px;
  border-radius: 3px;
}

.archive-item.active .archive-cover { opacity: 0.55; }

@media screen and (max-width: 860px) {
  .close-bar { right: 0; }
}

.album-back {
  display: inline-block;
  margin-bottom: 8px;
  font-family: Georgia, serif;
  font-size: 0.82rem;
  color: #7a1f1f;
  text-decoration: none;
}

.album-back:hover { text-decoration: underline; }

.album-title {
  font-family: 'Abril Fatface', Georgia, serif;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1.05;
  text-align: center;
  margin-bottom: 6px;
}

.album-meta {
  text-align: center;
  font-family: Georgia, serif;
  font-style: italic;
  color: #555;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #d8d0b0;
}

.album-meta .stars {
  font-style: normal;
}

/* Fractional star rating: a filled layer clipped over an empty layer */
.stars-wrap {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  vertical-align: middle;
}

.stars-empty { color: #cdbf94; letter-spacing: 2px; }

.stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #c96a15;
  letter-spacing: 2px;
}

.stars-num {
  margin-left: 5px;
  font-style: normal;
  font-size: 0.85rem;
  color: #666;
}

#albumReview p {
  line-height: 1.62;
  margin-bottom: 1em;
  text-align: justify;
  hyphens: auto;
}

#albumReview > p:first-of-type::first-letter {
  font-family: 'Abril Fatface', Georgia, serif;
  float: left;
  font-size: 2.9rem;
  line-height: 0.82;
  padding: 2px 8px 0 0;
}

/* ===== Tracklist ===== */
.tracklist-head {
  max-width: 640px;
  margin: 22px auto 8px;
  font-family: Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7a1f1f;
  border-bottom: 1px solid #000;
  padding-bottom: 4px;
}

.tracklist {
  list-style: none;
  counter-reset: tk;
  max-width: 640px;
  margin: 0 auto 22px;
}

.tracklist li {
  counter-increment: tk;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 6px 2px;
  border-bottom: 1px solid #e0d8ba;
  font-family: Georgia, serif;
  font-size: 0.95rem;
}

.tracklist li:last-child { border-bottom: none; }

.tracklist li::before {
  content: counter(tk);
  flex-shrink: 0;
  width: 1.5em;
  text-align: right;
  color: #9a8f6a;
  font-size: 0.82rem;
}

.tk-title { flex: 1; }

.tk-len {
  color: #666;
  font-size: 0.88rem;
  font-variant-numeric: tabular-nums;
}

/* ===== Listen buttons ===== */
.listen {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 640px;
  margin: 8px auto 0;
}

.listen-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #000;
  text-decoration: none;
  font-family: Georgia, serif;
  font-size: 0.9rem;
}

.listen-link span { text-decoration: underline; }
.listen-link:hover span { color: #444; }

.listen-sep {
  margin: 0 12px;
  color: #999;
}

.listen-ic {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ===== Responsive ===== */
@media screen and (max-width: 560px) {
  .album-title { font-size: 2rem; }
}

/* ===================== lyrics.css ===================== */
/* =========================================================
   lyrics.css — the "More" page (title, welcome, lyrics)
   Requires base.css to be linked first.
   ========================================================= */

/* === Page title + welcome === */
.more-head {
  max-width: 1100px;
  margin: 8px auto 20px;
  padding: 0 20px;
  text-align: center;
}

.more-title {
  font-family: 'Abril Fatface', Georgia, serif;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1.05;
  border-bottom: 3px double #000;
  padding-bottom: 10px;
}

.welcome {
  width: calc(100% - 40px);  /* same 20px gutters as the title/lyrics rules */
  max-width: 1060px;         /* matches the horizontal rule width */
  margin: 0 auto 36px;
  padding: 16px 24px;
  border: 1px solid #000;    /* fine line box */
  text-align: center;
}

.welcome p {
  font-family: Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.65;
  margin: 0;
}

.lyrics-section {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 30px;
}

.lyrics-heading {
  font-family: 'Abril Fatface', Georgia, serif;
  font-weight: 400;
  font-size: 2rem;
  text-align: center;
  border-bottom: 3px double #000;
  padding-bottom: 8px;
  margin: 10px 0 24px;
}

.lyrics-columns {
  display: flex;
  gap: 30px;
  text-align: center;
  align-items: flex-start;
  transition: opacity 0.35s ease;
}

.lyric1 {
  font-family: 'Nothing You Could Do', cursive;
}

.lyric1 p {
  font-weight: bold;
}

.lyric2 {
  font-family: "La Belle Aurore", cursive;
}

.lyric2 p {
  font-weight: bold;
}

.lyric3 {
  font-family: 'Shadows Into Light', cursive;
  font-size: 1.05rem;
  line-height: 1.5;
}

/* Keep the lyrics hidden until the handwriting fonts are ready, then fade
   them in (added by JS; if JS is off the text just shows normally). */
.fonts-cloak .lyrics-columns {
  opacity: 0;
}

.fonts-cloak.fonts-ready .lyrics-columns {
  opacity: 1;
}

@media screen and (max-width: 800px) {
  .lyrics-columns {
    flex-direction: column;
    align-items: center;
  }
}

