:root {
  --side-padding: 480px;
  --right-padding: 40px;
  --link-color: #0011ff;
  --hover-color: #cdd0ff;
  --text-color: #130f3a;
  --bg-color: #85a7ba;
  --shopify-btn-color: #b84e61;
  --shopify-btn-hover: #222246;
  --shopify-cart-bg: #e6f6ff;
}

/* ===== BASE SETUP ===== */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  cursor: url('visuals/images/CD-2.png'), auto;
}

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

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 40px;
  color: var(--text-color);
  background: url('visuals/images/Wilmington-2.jpg') no-repeat center center fixed;
  background-size: cover;
  background-color: var(--bg-color);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== GENERAL LINKS & NAVIGATION ===== */
a, a:visited {
  color: var(--link-color);
  text-decoration: none;
  cursor: url('visuals/images/CD-2.png'), pointer;
  transition: color 0.16s;
}
a:hover {
  color: var(--hover-color);
}

nav {
  width: 100%;
  background: rgba(0,0,0,0.6);
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
}
nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
nav a {
  font-weight: bold;
  font-size: 1.8rem;
}

@media (max-width: 700px) {
  nav ul { flex-direction: column; gap: 1.2rem; }
  nav { padding: 1rem 0; }
}

/* ===== SIDE IMAGES ===== */
.side-img {
  position: fixed;
  top: 0;
  height: 100vh;
  width: auto;
  object-fit: cover;
  z-index: 30;
  pointer-events: none;
  transition: left 1s cubic-bezier(.83,0,.17,1), right 1s cubic-bezier(.83,0,.17,1);
}
.side-img.left { left: 0; }
.side-img.right { right: 0; }

@media (max-width: 1100px) {
  .side-img { display: none; }
}

/* ===== MAIN CONTENT CONTAINER ===== */
.content-container {
  margin-left: var(--side-padding);
  margin-right: var(--side-padding);
  width: auto;
  padding-right: var(--right-padding);
}
@media (max-width: 1100px) {
  .content-container { margin-left: 0; margin-right: 0; width: 100%; padding: 0 1.5rem; }
}

/* ===== HEADER & LOGO ===== */
header {
  text-align: center;
  padding: 3rem 1rem 2rem;
  z-index: 1;
  position: relative;
}
.wilmo-logo {
  max-width: 590px;
  width: 100%;
}
.subtitle {
  font-size: 1.9rem;
  font-weight: bold;
  margin-top: 1.5rem;
}

/* ===== SECTION TITLES ===== */
section { padding: 1rem 0; }
h1, h2, h4 {
  font-size: 6rem;
  margin-bottom: 1rem;
  letter-spacing: -4.4px;
  font-weight: 600;
  text-transform: none;
}
@media (max-width: 700px) {
  h1, h2, h4 { font-size: 3rem; }
}

/* ===== BANDCAMP EMBED ===== */
.bandcamp-embed {
  width: 390px;
  margin: 2.5rem 0 2rem 0;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 18px #b84e6111;
  transition: transform 0.17s cubic-bezier(.4,.65,.5,1.16), box-shadow 0.18s;
}
.bandcamp-embed:hover { transform: scale(1.07); z-index: 20; }

/* ===== TRACK LISTS ===== */
.track-list { list-style: none; padding: 0; margin: 0; }
.track-list li {
  display: flex; align-items: center; gap: 3rem; margin-bottom: 2.5rem;
}
.track-list a {
  font-size: 2.1rem; font-weight: bold; letter-spacing: -0.07em;
  text-transform: lowercase; white-space: nowrap;
}
.track-list span {
  font-size: 1.5rem; color: rgb(0,7,98); opacity: 0.85; white-space: nowrap;
}
.track-list span::before {
  content: "•"; margin: 0 1.5rem; color: #130f3a;
}
.track-list img {
  width: 180px; height: 180px; object-fit: cover;
  box-shadow: 0 2px 12px #0012;
  transition: transform 0.3s, box-shadow 0.3s;
}
.track-list img:hover { transform: scale(1.05); }

/* ===== BIO SECTION ===== */
.bio-container {
  background: #ffffff;
  padding: 2.5rem 2.7rem;
  max-width: 900px;
  margin: 3rem 0 3.5rem 0;
  color: #1a1641;
  box-shadow: 0 4px 32px #0001;
  position: relative;
  z-index: 2;
}
@media (max-width: 700px) {
  .bio-container { padding: 1.3rem 1rem; }
}

