@font-face {
  font-family: 'Comic Sans MS Custom';
  src: url('./assets/ComicSansMS.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

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

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  background-color: black;
  color: #e0ecff;
  font-family: "Comic Sans MS", "Comic Sans MS Custom", sans-serif;
  background-image: url('./assets/background.webp');
  background-repeat: repeat;
  font-size: 18px;
}

header {
  background: linear-gradient(90deg, #ff006e, #3200ff);
  padding: 12px 0;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.65);
  border-bottom: 4px ridge #ffd600;
}

.logo {
  width: 180px;
  max-width: 40vw;
  margin: 0 auto;
  display: block;
}

main {
  width: min(1100px, 92vw);
  margin: 30px auto 60px auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

section {
  padding: 28px;
  border: 4px groove hotpink;
  background: rgba(0, 0, 0, 0.78);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 18px;
  align-items: center;
}

.hero-copy {
  text-align: left;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9em;
  color: #9efeff;
  margin: 0 0 6px 0;
}

h1 {
  margin: 0 0 12px 0;
  font-size: clamp(1.2rem, 1.1vw + 1rem, 1.9rem);
  line-height: 1.05;
  color: #ff4fd8;
  text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.6);
}

.subhead {
  margin: 0 0 18px 0;
  color: #cde2ff;
  line-height: 1.4;
  font-size: 1.05rem;
  padding-left: 2vw;
}

.album-title {
  display: block;
  margin-top: 4px;
  font-weight: bold;
  color: #9efeff;
}
.primary-cta {
  margin-bottom: 14px;
}

.secondary-note {
  margin: 10px 0 10px 0;
  color: #9efeff;
  font-weight: bold;
}

.streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-art {
  display: flex;
  justify-content: center;
}

.hero-art img {
  width: 100%;
  max-width: 300px;
  border-radius: 14px;
  border: 4px solid #ff4fd8;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.55);
  background: #0b0b0b;
}

h2 {
  font-size: 1.8em;
  margin: 0 0 14px 0;
  color: #ff4fd8;
  text-align: left;
  text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.6);
}

.player .embed-wrapper {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 8px;
  border: 2px solid #1DB954;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.4);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fun-button {
  display: inline-block;
  padding: 12px 18px;
  background: #40a0ff;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 12px;
  transition: 0.2s ease-in-out;
  font-family: "Comic Sans MS", "Comic Sans MS Custom", sans-serif;
  box-shadow: 0px 0px 10px rgba(64, 160, 255, 0.8);
  border: 2px solid transparent;
}

.fun-button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 0px 14px #ff4081;
}

.fun-button.primary {
  background: #1DB954;
  box-shadow: 0px 0px 12px rgba(29, 185, 84, 0.9);
  padding: 14px 26px;
  font-size: 1.12rem;
}

.fun-button.primary:hover {
  box-shadow: 0px 0px 16px rgba(29, 185, 84, 0.9);
}

.fun-button.outline {
  background: transparent;
  color: #ff4fd8;
  border-color: #ff4fd8;
  box-shadow: none;
}

.fun-button.outline:hover {
  background: rgba(255, 79, 216, 0.15);
  box-shadow: 0 0 12px rgba(255, 79, 216, 0.6);
}

.streaming-links .fun-button {
  padding: 8px 12px;
  font-size: 0.9rem;
}

@media (max-width: 1150px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    text-align: center;
  }

  .streaming-links,
  .social-links {
    justify-content: center;
  }

  .hero-art {
    order: -1;
  }

  h1 {
    font-size: 1.35rem;
  }
  .subhead {
    padding-left: auto;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  section {
    padding: 22px;
  }

  .hero-copy {
    align-items: center;
  }

  .fun-button {
    width: 100%;
    text-align: center;
  }
}
