@font-face { font-family: 'JetBrains Mono';            src: url("https://willpowerstudios.com/type/JetBrainsMono/JetBrainsMono-ExtraLight.woff2") format("woff"); font-weight: normal; font-style: normal; }
@font-face { font-family: 'JetBrains Mono Bold';       src: url("https://willpowerstudios.com/type/JetBrainsMono/JetBrainsMono-Bold.woff2")       format("woff"); font-weight: bold;   font-style: normal; }
@font-face { font-family: 'JetBrains Mono Extra Bold'; src: url("https://willpowerstudios.com/type/JetBrainsMono/JetBrainsMono-ExtraBold.woff2")  format("woff"); font-weight: bold;   font-style: normal; }
@font-face { font-family: 'JetBrains Mono Extra Light';   src: url("https://willpowerstudios.com/type/JetBrainsMono/JetBrainsMono-Light.woff2")   format("woff"); font-weight: bold; font-style: normal; }
@font-face { font-family: 'JetBrains Mono Extra Regular'; src: url("https://willpowerstudios.com/type/JetBrainsMono/JetBrainsMono-Regular.woff2") format("woff"); font-weight: bold; font-style: normal; }
@font-face { font-family: 'JetBrains Mono Extra Medium';  src: url("https://willpowerstudios.com/type/JetBrainsMono/JetBrainsMono-Medium.woff2")  format("woff"); font-weight: bold; font-style: normal; }

* { font-feature-settings: "liga" on, "calt" on; -webkit-font-feature-settings: "liga" on, "calt" on; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

html {
  scroll-behavior: smooth;
  background-color: #edbd48;
}

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

body {
  font-family: "JetBrains Mono Bold", Helvetica, sans-serif;
  line-height: 1.625;
  font-size: 22px;
  letter-spacing: -1px;
  background: #000000;
  color: #ffffff;
  overflow-x: hidden;
}

/* fixed top navigation */
.site-nav {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  gap: 1.5rem;
  white-space: nowrap;
}

.site-nav a {
  color: #edbd48;
  text-decoration: none;
  font-size: 0.72em;
  letter-spacing: 0.04em;
  line-height: 1.5;
  padding: 0.18rem 0.4rem 0.04rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-nav a:hover {
  color: #ffffff;
}

@media (max-width: 600px) {
  .site-nav {
    top: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 0 4px;
    gap: calc(0.9rem - 3px);
    justify-content: center;
  }
  .site-nav a {
    font-size: 0.62em;
    padding: 0.1rem 0.25rem;
  }
}

.container {
  overflow-x: hidden;
  width: 100%;
}

.hero-spacer {
  height: 100vh;
}

/* fixed background image */
.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../jpg/elements/aint-got-a-man-curtist-williams-fitzgerald-rx-top-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
  pointer-events: none;
}

/* foreground image that moves on scroll */
.parallax-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 1000px;
}

