/*-------------------------------------
  BASE SETUP (LEFT-ALIGNED)
-------------------------------------*/
body {
  font-family: 'Roboto', sans-serif;
  background: url('visuals/images/Wilmington-2.jpg') no-repeat center center fixed;
  background-size: cover;
  background-color: #d85094;
  color: #130f3a;
  font-size: 40px;
  text-align: left;
  overflow-x: hidden;
  padding-left: 300px; /* Space for left side image */
  padding-right: 300px; /* Space for right side image */
  max-width: 1200px;
  margin: 0 auto;
  cursor: url('visuals/images/CD-2.png'), auto; /* Custom cursor */
}

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

/*-------------------------------------
  FIXED SIDE IMAGES (STICKY FRAME)
-------------------------------------*/
.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 / NAVIGATION
-------------------------------------*/
header {
  padding: 3rem 0 2rem;
}

.wilmo-logo {
  max-width: 400px;
  max-height: 140px;
}

.subtitle {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 1.5rem;
}

nav {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 1.5rem;
  position: sticky;
  top: 0;
  z-index: 10;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  padding-left: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffcc00;
}

/*-------------------------------------
  HEADINGS & TEXT
-------------------------------------*/
h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #000;
  padding-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

p, li, a, span {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
}

ul.nobullets {
  list-style: none;
  padding-left: 0;
  max-width: 1000px;
  margin: 0;
}

/*-------------------------------------
  FAKE H7
-------------------------------------*/
.fake-h7 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #130f3a;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

/*-------------------------------------
  SECTIONS
-------------------------------------*/
section {
  max-width: 1200px;
  margin: 4rem 0;
  padding: 4rem 0;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

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

/*-------------------------------------
  STORE SECTION
-------------------------------------*/
.store-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.store-button {
  width: 220px;
  padding: 25px;
  font-size: 1.2rem;
  text-align: center;
  background-color: #fff;
  color: #000;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.store-button:hover {
  background-color: #130f3a;
  color: #fff;
}

/*-------------------------------------
  SIGNUP FORM
-------------------------------------*/
.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-color: #ffcc00;
  border: none;
  cursor: pointer;
}

/*-------------------------------------
  VISUALS MASONRY
-------------------------------------*/
.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;
}

/*-------------------------------------
  TRACK LIST WITH IMAGES (LEFT)
-------------------------------------*/
.track-list {
  list-style: none;
  padding: 0;
  margin: 3rem 0;
  max-width: 900px;
}

.track-list li {
  margin-bottom: 2rem;
}

.track-list a {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-decoration: none;
  color: #130f3a;
  font-size: 1.2rem;
  font-weight: bold;
}

.track-list img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/*-------------------------------------
  FOOTER
-------------------------------------*/
footer {
  margin-top: 4rem;
}

footer img {
  max-width: 180px;
  display: block;
}

/*-------------------------------------
  RESPONSIVE
-------------------------------------*/
@media (max-width: 768px) {
  .side-img {
    display: none;
  }

  body {
    font-size: 24px;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  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%;
    height: auto;
  }

  section {
    padding: 2rem 0;
  }

  .track-list img {
    display: none;
  }
}
