/* Lefty Lawrence static launch site */

:root {
  --bg: #0e141b;
  --panel: #161f29;
  --panel-2: #202d3a;
  --text: #f6f1e8;
  --muted: #c9c0b3;
  --accent: #e7a13d;
  --accent-2: #9fc5e8;
  --line: rgba(255,255,255,.15);
  --shadow: 0 24px 80px rgba(0,0,0,.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(231,161,61,.22), transparent 32rem),
    linear-gradient(135deg, #0e141b 0%, #101722 48%, #0a0f14 100%);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.55;
  min-height: 100vh;
}

a {
  color: var(--accent-2);
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(14,20,27,.84);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  letter-spacing: .08em;
  font-size: .78rem;
}

.brand-text {
  font-size: 1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(.75rem, 2vw, 1.5rem);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .95rem;
}

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

.nav a:hover {
  color: var(--text);
}

.top-banner {
  border-bottom: 1px solid var(--line);
  background: #0a0f14;
}

.top-banner img {
  display: block;
  width: 100%;
  max-height: 28rem;
  object-fit: cover;
  object-position: center;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .75fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 5vw, 6rem);
}

.eyebrow {
  margin: 0 0 .7rem;
  color: var(--accent);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: .98;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.8rem, 12vw, 8.8rem);
  letter-spacing: -.07em;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -.045em;
}

.bio-line {
  max-width: 55rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.tagline {
  max-width: 48rem;
  margin: 1.25rem 0 0;
  color: var(--text);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: .9rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--accent);
  color: #15100a;
  border-color: transparent;
}

.button.secondary {
  color: var(--text);
  background: rgba(255,255,255,.04);
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  border: 1px solid var(--line);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cover-art {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--panel-2);
}

.release-meta {
  padding: 1.35rem;
}

.release-kicker {
  margin: 0 0 .4rem;
  color: var(--accent);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.release-meta h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.release-meta p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}

.section {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 6rem);
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 56rem;
  margin-bottom: 2rem;
}

.music-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(280px, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.music-copy,
.video-placeholder,
.about-section,
.contact-section {
  background: rgba(255,255,255,.055);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
}

.music-copy,
.video-placeholder {
  padding: 1.5rem;
}

.music-copy p,
.about-section p,
.contact-section p {
  color: var(--muted);
  font-size: 1.12rem;
}

.link-list {
  display: grid;
  gap: .75rem;
  margin-top: 1.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.link-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .95rem 1rem;
  border: 1px solid var(--line);
  border-radius: .95rem;
  color: var(--text);
  background: rgba(0,0,0,.18);
  text-decoration: none;
}

.link-list a::after {
  content: "↗";
  color: var(--accent);
}

/* BYD video placeholder background */
.video-placeholder {
  min-height: 18rem;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(14,20,27,.72), rgba(14,20,27,.72)),
    url("assets/05 Bein' Your Dad (Bright).png") center/cover;
}

