/* Global styles */
body {
  font-family: Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: #222;
  text-align: center;
  line-height: 1.6;
}

/* Header / logo area */
header {
  background: #111;
  color: #f1f1f1;
  padding: 40px 20px 30px;
}

.logo {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

h1 {
  margin: 0;
  font-size: 2.5em;
  letter-spacing: 1px;
}

header p {
  margin-top: 8px;
  font-size: 1em;
  color: #bbb;
}

/* About section */
.about {
  max-width: 700px;
  margin: 40px auto;
  padding: 0 20px;
}

.about h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #222;
}

.about p {
  color: #444;
  margin-bottom: 15px;
}

/* Releases grid */
main {
  padding: 20px;
}

main h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #222;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.release img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease-in-out;
}

.release img:hover {
  transform: scale(1.03);
}

.caption {
  margin-top: 10px;
}

.caption p {
  margin: 4px 0;
  font-size: 0.95em;
  color: #555;
}

.caption .artist {
  font-weight: bold;
  color: #222;
}

.caption .title {
  font-style: italic;
  color: #444;
}

.caption .blurb {
  font-size: 0.95em;
  text-align: justify; 
  margin-bottom: 10px;
  color: #444;
}

.caption .catalog {
  font-size: 0.85em;
  color: #777;
}

/* Footer */
footer {
  background: #111;
  color: #f1f1f1;
  padding: 20px;
  font-size: 0.9em;
}

footer a {
  color: #f9a825;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
