/* =========================
   THV Emotive Music
   Master Song-Page CSS
   ========================= */

/* Base */
:root{
  --bg: #020916;
  --text: #f4f7fb;
  --muted: rgba(244,247,251,0.88);

  --bar-bg: rgba(2, 9, 22, 0.95);
  --bar-border: rgba(36, 80, 122, 0.75);

  --accent: #5ec9ff;      /* link + hover */
  --gold: #ffcf6a;        /* tagline */
  --btn-border: rgba(114,155,200,0.85);

  --card: rgba(255,255,255,0.06);
  --maxw: 760px;
}

*{ box-sizing: border-box; }

body{
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

/* Top bar */
.back-bar{
  background: var(--bar-bg);
  border-bottom: 1px solid var(--bar-border);
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.back-btn{
  display: inline-block;
  padding: 7px 16px;
  font-size: 13px;
  border-radius: 9px;
  border: 1px solid var(--btn-border);
  background: radial-gradient(circle at top, var(--card), transparent 60%);
  color: var(--text);
  text-decoration: none;
}

.back-btn:hover{
  border-color: var(--accent);
}

.feature-item {
  background: rgba(255,255,255,0.05);
  padding: 18px;
  margin-bottom: 20px;
  border-left: 4px solid #9fd3ff;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* Layout wrapper */
.chapter-wrapper{
  max-width: var(--maxw); 
  margin: 32px auto 60px;
  padding: 0 20px;
  font-size: 15px;
}

/* Headings */

.chapter-wrapper h1 {
  font-size: 26px;
  margin: 0 0 8px;  
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(160,200,255,0.45);
}

.chapter-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.chapter-wrapper h3 a {
  color: #ffffff;
  text-decoration: none;
}

.chapter-wrapper h3 a:visited {
  color: #ffffff;
}

.chapter-wrapper h3 a:hover {
  text-decoration: underline;
}

.chapter-wrapper h3 a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

/* Use H2 only for real sections */
h2{
  font-size: 18px;
  font-weight: 600;
  color: yellow;
  margin: 28px 0 10px;
}

.song-tagline{
  font-size: 18px;
  font-weight: 500;
  color: var(--gold); 
  margin: 0 0 18px;
}

.song-links{
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.song-links h3{
  margin-bottom: 12px;
}

.song-links ul{
  margin: 0;
  padding-left: 20px;
}

.song-links li{
  margin-bottom: 8px;
}
.song-links a{
  color: #ffd84d;
  text-decoration: none;
}

.song-links a:hover,
.song-links a:focus{
  color: #ffffff;
  text-decoration: underline;
}
/* ===== Editorial Song Page Template ===== */

.song-page{
  padding: 48px 20px 72px;
}

.song-hero{
  max-width: 760px;
  margin: 0 auto 42px;
}

.song-eyebrow{
  margin: 0 0 10px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffd84d;
}

.song-hero h1{
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  color: #ffffff;
}

.song-dek{
  margin: 0;
  max-width: 680px;
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
}

.song-article{
  max-width: 760px;
  margin: 0 auto;
}

.song-content{
  max-width: 720px;
}

.song-content h2{
  margin: 0 0 14px;
  font-size: 1.45rem;
  line-height: 1.3;
  color: #ffd84d;
}

.song-content p{
  margin: 0 0 22px;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.92);
}

.song-module{
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.song-module h3{
  margin: 0 0 12px;
  font-size: 1.15rem;
  color: #ffd84d;
}

.song-module ul{
  margin: 0;
  padding-left: 20px;
}

.song-module li{
  margin-bottom: 10px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
}

.song-module strong{
  color: #f2f2f2;
  font-weight: 600;
}

.song-module a{
  color: #8ed8ff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.song-module a:hover,
.song-module a:focus{
  color: #ffffff;
  text-decoration: underline;
}

.song-brand{
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.song-brand h3{
  margin: 0 0 10px;
  font-size: 1.25rem;
  color: #ffd84d;
}

.song-brand p{
  margin: 4px 0;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
}

@media (max-width: 640px){
  .song-page{
    padding: 32px 16px 56px;
  }

  .song-dek{
    font-size: 1.02rem;
  }

  .song-content p{
    font-size: 1rem;
    line-height: 1.75;
  }
}

/* Paragraphs + emphasis */
p{
  margin: 0 0 14px;
  color: var(--muted);
}

p strong, li strong{
  color: var(--text);
}

/* Lists */
ul, ol{
  margin: 10px 0 14px 20px;
  padding: 0;
  color: var(--muted);
}

li{ margin: 6px 0; }

/* Internal links block */
.internal-links{
  margin-top: 22px;
  font-size: 14px;
  opacity: 0.95;
}

.internal-links p{
  margin: 0;
  color: var(--muted);
}

.internal-links a{
  color: var(--accent);
  text-decoration: none;
}

.internal-links a:hover{
  text-decoration: underline;
}

/* Optional CTA button (GoFundMe / Listen / Donate / Buy) */
.cta{
  display: inline-block;
  margin: 10px 0 18px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--btn-border);
  background: rgba(94, 201, 255, 0.12);
  color: var(--text);
  text-decoration: none;
  font-weight: 650;
}

.cta:hover{
  border-color: var(--accent);
}

/* Optional horizontal rule */
hr{
  border: 0;
  border-top: 1px solid rgba(36, 80, 122, 0.6);
  margin: 18px 0;
}

/* Small screens */
@media (max-width: 520px){
  .back-bar{ padding: 12px 14px; }
  .chapter-wrapper{ padding: 0 14px; }
  h1{ font-size: 24px; }
  .song-tagline{ font-size: 17px; }
}
