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

/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', 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);
  overflow-x: hidden;
  cursor: url('visuals/images/CD-2.png'), auto;
  min-height: 100vh;
}
a {
  text-decoration: none;
  color: var(--link-color);
}
a:hover {
  color: var(--hover-color);
}

/* FIXED SIDE IMAGES */
.side-img {
  position: fixed;
  top: 0;
  height: 100vh;
  width: auto;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.side-img.left { left: 0; }
.side-img.right { right: 0; }

/* HEADER */
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;
}

/* NAVIGATION */
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;
}

/* CONTENT CONTAINER */
.content-container {
  margin-left: var(--side-padding);
  width: calc(100% - var(--side-padding) - var(--right-padding));
  padding-right: var(--right-padding);
}

/* BANDCAMP EMBED */
.bandcamp-embed {
  width: 390px;
  margin: 2.5rem 0 2rem 0;   /* Remove auto, use spacing only on top/bottom */
}


/* SECTIONS */
section {
  margin: 0rem 0;
  padding: 4rem 0;
}
h1, h2, h4 {
  font-size: 3rem;
  margin-bottom: 2.8rem;
  letter-spacing: -3.2px;
  text-transform: capitalize;
  font-weight: 600;
}
.fake-h7 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 1.8rem;
  opacity: 0.95;
}

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

/* BIO */
.bio-textarea {
  width: 100%;
  max-width: 900px;
  padding: 30px;
  font-size: 1.3rem;
  line-height: 1.8;
  border-radius: 10px;
  border: 1px solid #ccc;
  background: #fff;
  color: #000;
  margin-top: 1.5rem;
  resize: vertical;
}

/* PRESAVE CARD */
.presave-container {
  background: #fff;
  box-shadow: 0 6px 36px rgba(48,0,38,0.14);
  padding: 2.1rem 2.25rem 2rem 2.25rem;
  max-width: 352px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 10;
  margin: 2rem auto 3.5rem auto;
}
.presave-cover {
  width: 170px;
  height: 170px;
  border-radius: 1.2rem;
  object-fit: cover;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 16px rgba(40,30,56,0.15);
  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;
  justify-content: center;
  gap: 0.7rem;
  background: #2d5884;
  color: #fff;
  border: none;
  border-radius: 0.7rem;
  padding: 1rem 0.2rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(184,78,97,0.07);
  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;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.6em;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.07));
  background: transparent;
  border-radius: 0.3em;
  object-fit: contain;
}
.presave-note {
  font-size: 1.03rem;
  color: #8274aa;
  margin-top: 0.7rem;
  margin-bottom: 0;
  opacity: 0.85;
}

/* VISUALS */
.masonry-collage {
  padding: 2rem 0;
}
.masonry-grid {
  column-count: 2;
  column-gap: 4rem;
}
.masonry-grid img {
  width: 100%;
  margin-bottom: 2rem;
  border-radius: 2px;
  display: block;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  break-inside: avoid;
}

/* STORE */
.store-buttons {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
.store-button {
  width: 220px;
  padding: 25px;
  font-size: 1.2rem;
  text-align: center;
  background: #fff;
  color: #000;
  border-radius: 10px;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}
.store-button:hover {
  background: #130f3a;
  color: #fff;
}
.store-images img {
  width: 180px;
  margin-right: 20px;
}

/* SIGNUP */
.signup-form input {
  padding: 15px;
  width: 400px;
  font-size: 1.1rem;
  margin: 1rem 0;
}
.signup-form button {
  padding: 12px 24px;
  font-size: 1.1rem;
  background: #ffcc00;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

/* FOOTER */
footer {
  margin-top: 4rem;
  text-align: center;
}
footer img {
  max-width: 180px;
  margin: 0 auto;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .content-container { margin-left: 0; width: 100%; padding: 0 1.5rem; }
  .side-img { display: none; }
}
@media (max-width: 768px) {
  body { font-size: 24px; padding: 0 1rem; }
  .side-img { display: none; }
  .content-container { margin-left: 0; width: 100%; padding: 0 1rem; }
  nav, nav ul { flex-direction: column; gap: 1rem; }
  .store-buttons { flex-direction: column; gap: 1rem; }
  .store-button { width: 100%; max-width: 300px; }
  .bio-textarea, .signup-form input { width: 100%; }
  .masonry-grid { column-count: 1; }
  .wilmo-logo { max-width: 90%; }
  .track-list img, .nobullets img { width: 100px; height: 100px; }
  .bandcamp-embed { width: 100vw; }
}
@media (max-width: 480px) {
  .presave-container { max-width: 98vw; padding: 1.5rem 0.3rem; border-radius: 1.2rem; }
  .presave-cover { width: 95vw; max-width: 95vw; height: auto; border-radius: 0.7rem; }
  .presave-title { font-size: 1.3rem; }
  .presave-btn { font-size: 1rem; padding: 0.9rem 0.1rem; }
  .store-images img { width: 90px; }
}
