/* THE BREATH — Clean Stylesheet */

/* COLOR VARIABLES */
:root {
  --bg: #120606;
  --bg-panel: #1c0808;
  --accent: #f4c74e;
  --accent-soft: rgba(244, 199, 78, 0.25);
  --accent-active: #ffd65a;
  --text: #fdf7ed;
  --text-soft: #e0d0c4;
  --border-soft: rgba(255, 255, 255, 0.16);
  --shadow-soft: 0 20px 45px rgba(0, 0, 0, 0.8);
  --radius-lg: 24px;
  --radius-md: 16px;
  --max-width: 1200px;
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* BODY BACKGROUND */
body {
  font-family: "Nunito", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top, #3b1510 0%, #050203 55%, #000 100%);
  color: var(--text);
  line-height: 1.6;
}

/* OUTER SHELL */
.page-shell-outer {
  padding: 1.6rem 1.3rem 2.2rem;
}

.page-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  background: radial-gradient(circle at top, #2b1010 0%, #070203 70%);
  border-radius: 32px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 2.2rem 2.5rem 2rem;
}

/* LAYOUT */
.top-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.4rem;
}

.left-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.right-col {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* HERO BLOCK */
/* MATCH THE POSTER - YELLOW TITLE */
/* RED MARQUEE TITLE - THE BREATH */
/* CLEAN RED TITLE - NO GLOW, JUST SHADOW */
.hero-block h1 {
  font-family: "Bebas Neue", "Arial Black", sans-serif;
  font-weight: 700;
  font-size: clamp(5rem, 8vw, 8rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 0.6rem; /* More breathing room */
  color: #E63946; /* Bold red */
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6); /* Clean shadow */
  line-height: 0.82;
}/* YELLOW TAGLINE TOO */
/* ORANGE TAGLINE - COMING HOME *//* TAGLINE — MATCH POSTER FONT & STYLE */
/* TAGLINE — MATCH POSTER EXACTLY */
.tagline {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 900; /* Bolder like poster */
  font-size: clamp(2.2rem, 3.5vw, 3.5rem); /* Bigger */
  letter-spacing: 0.02em; /* Tighter spacing like poster */
  color: #FFD60A; /* Poster yellow */
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.8), /* Deep shadow like poster */
    0 0 20px rgba(255, 214, 10, 0.3); /* Warm subtle glow */
  margin: 0.3rem 0 1.8rem;
  line-height: 1.1;
}
.hero-logline {
  max-width: 34rem;
  font-size: 0.98rem;
  color: #FFFFFF; /* Bright white like tagline */
  margin-top: 0.4rem;
  line-height: 1.65;
}.hero-credits {
  margin-top: 1.3rem;
  font-size: 0.85rem;
  color: #FFFFFF; /* Bright white */
  line-height: 1.5;
}

.hero-credits span {
  color: #FFFFFF; /* Bright white for names too */
}
/* POSTER */
.poster-frame img {
  display: block;
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.9);
}

/* MODE BUTTONS — ELEGANT GOLD OUTLINE */
.mode-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mode-btn {
  background: rgba(0, 0, 0, 0.45); /* Slightly lighter */
  color: rgba(244, 199, 78, 0.85); /* Much brighter text */
  border-radius: 999px;
  border: 1px solid rgba(244, 199, 78, 0.35); /* More visible outline */
  padding: 0.45rem 1.1rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.12s ease,
    border-color 0.2s ease;
}

.mode-btn:hover {
  background: rgba(244, 199, 78, 0.18);
  border-color: rgba(244, 199, 78, 0.7);
  color: var(--accent); /* Full bright on hover */
  transform: translateY(-1px);
}

.mode-btn.active {
  background: rgba(244, 199, 78, 0.22);
  color: var(--accent); /* Full bright when active */
  border-color: rgba(244, 199, 78, 0.7);
}/* PANEL */
.panel {
  background: rgba(0, 0, 0, 0.55);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 1.4rem 1.6rem 1.5rem;
}

.panel h3 {
  font-family: "Playfair Display", serif;
  margin-top: 0;
  font-size: 1.15rem;
}

.panel-note {
  font-size: 0.86rem;
  color: var(--text-soft);
}

/* MODE VIEWS */
.mode-view {
  display: none;
}

.mode-view-active {
  display: block;
}

/* SONG BUTTONS — MATCHING GOLD STYLE */
/* SONG BUTTONS — VERTICAL PLAYLIST */
.button-group {
  display: flex;
  flex-direction: column;   /* stack vertically */
  gap: 0.45rem;
  margin: 0.8rem 0 1rem;
}

