/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #121212;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

a {
  color: #1DB954;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background: #000;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0,0,0,0.7);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #1DB954;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  font-weight: 600;
  font-size: 1rem;
  padding: 0.3rem 0.5rem;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #1ed760;
  border-bottom: 2px solid #1ed760;
}

main {
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.hero {
  text-align: center;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
  color: #bbb;
  margin-bottom: 1.5rem;
}

audio {
  width: 100%;
  max-width: 400px;
  outline: none;
  border-radius: 10px;
}

section.shows ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

section.shows li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #222;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  color: #ccc;
}

section.about p {
  margin-top: 1rem;
  color: #ddd;
  font-size: 1.1rem;
}

section.contact p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.social-links a {
  margin-right: 1rem;
  font-size: 1.5rem;
  color: #1DB954;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #1ed760;
}

footer {
  text-align: center;
  padding: 1rem 0;
  background: #000;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #555;
}

html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
}

body > header,
body > main,
body > footer {
  width: 100%;
}

body > main {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
  background: #000;
  text-align: center;
  padding: 1rem 0;
  color: #555;
}
