:root {
  --bg: #000;
  --panel: #820606;
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.82);
  --link: #ddb;
  --border: rgba(255, 255, 255, 0.14);
  --card: rgba(0, 0, 0, 0.22);
}

/* =========================
   BASE / RESET + STICKY FOOTER
   ========================= */

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;              /* sticky footer base */
  display: flex;                  /* sticky footer base */
  flex-direction: column;         /* sticky footer base */

  font-family: "Poppins", Arial, Helvetica, sans-serif;
  color: var(--text);

  /* Pattern background */
  background-image: url("images/bg-blackpaisley.jpg");
  background-repeat: repeat;
  background-position: top center;

  /* Blend requires a color layer to blend WITH */
  background-color: rgba(0, 0, 0, 0.35);
  background-blend-mode: multiply;

  overflow-x: hidden;
}

main {
  flex: 1 0 auto;                 /* THIS is what pushes footer down */
}

figure {
  margin: 0;
}

a {
  color: var(--link);
  text-decoration: none;
}

/* default underline hover for normal links (nav/footer override below) */
a:hover {
  text-decoration: underline;
}

/* =========================
   LAYOUT HELPERS
   ========================= */

.wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  color: #000;
  padding: 8px 10px;
  border-radius: 8px;
}

.skip-link:focus {
  left: 12px;
  z-index: 9999;
}

/* =========================
   PANELS (over paisley)
   ========================= */

.sidebar .card,
.hero.card,
.quote.card,
.video-card.card {
  background: rgba(0, 0, 0, 0.85);
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .sidebar .card,
  .hero.card,
  .quote.card,
  .video-card.card {
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }
}

/* =========================
   HEADER
   ========================= */

.site-header {
  background: var(--panel);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  padding: 12px 0 14px;
}

.brand img {
  max-width: 760px; /* native image width */
  width: 100%;      /* shrink on mobile */
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

/* =========================
   NAVIGATION
   ========================= */

.site-nav {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.nav-toggle {
  display: none; /* shown in mobile query */
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  line-height: 1;
  align-items: center;
}

/* Hamburger icon */
.nav-toggle .bars {
  display: inline-block;
  width: 20px;
  height: 14px;
  position: relative;
  margin-right: 8px;
}

.nav-toggle .bars::before,
.nav-toggle .bars::after,
.nav-toggle .bars span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.nav-toggle .bars::before { top: 0; }
.nav-toggle .bars span     { top: 6px; }
.nav-toggle .bars::after  { bottom: 0; }

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.nav-list a {
  display: inline-block;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.16);
  transition: background-color 0.2s ease;
}

.nav-list a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.12);
}

/* Menu hover behavior (no underline) */
.nav-list a:hover,
.nav-list a:focus {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.12);
}

/* =========================
   MAIN LAYOUT
   ========================= */

.layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 16px;
  padding: 16px 0;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
}

.card-title {
  margin: 0 0 10px;
  font-size: 18px;
}

/* =========================
   SIDEBAR
   ========================= */