/* ===== PRESAVE CARD / LISTEN SECTION ===== */
#listen { text-align: left; }
.presave-container {
  background: #fff;
  padding: 2.1rem 2.25rem 2rem 2.25rem;
  max-width: 352px;
  width: 100%;
  margin: 2rem 0 3.5rem 0;
  box-shadow: 0 2px 14px #0011;
}
.presave-cover {
  width: 170px; height: 170px; object-fit: cover; margin-bottom: 1.2rem;
  border: 3px solid #e6d1e9;
}
.presave-title {
  font-size: 2.1rem; letter-spacing: 0.03em; margin-bottom: 0.5rem;
  font-weight: 700; color: #000;
}
.presave-artist {
  font-size: 1.2rem; color: #4d406b; margin-bottom: 1.8rem; font-weight: 500;
}
.presave-services {
  display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.7rem;
}
.presave-btn {
  display: flex; align-items: center; gap: 0.7rem;
  background: #2d5884; color: #fff; border: none; padding: 1rem 0.2rem;
  font-size: 1.25rem; font-weight: 700;
  cursor: url('visuals/images/CD-2.png'), pointer;
  transition: background 0.18s, transform 0.13s;
}
.presave-btn:hover {
  background: #262a51; transform: scale(1.04); color: #fff;
}
.service-icon {
  width: 1.6em; height: 1.6em; object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.07));
}

/* ===== VISUALS: MASONRY GRID ===== */
.masonry-grid {
  column-count: 3;
  column-gap: 36px;
  margin: 2rem 0;
}
.masonry-grid img {
  width: 100%; margin-bottom: 32px; display: block; cursor: url('visuals/images/CD-2.png'), zoom-in;
  transition: transform 0.3s cubic-bezier(.24,.81,.51,1.28), box-shadow 0.3s;
  z-index: 2; min-height: 310px; object-fit: cover; background: #eee;
}
.masonry-grid img.enlarged {
  transform: scale(1.25); z-index: 2; box-shadow: 0 16px 48px #0006;
  cursor: zoom-out;
}
.masonry-grid img:hover {
  transform: scale(1.10);
  z-index: 3;
  box-shadow: 0 8px 32px rgba(20,20,80,0.18);
}
@media (max-width: 1100px) { .masonry-grid { column-count: 2; } }
@media (max-width: 700px) { .masonry-grid { column-count: 1; } }

/* ===== SHOPIFY STORE STYLING ===== */
.shopify-products-row {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.shopify-products-row > div {
  flex: 1 1 350px;
  max-width: 390px;
  min-width: 290px;
  box-sizing: border-box;
}

.shopify-buy__product__image img {
  width: 100% !important;
  max-width: 340px !important;
  object-fit: cover !important;
  border-radius: 18px;
  background: #f3f3f3;
  box-shadow: 0 2px 12px rgba(48,0,38,0.07);
}
.shopify-buy__product__price {
  font-size: 2.5rem;
  color: #8d56b7 !important;
  text-align: center;
  font-weight: 900 !important;
  margin-bottom: 22px !important;
  letter-spacing: 0.02em;
}

/* ===== SIGNUP ===== */
.signup-form input {
  padding: 15px;
  width: 400px;
  font-size: 1.1rem;
  margin: 1rem 0;
  border-radius: 8px;
  border: 1px solid #dedcec;
}
.signup-form button {
  padding: 12px 24px;
  font-size: 1.1rem;
  background: #ffcc00;
  border: none;
  font-weight: bold;
  border-radius: 8px;
  cursor: url('visuals/images/CD-2.png'), pointer;
  transition: background 0.18s, transform 0.13s;
}
.signup-form button:hover {
  background: #ffd943;
  transform: scale(1.04);
}

/* ===== FOOTER LOGO BUTTON ===== */
.footer-logo-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: url('visuals/images/CD-2.png'), pointer;
  display: block;
  margin: 0 auto;
  transition: transform 0.14s;
  outline: none;
}
.footer-logo-btn img {
  max-width: 560px;
  width: 100%;
  transition: transform 0.15s;
}
.footer-logo-btn:hover img,
.footer-logo-btn:focus img {
  transform: scale(1.07);
}

