/* Reset some default margins/padding */ 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #f2f2f2;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* ================= Header Layout ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  border-bottom: 2px solid #e0b248;
  background-color: #000;
}

.logo {
  flex: 0 0 auto;
}

.logo img {
  height: 100px;
  width: auto;
}

/* Center title block */
.title-block {
  flex: 1 1 auto;
  text-align: center;
  padding: 0 1rem;
}

.title-block h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: #f2f2f2;
}

.title-block p {
  font-size: 1.3rem;
  margin: 0.5rem 0 0;
  color: #ccc;
}
/* Gold bold “PLAY” */
.gold-fat {
  color: #e0b248;
  font-weight: 800;
  font-size: 1.4rem;
}

/* Highlighted "PLAY" */
.highlight {
  color: #ffd700;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-shadow: 0 0 5px #ffd70088;
}

/* Music note emoji style */
.note {
  font-size: 1.4rem;
  margin-right: 0.2rem;
  color: #e0b248;
}
.inline-note {
  height: 1rem;
  vertical-align: middle;
}

/* ================= Right-aligned navigation ================= */
.main-nav {
  flex: 0 0 auto;
  display: flex;
  gap: 1.5rem;
  font-weight: bold;
  justify-content: flex-end;
}

.main-nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  color: #ffd700;
}

.main-nav a.active {
  color: #ffd700;
}

.main-nav a.active:hover {
  color: #ffffff;
}

/* ================= Hero Text (Welcome Block) ================= */
.hero {
  padding: 2rem;
  text-align: center;
}

.hero h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: #ccc;
}

.hero p strong {
  color: #ffd700;
}

/* ================= Cover Gallery Layout ================= */
.cover-gallery {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.cover-art {
  width: 200px;
  border: 2px solid #ffd700;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  transition: transform 0.3s ease;
}

.cover-art:hover {
  transform: scale(1.05);
}