.small {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.social {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.logos {
  max-width: 100%;
  height: auto;
  margin-top: 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

/* =========================
   HERO
   ========================= */

.hero h1 {
  margin: 0 0 12px;
  font-size: 26px;
}

.lead {
  margin: 0 0 10px;
  color: var(--muted);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.hero-photo img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.hero-copy {
  text-align: center;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.12);
}

.btn-outline {
  background: transparent;
}

.badge {
  margin-top: 14px;
}

.badge img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
}

/* Classic hero gradient (like original look) */
.hero.card {
  background: linear-gradient(180deg, #1a0000 0%, #4a0707 40%, #6f0c0c 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 26px rgba(0, 0, 0, 0.6);
}

/* =========================
   QUOTE / MARQUEE (no overflow)
   ========================= */

.quote {
  margin-top: 16px;
  text-align: center;
  font-size: 18px;
  color: var(--link);
}

.marquee {
  overflow: hidden;
  position: relative;
  max-width: 100%;
}

.marquee-inner {
  position: relative;
  width: 100%;
  height: 1.6em;
  overflow: hidden;
}

.marquee-inner span {
  position: absolute;
  left: 100%;
  top: 0;
  white-space: nowrap;
  will-change: transform;
  animation: scroll-text 18s linear infinite;
}

@keyframes scroll-text {
  from { transform: translateX(0); }
  to   { transform: translateX(-220%); }
}

/* =========================
   RESPONSIVE VIDEO
   ========================= */

.video-card {
  margin-top: 16px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
  background: var(--panel);
  border-top: 1px solid var(--border);
  padding: 14px 0 22px;
  text-align: center;
  flex-shrink: 0; /* keep footer from collapsing */
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.footer-links a {
  padding: 6px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.14);
  transition: background-color 0.2s ease;
}

/* Footer hover behavior (no underline) */
.footer-links a:hover,
.footer-links a:focus {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.12);
}

.copyright {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 860px) {
  /* Stack layout */
  .layout {
    grid-template-columns: 1fr;
  }

  .content {
    order: 1;
    text-align: center;
  }

  .sidebar {
    order: 2;
    text-align: center;
  }

  /* Tighten header spacing so you don't get that big gap */
  .header-inner {
    padding: 10px 0 8px;
  }

  /* NAV: hamburger centered on top, menu below */
  .site-nav {
    margin-top: 6px;              /* reduce space above */
    margin-bottom: 0;             /* reduce space below */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .nav-toggle {
    display: inline-flex;
    font-size: 16px;
    padding: 14px 20px;           /* bigger finger target */
    border-radius: 16px;
    margin: 0;                    /* remove extra space */
  }

  .nav-toggle .bars {
    width: 24px;
    height: 16px;
  }

  .nav-toggle .bars::before,
  .nav-toggle .bars span,
  .nav-toggle .bars::after {
    height: 3px;
  }

  /* Dropdown menu: full-width buttons, no overflow */
  .nav-list {
    display: none;
    width: 100%;
    margin: 10px 0 0;             /* controlled gap under button */
    padding: 0 12px;              /* space from edges */
    flex-direction: column;
    align-items: stretch;         /* full-width rows */
    gap: 10px;
  }

  .nav-list.is-open {
    display: flex;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 12px;           /* finger-friendly */
    border-radius: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* HERO */
  .hero-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hero-photo {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-photo img {
    width: min(320px, 85vw);
    height: auto;
  }

  /* Sidebar extras */
  .sidebar img {
    margin-left: auto;
    margin-right: auto;
  }

  .sidebar .social {
    justify-content: center;
  }

  /* Let more paisley show through on mobile */
  .sidebar .card,
  .hero.card,
  .quote.card,
  .video-card.card {
    background: rgba(0, 0, 0, 0.72);
  }
}




:root {
  --bg: #000;
  --panel: #820606;
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.82);
  --link: #ddb;
  --border: rgba(255, 255, 255, 0.14);
  --card: rgba(0, 0, 0, 0.22);
}

/* =========================
   BASE / RESET + STICKY FOOTER
   ========================= */

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;              /* sticky footer base */
  display: flex;                  /* sticky footer base */
  flex-direction: column;         /* sticky footer base */

  font-family: "Poppins", Arial, Helvetica, sans-serif;
  color: var(--text);

  /* Pattern background */
  background-image: url("images/bg-blackpaisley.jpg");
  background-repeat: repeat;
  background-position: top center;

  /* Blend requires a color layer to blend WITH */
  background-color: rgba(0, 0, 0, 0.35);
  background-blend-mode: multiply;

  overflow-x: hidden;
}

main {
  flex: 1 0 auto;                 /* THIS is what pushes footer down */
}

figure {
  margin: 0;
}

a {
  color: var(--link);
  text-decoration: none;
}

/* default underline hover for normal links (nav/footer override below) */
a:hover {
  text-decoration: underline;
}

/* =========================
   LAYOUT HELPERS
   ========================= */

.wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  color: #000;
  padding: 8px 10px;
  border-radius: 8px;
}

.skip-link:focus {
  left: 12px;
  z-index: 9999;
}

/* =========================
   PANELS (over paisley)
   ========================= */

.sidebar .card,
.hero.card,
.quote.card,
.video-card.card {
  background: rgba(0, 0, 0, 0.85);
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .sidebar .card,
  .hero.card,
  .quote.card,
  .video-card.card {
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }
}

/* =========================
   HEADER
   ========================= */

.site-header {
  background: var(--panel);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  padding: 12px 0 14px;
}

.brand img {
  max-width: 760px; /* native image width */
  width: 100%;      /* shrink on mobile */
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

/* =========================
   NAVIGATION
   ========================= */

.site-nav {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.nav-toggle {
  display: none; /* shown in mobile query */
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  line-height: 1;
  align-items: center;
}

/* Hamburger icon */
.nav-toggle .bars {
  display: inline-block;
  width: 20px;
  height: 14px;
  position: relative;
  margin-right: 8px;
}

.nav-toggle .bars::before,
.nav-toggle .bars::after,
.nav-toggle .bars span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.nav-toggle .bars::before { top: 0; }
.nav-toggle .bars span     { top: 6px; }
.nav-toggle .bars::after  { bottom: 0; }

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.nav-list a {
  display: inline-block;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.16);
  transition: background-color 0.2s ease;
}

.nav-list a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.12);
}

/* Menu hover behavior (no underline) */
.nav-list a:hover,
.nav-list a:focus {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.12);
}

/* =========================
   MAIN LAYOUT
   ========================= */

.layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 16px;
  padding: 16px 0;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
}

.card-title {
  margin: 0 0 10px;
  font-size: 18px;
}

/* =========================
   SIDEBAR
   ========================= */