/* ===== UNRELEASED/DEMOS SECTION ===== */
.unreleased-section {
  max-width: 1500px;
  margin: 3rem auto 4rem auto;
  padding: 2.7rem 2.3rem;
  background: #fff;
  color: #1a1641;
  border-radius: 18px;
  box-shadow: 0 4px 48px #0002;
  font-size: 2.2rem;
  display: none;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(.6,0,.3,1);
  text-align: center;
  z-index: 99;
}
.unreleased-section.visible {
  display: block;
  opacity: 1;
}

/* Demos grid */
.demos-grid {
  display: flex;
  gap: 3.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* Demo card */
.demo-card {
  background: #fcfcff;
  border-radius: 13px;
  box-shadow: 0 2px 18px #aab8fc17;
  display: flex;
  align-items: flex-start;
  padding: 2.2rem 1.7rem;
  gap: 2.1rem;
  min-width: 340px;
  max-width: 410px;
  width: 100%;
  flex: 1 1 340px;
  position: relative;
  cursor: url('visuals/images/CD-2.png'), pointer;
}

/* Demo .wav cover */
.demo-cover {
  width: 92px;
  height: 92px;
  border-radius: 7px;
  background: #e2e7ef;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 12px #0012;
}

.demo-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 auto;
  min-width: 0;
}
.demo-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #1a1641;
  letter-spacing: -0.02em;
}
.demo-info audio {
  width: 190px;
  margin-bottom: 1rem;
  accent-color: #b84e61;
}

/* --- Lyrics Reveal System --- */
.demo-lyrics-teaser {
  display: inline-block;
  position: relative;
  font-size: 1.13rem;
  color: #222;
  background: #f5f6fa;
  padding: 0.75em 1.2em;
  cursor: url('visuals/images/CD-2.png'), pointer;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  max-width: 370px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: box-shadow 0.18s;
  box-shadow: 0 2px 10px #0011;
  z-index: 1;
  outline: none;
}
.demo-lyrics-teaser:focus,
.demo-lyrics-teaser:hover {
  box-shadow: 0 6px 32px #b84e6114;
}
.demo-lyrics-preview {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  margin-top: 8px;
  background: rgba(250, 250, 255, 0.96);
  color: #444;
  font-size: 1.08rem;
  padding: 1em 1.1em;
  box-shadow: 0 4px 18px #0018;
  z-index: 4;
  opacity: 0.85;
  pointer-events: none;
  white-space: pre-line;
  transition: opacity 0.2s;
}
.demo-lyrics-teaser:hover .demo-lyrics-preview,
.demo-lyrics-teaser:focus .demo-lyrics-preview {
  display: block;
}
.demo-lyrics-full {
  display: none;
  width: 100%;
  background: #f7f7fd;
  font-size: 1.22rem;
  font-family: 'Roboto', 'Arial', sans-serif;
  color: #222;
  text-align: left;
  line-height: 1.8;
  box-shadow: 0 2px 14px #0012;
  margin: 2rem 0 0.3rem 0;
  padding: 1.2rem 2rem;
  white-space: pre-line;
}
.demo-card.lyrics-expanded .demo-lyrics-teaser,
.demo-card.lyrics-expanded .demo-lyrics-preview {
  display: none !important;
}
.demo-card.lyrics-expanded .demo-lyrics-full {
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .demos-grid { flex-direction: column; gap: 2.2rem; align-items: center; }
  .demo-card { max-width: 99vw; }
  .demo-lyrics-teaser { max-width: 90vw; font-size: 1rem; padding: 0.5em 0.7em; }
  .demo-lyrics-preview, .demo-lyrics-full { font-size: 0.98rem; padding: 0.8em 0.7em; }
}
@media (max-width: 700px) {
  body { font-size: 32px; padding: 0 1rem; }
  .demos-grid { flex-direction: column; gap: 1.8rem; }
  .demo-card { flex-direction: column; align-items: center; padding: 1.5rem; }
  .demo-cover { width: 65px; height: 65px; }
  .demo-info audio { width: 98vw; max-width: 275px; }
}
@media (max-width: 480px) {
  .presave-container { max-width: 98vw; padding: 1.5rem 0.3rem;}
  .presave-cover { width: 95vw; max-width: 95vw; height: auto;}
  .presave-title { font-size: 1.3rem; }
  .presave-btn { font-size: 1rem; padding: 0.9rem 0.1rem; }
}

