*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
--bg:       #111;
--surface:  #1a1a1a;
--surface2: #222;
--border:   #2e2e2e;
--text:     #e8e8e8;
--muted:    #d2cbbb;
--accent:   #c8a96e;
--accent2:  #a07840;
--radius:   10px;
--track-h:  4px;
--thumb-sz: 14px;
--white: #d2cbbb;  
--black: #1c1c1c;  
--beige: #f0cb7c;  
--pink: #efa7d6;  
--green: #239536;  
--blue: #266194;  
--brown: #94561a;  
--red: #df4026;  
}

body {
background: var(--bg);
    color: var(--text);
font-family: "schoolbook", serif;
font-weight: 200;
font-style: normal;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
padding: 0rem 0rem 0rem;
}

a {	font-family: cooper;
font-weight: 300;
color: var(--accent);
text-decoration: none; display:inline; }

a:hover { opacity: 0.8; }

h1 {
font-size: 1.1rem;
font-weight: normal;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 2.5rem;
}

.headerimage {
width: 100vw;
height: auto;
background-image: url('rainbow.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

#colors {background-image: url('colors.png');}

.fullscreen {
  width: 100vw;
  min-height: 100vh;        /* was height: 100vh — let content grow */
  height: fit-content;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fullscreen--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#black { background-image: url('black.jpg'); }
#blue  { background-image: url('blue.jpg'); }

.card-content {
  display: flex;
  align-items: stretch;
  width: 100%;              /* was 50vw */
}

.song {
  flex: 1;
  padding: 50px 50px 50px 50px;
}

p.songtitle {
  text-align: left;
  font-size: 60pt;
  margin-bottom: 1rem;
}

p.lyrics {
  white-space: pre-line;
  text-align: left;
  font-size: 12pt;
  color: var(--text);
  column-width: 24ch;
  column-gap: clamp(1rem, 3vw, 2.5rem);
  column-rule: 0.5px solid currentColor;
  column-fill: balance;
}


.personel {font-size: 10pt; text-align: center; padding: 0 15vw 0 15vw;}
.songcredits {  background: color-mix(in srgb, var(--white) 50%, transparent); display: inline-block;   border-radius: 8px; padding: 8px;}

.forrest {color: var(--beige); white-space: nowrap;}
.brendan {color: var(--red); white-space: nowrap;}
.brian {color: var(--pink); white-space: nowrap;}
.eric {color: var(--green); white-space: nowrap;}
.stevie {color: var(--blue); white-space: nowrap;}
.joe {color: var(--brown); white-space: nowrap;}

@media (max-width: 599px) {
  .card-content {
    flex-direction: column;
  }

  .comments-column {
    position: static;   /* unstick it — no longer needs to float beside lyrics */
    height: auto;
    width: 100%;
  }

  .comments-drawer.open {
    height: auto;       /* let content dictate height instead of filling viewport */
    max-height: 60vh;   /* optional — keeps it from swallowing the whole screen */
  }

  p.lyrics {
    column-width: auto;
    column-count: 1;
  }

  p.songtitle { font-size: 30pt; }
}



a {font-family: "schoolbook-condensed", serif;
font-weight: 700;
font-style: normal;}