.small {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.social {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.logos {
  max-width: 100%;
  height: auto;
  margin-top: 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

/* =========================
   HERO
   ========================= */

.hero h1 {
  margin: 0 0 12px;
  font-size: 26px;
}

.lead {
  margin: 0 0 10px;
  color: var(--muted);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.hero-photo img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.hero-copy {
  text-align: center;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.12);
}

.btn-outline {
  background: transparent;
}

.badge {
  margin-top: 14px;
}

.badge img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
}

/* Classic hero gradient (like original look) */
.hero.card {
  background: linear-gradient(180deg, #1a0000 0%, #4a0707 40%, #6f0c0c 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 26px rgba(0, 0, 0, 0.6);
}

/* =========================
   QUOTE / MARQUEE (no overflow)
   ========================= */

.quote {
  margin-top: 16px;
  text-align: center;
  font-size: 18px;
  color: var(--link);
}

.marquee {
  overflow: hidden;
  position: relative;
  max-width: 100%;
}

.marquee-inner {
  position: relative;
  width: 100%;
  height: 1.6em;
  overflow: hidden;
}

.marquee-inner span {
  position: absolute;
  left: 100%;
  top: 0;
  white-space: nowrap;
  will-change: transform;
  animation: scroll-text 18s linear infinite;
}

@keyframes scroll-text {
  from { transform: translateX(0); }
  to   { transform: translateX(-220%); }
}

/* =========================
   RESPONSIVE VIDEO
   ========================= */

.video-card {
  margin-top: 16px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
  background: var(--panel);
  border-top: 1px solid var(--border);
  padding: 14px 0 22px;
  text-align: center;
  flex-shrink: 0; /* keep footer from collapsing */
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.footer-links a {
  padding: 6px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.14);
  transition: background-color 0.2s ease;
}

/* Footer hover behavior (no underline) */
.footer-links a:hover,
.footer-links a:focus {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.12);
}

.copyright {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
}





/* =========================
   PRODUCTS
   ========================= */
.music-samples__title,
.purchase-title {
  text-align: center;
  margin: 1rem 0;
}

.album-list {
  display: grid;
  gap: 1rem;
}

.album {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.album:first-child {
  border-top: 0;
}

.album__cover {
  width: 150px;
  height: auto;
  display: block;
  border-radius: 10px;
}

.album__title {
  margin: 0 0 0.5rem;
}

.album__tracks {
  margin: 0.25rem 0 0;
  line-height: 1.55;
}

.album__samples {
  margin: 0.5rem 0 0.75rem;
}

.album__samples-label {
  margin: 0 0 0.25rem;
}

.album__samples-list {
  margin: 0;
  padding-left: 1.1rem;
}

.badge {
  display: inline-block;
  font-size: 0.85rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  margin-left: 0.5rem;
  opacity: 0.9;
}

.OOS {
    color: #ff7c7c;
}
.track {
  position: relative;
  padding: 0.9rem 1rem 0.9rem 2.6rem;
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.10),
    rgba(255,255,255,0.04)
  );
}

.track::before {
  content: "▶";
  position: absolute;
  left: 0.9rem;
  top: 0.9rem;
  font-size: 0.85rem;
  opacity: 0.8;
}

.track:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.track audio {
  width: 100%;
}

/* HARD STOP bullets everywhere inside album samples */
.album-samples,
.album-samples li,
ul.album__samples-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Space between tracks */
.album-samples {
  display: grid;
  gap: 0.75rem;
}



@media (max-width: 640px) {
  .album {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .album__cover {
    width: 180px;
    margin: 0 auto;
  }
}





/* =========================
   MOBILE
   ========================= */

@media (max-width: 860px) {
  /* Stack layout */
  .layout {
    grid-template-columns: 1fr;
  }

  .content {
    order: 1;
    text-align: center;
  }

  .sidebar {
    order: 2;
    text-align: center;
  }

  /* Tighten header spacing so you don't get that big gap */
  .header-inner {
    padding: 10px 0 8px;
  }

  /* NAV: hamburger centered on top, menu below */
  .site-nav {
    margin-top: 6px;              /* reduce space above */
    margin-bottom: 0;             /* reduce space below */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .nav-toggle {
    display: inline-flex;
    font-size: 16px;
    padding: 14px 20px;           /* bigger finger target */
    border-radius: 16px;
    margin: 0;                    /* remove extra space */
  }

  .nav-toggle .bars {
    width: 24px;
    height: 16px;
  }

  .nav-toggle .bars::before,
  .nav-toggle .bars span,
  .nav-toggle .bars::after {
    height: 3px;
  }

  /* Dropdown menu: full-width buttons, no overflow */
  .nav-list {
    display: none;
    width: 100%;
    margin: 10px 0 0;             /* controlled gap under button */
    padding: 0 12px;              /* space from edges */
    flex-direction: column;
    align-items: stretch;         /* full-width rows */
    gap: 10px;
  }

  .nav-list.is-open {
    display: flex;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 12px;           /* finger-friendly */
    border-radius: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* HERO */
  .hero-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hero-photo {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-photo img {
    width: min(320px, 85vw);
    height: auto;
  }

  /* Sidebar extras */
  .sidebar img {
    margin-left: auto;
    margin-right: auto;
  }

  .sidebar .social {
    justify-content: center;
  }

  /* Let more paisley show through on mobile */
  .sidebar .card,
  .hero.card,
  .quote.card,
  .video-card.card {
    background: rgba(0, 0, 0, 0.72);
  }
}