.song-btn {
  width: 100%;
  text-align: left;
  background: rgba(0, 0, 0, 0.5); /* Lighter background */
  color: rgba(244, 199, 78, 0.85); /* Brighter text */
  border-radius: 999px;
  border: 1px solid rgba(244, 199, 78, 0.3); /* More visible */
  padding: 0.5rem 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.12s ease;
}

.song-btn:hover {
  background: rgba(244, 199, 78, 0.2);
  color: var(--accent); /* Full bright on hover */
  border-color: rgba(244, 199, 78, 0.6);
  transform: translateY(-1px);
}

.song-active {
  background: rgba(244, 199, 78, 0.28); /* Brighter active */
  color: var(--accent);
  border-color: rgba(244, 199, 78, 0.7);
}
/* AUDIO PLAYER */
.audio-player-shell {
  margin-top: 0.7rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: rgba(0, 0, 0, 0.55);
}

.audio-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.2rem;
}

.audio-title {
  font-size: 0.92rem;
  margin-bottom: 0.6rem;
  color: var(--accent);
}

audio {
  width: 100%;
}

/* PDF FRAME */
.pdf-frame {
  width: 100%;
  min-height: 420px;
  border: none;
  border-radius: 18px;
  background: #000;
}

/* BACK TO HOME */
.back-home {
  margin-top: 1.8rem;
  text-align: center;
}

.back-btn {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  border: none;
  background: #444;
  color: #fff;
  border-radius: 999px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.2s ease, transform 0.12s ease;
}

.back-btn:hover {
  background: #666;
  transform: translateY(-1px);
}

/* FOOTER */
.site-footer {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .top-row {
    grid-template-columns: 1fr;
  }

  .right-col {
    margin-top: 1.5rem;
  }
}

@media (max-width: 640px) {
  .page-shell-outer {
    padding-inline: 0.9rem;
  }

  .mode-buttons {
    gap: 0.4rem;
  }
}
/* ALL CREDITS TEXT IN YELLOW */
.hero-credits {
  color: var(--accent);
}

.hero-credits span {
  color: var(--accent);
}

.hero-credits.warning-line {
  color: var(--accent);
}
/* WARNING LINE - DIMMER YELLOW */
.warning-line {
  color: #FFFFFF; /* Bright white */
  font-size: 0.82rem;
  margin-top: 0.8rem;
}
/* ========================================
   DOWNLOAD FUNCTIONALITY
   ======================================== */

/* DOWNLOAD BUTTONS FOR DOCUMENTS */
.download-actions {
  margin: 1rem 0 1.5rem;
  text-align: center;
}

.download-btn {
  display: inline-block;
  background: rgba(244, 199, 78, 0.2);
  color: var(--accent);
  border: 1px solid rgba(244, 199, 78, 0.4);
  border-radius: 999px;
  padding: 0.7rem 1.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}

.download-btn:hover {
  background: rgba(244, 199, 78, 0.3);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 199, 78, 0.3);
}

/* DOWNLOAD ALL SONGS SECTION */
.download-all-section {
  margin: 1.2rem 0;
  padding: 1rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.download-all-btn {
  display: inline-block;
  background: rgba(244, 199, 78, 0.25);
  color: var(--accent);
  border: 2px solid rgba(244, 199, 78, 0.5);
  border-radius: 999px;
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.download-all-btn:hover:not(:disabled) {
  background: rgba(244, 199, 78, 0.35);
  border-color: var(--accent);
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(244, 199, 78, 0.4);
}

.download-all-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(244, 199, 78, 0.1);
  border-color: rgba(244, 199, 78, 0.2);
}

/* SONG ROW WITH DOWNLOAD */
.song-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.45rem;
}

.song-row .song-btn {
  flex: 1;
  margin-bottom: 0;
}

.song-download-link {
  font-size: 0.72rem;
  color: rgba(244, 199, 78, 0.75);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(244, 199, 78, 0.3);
  border-radius: 999px;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-weight: 600;
}

.song-download-link:hover {
  color: var(--accent);
  background: rgba(244, 199, 78, 0.15);
  border-color: rgba(244, 199, 78, 0.6);
  transform: translateY(-1px);
}

/* DISABLED SONG STATES */
.song-btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  color: rgba(244, 199, 78, 0.4) !important;
  background: rgba(0, 0, 0, 0.3) !important;
}

.coming-soon {
  font-size: 0.65rem;
  font-style: italic;
  opacity: 0.8;
  font-weight: normal;
  letter-spacing: 0.03em;
}

.song-download-disabled {
  font-size: 0.72rem;
  color: rgba(244, 199, 78, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.45rem 0.9rem;
  font-style: italic;
  opacity: 0.6;
}

/* ADJUST BUTTON GROUP FOR NEW LAYOUT */
.button-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0.8rem 0 1rem;
}