.reveal-section {
  position: relative;
  z-index: 2;
  background-color: #cc0000;
  min-height: 120vh;
  padding: 5rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.kool-gang-text {
  color: #edbd48;
  font-size: 3em;
  text-align: center;
  line-height: 1.3;
}

/* single cover art section */
.single-cover-section {
  background-color: #000000;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.single-cover-img {
  width: 50%;
  max-width: 700px;
  height: auto;
  display: block;
  opacity: 0;
}

@media (max-width: 768px) {
  .single-cover-img {
    width: 88%;
  }
}

/* video section */
.video-section {
  background-color: #6cf3db;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.video-player {
  width: 100%;
  height: auto;
  display: block;
}

video {
  max-width: 100%;
  object-fit: contain;
  margin: 0;
  padding: 0;
}

.video-caption {
  color: #5c3317;
  font-size: 1.8em;
  text-align: center;
  padding: 3rem 2rem 0;
  line-height: 1.4;
}

/* section titles */
.section-title {
  color: #ffffff;
  font-size: 2.8em;
  letter-spacing: -1px;
  text-align: center;
  margin-bottom: 2.5rem;
}

/* photos gallery */
.photos-section {
  background-image: url('../jpg/elements/aint-got-a-man-curtist-williams-fitzgerald-rx-top-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 5rem 2rem;
}

.gallery {
  columns: 4;
  column-gap: 1px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1px;
  break-inside: avoid;
}

@media (max-width: 768px) {
  .gallery {
    columns: 3;
  }
}

@media (max-width: 480px) {
  .gallery {
    columns: 1;
  }
}

/* tour dates */
.tour-section {
  background-color: #000000;
  padding: 5rem 2rem;
}

.tour-list {
  max-width: 1000px;
  margin: 0 auto;
}

.tour-month {
  color: #edbd48;
  font-size: 1.4em;
  letter-spacing: 0.05em;
  padding: 2.5rem 0 0.75rem;
  border-bottom: 1px solid #edbd48;
  margin-bottom: 0.25rem;
}

.tour-month:first-child {
  padding-top: 0;
}

.tour-row {
  display: grid;
  grid-template-columns: 160px 1fr 220px;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: baseline;
}


.tour-date {
  color: #ffffff;
  font-size: 0.72em;
  white-space: nowrap;
}

.tour-venue {
  color: #6cf3db;
  font-size: 0.72em;
}

.tour-city {
  color: #999999;
  font-size: 0.68em;
  text-align: right;
}

.tour-venue a {
  color: #6cf3db;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tour-venue a:hover {
  color: #edbd48;
}

.tour-footnote {
  color: #555555;
  font-size: 0.6em;
  padding-top: 2rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tour-row {
    grid-template-columns: 1fr;
    gap: 0.15rem;
    padding: 0.75rem 0;
  }
  .tour-city {
    text-align: left;
  }
}

/* bio */
.bio-section-top {
  background-color: #cc0000;
  padding: 5rem 2rem;
}

.bio-title {
  color: #6cf3db;
}

.bio-section-bottom {
  background-color: #cc0000;
  padding: 3rem 2rem 9rem;
}

.bio-section-bottom::before {
  content: '';
  display: block;
  width: 40%;
  margin: 0 auto 3rem;
  border-top: 1px solid rgba(108, 243, 219, 0.8);
}

.bio-content {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bio-section-top .bio-content p {
  color: #ffffff;
  font-size: 0.88em;
  line-height: 1.75;
  letter-spacing: -0.5px;
}

.bio-content .bio-main {
  color: #edbd48;
  font-size: 1.2em;
  line-height: 1.75;
  letter-spacing: -0.5px;
}

/* connect */
.connect-section {
  background-color: #000000;
  padding: 5rem 2rem;
  text-align: center;
}

.connect-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75em;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}

.stream-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.stream-btn {
  display: inline-block;
  padding: 0.65rem 1.75rem;
  color: #6cf3db;
  font-size: 0.65em;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

.stream-btn:hover {
  color: #ffffff;
}

.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-line {
  font-size: 0.65em;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.05em;
}

.contact-line a {
  color: #edbd48;
  text-decoration: none;
}

.contact-line a:hover {
  color: #ffffff;
}

/* footer */
.site-footer {
  background-color: #edbd48;
  padding: 2rem;
  text-align: center;
}

.site-footer {
  font-size: 0.8em;
  letter-spacing: 0.1em;
  color: #ffffff;
}

.site-footer a {
  color: #cc0000;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: #6cf3db;
}

a:hover,
a:hover code {
  color: #cc0000;
}

a:active,
a:active code {
  color: #6cf3db;
  background: black;
}


img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 { font-weight: 300; }

h1 {
  font-family: "JetBrains Mono Extra Bold", Helvetica, sans-serif;
  font-size: 5.5em;
  font-weight: 100;
  line-height: 1.1em;
  letter-spacing: -2px;
}

h2 {
  font-family: "JetBrains Mono Extra Bold", Helvetica, sans-serif;
  font-size: 4.5em;
  font-weight: 100;
  line-height: 1.1em;
  letter-spacing: -2px;
}

h3 {
  font-family: "JetBrains Mono Extra Bold", Helvetica, sans-serif;
  font-size: 3.6em;
  font-weight: 100;
  line-height: 1.1em;
  letter-spacing: -2px;
}

h4 {
  font-family: "JetBrains Mono Bold", Helvetica, sans-serif;
  font-size: 2.8em;
  font-weight: 100;
  line-height: 1.1em;
  letter-spacing: -2px;
}

h5 {
  font-family: "JetBrains Mono Bold", Helvetica, sans-serif;
  font-size: 2.0em;
  font-weight: 100;
  line-height: 1.8;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
}

h6 {
  font-family: "JetBrains Mono Bold", Helvetica, sans-serif;
  font-size: 1.6em;
  font-weight: 100;
  line-height: 1.1em;
  letter-spacing: -2px;
}

a,
a code {
  color: #00ffce;
  text-decoration: none;
}