.video-embed {
  padding: 0;
  overflow: hidden;
  min-height: auto;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.about-section,
.contact-section {
  margin: clamp(1rem, 5vw, 6rem);
}

.about-section .section-heading,
.contact-section .section-heading,
.about-section p,
.contact-section p {
  margin-left: 0;
  margin-right: 0;
}

.contact-email a {
  color: var(--accent);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 800;
  word-break: break-word;
}

/* Ready Room Board */

.ready-room-section {
  text-align: left;
  background:
    radial-gradient(circle at 20% 0%, rgba(231,161,61,.14), transparent 28rem),
    linear-gradient(135deg, #0e141b 0%, #101722 48%, #0a0f14 100%);
}

.ready-room-heading {
  margin-bottom: 1rem;
}

.ready-room-board {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.ready-room-board img {
  display: block;
  width: 100%;
  height: auto;
}

.board-write {
  position: absolute;
  color: #111;
  font-family: "Segoe Print", "Bradley Hand", "Trebuchet MS", cursive;
  font-weight: 700;
  line-height: 1.0;
  text-align: center;
  text-decoration: none;
  font-size: clamp(14px, 1.0vw, 14px);
  z-index: 5;
}

.board-write:hover {
  text-decoration: underline;
}

.long-song {
  font-size: clamp(12px, 1.0vw, 12px);
  line-height: 0.92;
}

.top-date {
  left: 11.7%;
  top: 4.0%;
  width: 14%;
  text-align: left;
}

.top-lso {
  left: 4.8%;
  top: 13.6%;
  width: 14%;
  text-align: center;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.0;
}

.astro {
  font-size: clamp(13px, 1.15vw, 17px);
  text-align: left;
}

.sr {
  left: 85.9%;
  top: 4.0%;
  width: 5%;
}

.mr {
  left: 94.0%;
  top: 4.0%;
  width: 5%;
}

.ss {
  left: 85.9%;
  top: 10.0%;
  width: 5%;
}

.ms {
  left: 94.0%;
  top: 10.0%;
  width: 5%;
}

.illum {
  left: 88.9%;
  top: 15.6%;
  width: 5%;
}

.row-101 {
  top: 23.8%;
}

.row-102 {
  top: 28.9%;
}

.row-105 {
  top: 42.8%;
}

.row-106 {
  top: 47.8%;
}

.row-112 {
  top: 83.9%;
}

.times {
  left: 12.8%;
  width: 13%;
}

.song {
  left: 26.7%;
  width: 19.8%;
}

.pilot {
  left: 46.7%;
  width: 6.2%;
}

.rio {
  left: 54.8%;
  width: 5.6%;
}

.msn {
  left: 61.0%;
  width: 6.0%;
}

.gun-x,
.fleet-defense {
  font-size: clamp(10px, 0.85vw, 12px);
  line-height: 1.0;
}

.remarks {
  left: 67.5%;
  width: 11.0%;
}

.note {
  text-align: left;
  font-size: clamp(14px, 1.0vw, 14px);
  line-height: 1.05;
}

.co-note {
  left: 84.0%;
  top: 24.8%;
  width: 14.5%;
  color: #c00000;
}

.mo-note {
  left: 84.0%;
  top: 43.5%;
  width: 14.5%;
  color: #111;
  font-size: clamp(13px, 0.88vw, 13px);
  line-height: 1.02;
}

.opso-note {
  left: 84.0%;
  top: 76.8%;
  width: 14.5%;
  color: #0057b8;
}

.site-footer {
  padding: 2rem clamp(1rem, 5vw, 6rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .92rem;
}

.site-footer p {
  margin: .35rem 0;
}

@media (max-width: 840px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .top-banner img {
    max-height: 18rem;
  }

  .hero,
  .music-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 12ch;
  }

  .about-section,
  .contact-section {
    margin: 1rem;
  }
}

@media (max-width: 520px) {
  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .brand-text {
    font-size: .95rem;
  }

  .top-banner img {
    max-height: 12rem;
  }

  .button {
    width: 100%;
  }

  .board-write {
    font-size: clamp(7px, 1.3vw, 12px);
  }

  .long-song {
    font-size: clamp(6px, 1.1vw, 10px);
  }
}
/* Song landing pages */

.song-notes p {
  font-size: 1.45rem;
  line-height: 1.7;
}

.song-copy .eyebrow {
  font-size: 1rem;
  letter-spacing: .18em;
  margin-bottom: 1rem;
}

.album-page,
.album-songs-page {
  background:
    radial-gradient(circle at 20% 0%, rgba(231,161,61,.12), transparent 30rem),
    linear-gradient(135deg, #0e141b 0%, #101722 48%, #0a0f14 100%);
  min-height: 100vh;
  text-align: center;
}

.album-page-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.album-page-note {
  color: var(--muted);
}

/* Album cover */

.album-cover {
  display: inline-block;
  transition: transform .2s ease;
}

.album-cover img {
  width: 240px;       /* adjust to taste */
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.album-cover:hover {
  transform: translateY(-4px);
}

/* Song grid */

.song-tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 3rem 2.5rem;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.song-tile {
  display: block;
  transition: transform .2s ease;
}

.song-tile:hover {
  transform: translateY(-4px);
}

.song-tile img {
  width: 128px;       /* thumbnail size */
  height: 128px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.45);
}

/* Unreleased covers */

.song-tile.unreleased img {
  opacity: 0.72;
  filter: grayscale(100%);
}

/* Functional comments */

.song-comments {
  max-width: 900px;
  margin-inline: auto;
}

.comments-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.comment-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  text-align: left;
}

.comment-card__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.comment-card time,
.comments-privacy,
.comments-status,
.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

.comments-form {
  display: grid;
  gap: 1rem;
  max-width: 720px;
}

.comments-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
}

.comments-form input,
.comments-form textarea,
.comments-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  font: inherit;
}

.comments-form textarea {
  resize: vertical;
}

.comments-form button {
  justify-self: start;
}

.comments-form button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.website-field {
  position: absolute;
  left: -9999px;
}

.admin-comments h1 {
  max-width: none;
}

.admin-comment-card .button-row {
  margin-top: 1rem;
}


.song-tile span {
  display: block;
  margin-top: .65rem;
  max-width: 12rem;
  color: var(--muted);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .9rem;
  line-height: 1.25;
  text-align: center;
}

.song-tile.next-tranche img {
  opacity: 0.88;
  filter: sepia(40%);
  border: 1px solid rgba(231,161,61,.45);
}
