body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #1A1A1A;
  color: #EFEFEF;
}

header {
  background: #2B2B2B;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-title {
  margin: 0;
  font-size: 24px;
  letter-spacing: 2px;
}

nav ul {
  list-style-type: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #EFEFEF;
  font-weight: bold;
  transition: color 0.2s ease;
}

nav a:hover,
nav a.active {
  color: #FF5533; /* highlight color */
}

.hero {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.hero img {
  display: block;       
  margin: 0 auto 200px;   /* 0 top & left, auto left/right for centering, 40px bottom for spacing */
  max-height: 400px;     /* or any size you prefer */
  width: 666px;          /* or remove if you want it responsive */
  object-fit: cover;     /* optional if you like covering the area */
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.hero-text h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  background: #FF5533;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s ease;
}

.cta-button:hover {
  background: #FF2200;
}

.intro {
  padding: 20px;
  text-align: center;
}

.intro p {
  max-width: 600px;
  margin: 0 auto 20px;
}

footer {
  background: #2B2B2B;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
}

.merch-content,
.music-section,
.bios-section {
  padding: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-grid,
.album-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;
}

.product-card,
.album-card,
.bio-card {
  background: #333333;
  border-radius: 5px;
  padding: 15px;
  text-align: center;
  width: 300px;
}

.product-card img,
.album-card img,
.bio-card img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
}

.product-card h3,
.album-card h3 {
  margin: 10px 0;
}

.product-card button,
.album-card button {
  background: #FF5533;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
  color: #fff;
  transition: background 0.2s ease;
}

.product-card button:hover,
.album-card button:hover {
  background: #FF2200;
}

.bio-card {
  margin-bottom: 20px;
}
.bios-container {
  display: flex;
  justify-content: space-between; /* adds space between cards */
  flex-wrap: wrap; /* helps responsiveness if the screen shrinks */
}

.bio-card {
  width: 48%; /* each card takes up almost half of the container */
  box-sizing: border-box; /* padding and borders won't fuck with the width */
}
