/* ==========================================================================
   Variables
   ========================================================================== */
:root {
  --text-color: #eee;
  --background-color: #0a0a0a;
  --accent: #3ddc97;           /* mint-green accent */
  --accent-dark: #36b883;      /* darker mint for hover states */
  --secondary-bg: rgba(0,0,0,0.5);
  --grey: #999;
  --quote-color: #ccc;
}

/* ==========================================================================
   Global Reset & Base
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background: var(--background-color);
  color: var(--text-color);
}
a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover,
a:focus {
  color: var(--accent);
}

/* PNG transparency fix */
img,
.hero-logo,
.release-card img,
.featured-image img {
  background: transparent !important;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header,
header {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--secondary-bg);
  padding: 1rem 2rem;
  z-index: 100;
  overflow: visible;
  border-bottom: 2px solid var(--accent);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0 1rem;
  margin: 0;
}
.nav ul::-webkit-scrollbar {
  height: 4px;
}
.nav ul::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 2px;
}
.nav ul li {
  white-space: nowrap;
}
.nav a {
  font-weight: 600;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-bg {
  background: url('/images/hero-bg.png') center/cover no-repeat;
  filter: brightness(0.6);
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
}
.hero-overlay {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  height: 100%; padding: 0 1rem;
}
.hero-logo {
  width: 200px;
  margin-bottom: 1rem;
}
.hero-title {
  font-size: 3rem;
  color: #fff;
  margin: 0.5rem 0;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: #ccc;
  margin-bottom: 1.5rem;
}
.hero-ctas,
.hero-action {
  display: flex;
  gap: 1rem;
}
.hero-action {
  margin-top: 2rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-dark);
}
.btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-secondary:hover {
  background: var(--accent);
}
.btn-outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ==========================================================================
   Section Releases (Music) & Tour & Store
   ========================================================================== */
.section-releases {
  margin-top: 120px;
  padding: 2rem;
}
.section-releases h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 2px solid #333;
  padding-bottom: 0.5rem;
}
.release-grid,
.merch-grid {
  display: grid;
  gap: 2rem;
  margin: 0 auto;
  max-width: 1400px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.release-card,
.merch-card {
  background: rgba(20,20,20,0.9);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}
.release-card:hover,
.merch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.8);
}
.release-card img,
.merch-card img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto 1rem;
  border-radius: 6px;
  object-fit: cover;
}
.release-card h3,
.merch-card h3 {
  font-size: 1.3rem;
  color: var(--accent);
  margin: 0.5rem 0;
}
.release-card p,
.merch-card .price {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.listen-btn,
.merch-card .btn-primary {
  margin: 1rem auto 0;      /* top margin, auto left/right to center */
  padding: 0.6rem 2rem;
  background: var(--accent);
  color: #fff !important;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 1px 6px rgba(0,128,64,0.5);
  width: auto;              /* let the button size to its text */
  display: inline-block;    /* ensure margin auto works */
}
.listen-btn:hover {
  background: var(--accent-dark);
}

/* ==========================================================================
   About & Contact Simple Section
   ========================================================================== */
.section-simple {
  margin-top: 120px;
  padding: 3rem 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.section-simple h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.5rem;
  color: #fff;
}
.simple-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 1.25rem;
}
.simple-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.25rem;
}
.simple-content ul li {
  margin-bottom: 0.75rem;
  color: #ddd;
}
.simple-content ul li a {
  color: var(--accent);
}
.simple-content ul li strong {
  color: #fff;
}

/* ==========================================================================
   Bandcamp Embed Responsiveness
   ========================================================================== */
.bandcamp-responsive,
.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.bandcamp-responsive iframe,
.video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer,
footer {
  background: var(--secondary-bg);
  text-align: center;
  padding: 2rem 1rem;
  color: var(--grey);
  margin-top: 4rem;
}
.site-footer a,
footer a {
  color: var(--grey);
  margin: 0 0.5rem;
}
.site-footer a:hover,
footer a:hover {
  color: var(--accent);
}

/* ──────────────────────────────────────────────────────────────────────────── */
/* UNIFY BUTTON WIDTHS ON THE HOMEPAGE                                        */
/* ──────────────────────────────────────────────────────────────────────────── */

/* Apply only on the homepage: */
.hero-ctas .btn,
.hero-action .btn,
.section-releases .btn-primary,
.section-releases .listen-btn {
  display: inline-block;
  width: 12rem;         /* all buttons 12rem (≈192px) wide */
  max-width: 80%;       /* on very small screens they can shrink */
  text-align: center;
}

/* Ensure grid “Listen” buttons stretch if you prefer full-width in cards: */
/*
.release-card .listen-btn {
  width: 100%;
}
*/
