/* === GLOBAL RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === BASE STYLES === */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #9932CC; /* NEW LIGHTER PURPLE */
  color: #ffffff;
  padding: 20px;
  line-height: 1.6;
}

/* === NAVIGATION === */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

nav a:hover {
  color: #ffebff;
}

/* === HEADINGS === */
h1 {
  font-size: 2.8rem;
  margin-bottom: 5px;
}

h2 {
  font-size: 1.9rem;
  margin-top: 30px;
}

h3 {
  font-size: 1.4rem;
  margin-top: 40px;
}

/* === HERO SECTION === */
.hero {
  text-align: center;
  margin-bottom: 40px;
}

.tagline {
  font-style: italic;
  margin-bottom: 15px;
}

/* === ALBUM ART === */
.album-art {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px 0;
}

.album-art img {
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* === BUTTONS === */
.actions {
  margin-top: 20px;
}

.btn {
  background-color: #ffffff;
  color: #9932CC;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  margin: 0 10px;
  display: inline-block;
}

.btn:hover {
  background-color: #ffebff;
}

/* === SUBSCRIBE SECTION === */
.subscribe {
  text-align: center;
  margin-top: 50px;
}

.subscribe input[type="email"] {
  padding: 10px;
  border-radius: 5px;
  border: none;
  margin-right: 10px;
  width: 250px;
}

.subscribe button {
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  background-color: white;
  color: #9932CC;
  font-weight: bold;
  cursor: pointer;
}

.subscribe button:hover {
  background-color: #ffebff;
}

/* === FOOTER === */
footer {
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
}

footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
