@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Inter:wght@300;400;500&display=swap');

/* ─── Reset & Base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #090706;
  --dark:       #110d0b;
  --dark2:      #1a1210;
  --brown:      #3a2015;
  --red:        #8b1a1a;
  --red-bright: #b52222;
  --bone:       #c2b8ae;
  --ash:        #8a8078;
  --white:      #e8e2dc;
  --nav-h:      70px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--black);
  color: var(--bone);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

/* ─── Scrollbar ─────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ─── Nav ───────────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 48px;
  background: linear-gradient(to bottom, rgba(9,7,6,0.97) 0%, rgba(9,7,6,0.75) 100%);
  border-bottom: 1px solid rgba(139,26,26,0.25);
  backdrop-filter: blur(6px);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  justify-content: center;
  grid-column: 2;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-end;
  grid-column: 3;
  justify-self: end;
}

.nav-social-link {
  display: flex;
  align-items: center;
  color: var(--ash);
  transition: color 0.2s, transform 0.2s;
}

.nav-social-link svg {
  width: 18px;
  height: 18px;
}

.nav-social-link:hover {
  color: var(--white);
  transform: scale(1.15);
}

.nav-social-link.spotify:hover {
  color: #1DB954;
}

.nav-social-link.apple-music:hover {
  color: #fc3c44;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  grid-column: 1;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.9;
  text-decoration: none;
}

.nav-logo {
  height: calc(var(--nav-h) - 10px);
  width: auto;
  object-fit: contain;
  /* The logo has a black bg — blend it into the nav */
  filter: drop-shadow(0 0 6px rgba(139,26,26,0.5));
}


.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--red-bright); }

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('Photos/Logo/logo artwork.jpg');
  background-size: cover;
  background-position: center 70px;
  filter: brightness(0.55) saturate(0.8);
  transform: scale(1.03);
}

/* Multi-layer dark overlay matching the art's tonal range */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(9,7,6,0.55) 0%,
      rgba(20,10,8,0.2) 40%,
      rgba(9,7,6,0.7) 80%,
      rgba(9,7,6,1) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(9,7,6,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  padding: 0 24px 60px;
}

.hero-logo {
  width: min(420px, 72vw);
  filter: drop-shadow(0 0 40px rgba(139,26,26,0.4));
}

.hero-tagline {
  font-family: 'Cinzel', serif;
  font-size: clamp(10px, 1.5vw, 13px);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--ash);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.btn {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 1px solid;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
}

.btn-outline {
  background: transparent;
  border-color: rgba(194,184,174,0.35);
  color: var(--bone);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--white);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.45;
}

.hero-scroll span {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--bone), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ─── Section Shared ────────────────────────────────────────────────────── */
section { padding: 100px 0; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 40px;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--red);
  margin-bottom: 40px;
}

/* ─── About ─────────────────────────────────────────────────────────────── */
#about {
  background: var(--dark);
  border-top: 1px solid rgba(139,26,26,0.15);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--red) 0%, transparent 60%);
  z-index: 0;
}

.about-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  filter: grayscale(20%) contrast(1.05);
}

.about-text p {
  font-size: 15px;
  font-weight: 300;
  color: var(--bone);
  line-height: 1.85;
  margin-bottom: 20px;
  opacity: 0.85;
}

/* ─── Music ─────────────────────────────────────────────────────────────── */
#music {
  background: var(--black);
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 2px;
}

.release-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark2);
}

.release-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--dark2);
  border: 1px solid rgba(139,26,26,0.1);
  padding: 32px;
  text-align: center;
  transition: border-color 0.3s;
}

.release-card:hover .release-card-placeholder {
  border-color: rgba(139,26,26,0.5);
}

.release-card-placeholder .release-type {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--red);
}

.release-card-placeholder .release-title {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.release-card-placeholder .release-year {
  font-size: 12px;
  color: var(--ash);
  letter-spacing: 0.1em;
}

.spotify-tile {
  background: #191414;
  border-color: transparent;
  gap: 8px;
  transition: background 0.3s, transform 0.2s;
}

.release-card:hover .spotify-tile {
  background: #1a1a1a;
  border-color: transparent;
  transform: scale(1.03);
}

.spotify-tile .release-type {
  color: #1DB954 !important;
  font-size: 8px;
  letter-spacing: 0.35em;
}

.spotify-tile .release-title {
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 700;
}

.spotify-tile .release-year {
  color: #b3b3b3 !important;
  font-size: 11px;
}

.spotify-icon {
  width: 52px;
  height: 52px;
  color: #1DB954;
  margin-bottom: 4px;
  filter: drop-shadow(0 0 10px rgba(29,185,84,0.5));
  transition: filter 0.3s;
}

.release-card:hover .spotify-icon {
  filter: drop-shadow(0 0 18px rgba(29,185,84,0.8));
}

.apple-tile {
  background: #1c1c1e;
  border-color: transparent;
  gap: 8px;
  transition: background 0.3s, transform 0.2s;
}

.release-card:hover .apple-tile {
  background: #2c2c2e;
  border-color: transparent;
  transform: scale(1.03);
}

.apple-tile .release-type {
  color: #fc3c44 !important;
  font-size: 8px;
  letter-spacing: 0.35em;
}

.apple-tile .release-title {
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.apple-tile .release-year {
  color: #b3b3b3 !important;
  font-size: 11px;
}

.apple-icon {
  width: 52px;
  height: 52px;
  color: #fc3c44;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 10px rgba(252,60,68,0.5));
  transition: filter 0.3s;
}

.release-card:hover .apple-icon {
  filter: drop-shadow(0 0 18px rgba(252,60,68,0.8));
}

.music-note {
  margin-top: 48px;
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
  opacity: 0.6;
}

/* ─── Shows ─────────────────────────────────────────────────────────────── */
#shows {
  background: var(--dark);
  border-top: 1px solid rgba(139,26,26,0.15);
}

.shows-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.show-row {
  display: grid;
  grid-template-columns: 120px 1fr 200px 160px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(58,32,21,0.6);
  gap: 24px;
  transition: background 0.2s;
}

.show-row:first-child { border-top: 1px solid rgba(58,32,21,0.6); }
.show-row:hover { background: rgba(139,26,26,0.05); }

.show-date {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--red-bright);
  letter-spacing: 0.05em;
}

.show-venue {
  font-size: 15px;
  color: var(--white);
  font-weight: 400;
}

.show-location {
  font-size: 13px;
  color: var(--ash);
  letter-spacing: 0.02em;
}

.show-ticket-link {
  text-align: right;
}

.show-ticket-link a {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bone);
  border: 1px solid rgba(139,26,26,0.5);
  padding: 8px 18px;
  transition: all 0.2s;
  display: inline-block;
}

.show-ticket-link a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.show-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid rgba(58,32,21,0.6);
}

.show-card:first-child { border-top: 1px solid rgba(58,32,21,0.6); }

.show-poster-wrap {
  position: relative;
}

.show-poster-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--red) 0%, transparent 60%);
  z-index: 0;
}

.show-poster-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
}

.show-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.show-info .show-date {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--red-bright);
  letter-spacing: 0.05em;
}

.show-info .show-venue {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}

.show-info .show-location {
  font-size: 14px;
  color: var(--ash);
  letter-spacing: 0.05em;
}

.show-info .show-details {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.7;
  margin-top: 4px;
}

.shows-empty {
  text-align: center;
  padding: 60px 0;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ash);
  opacity: 0.5;
}

/* ─── Contact ───────────────────────────────────────────────────────────── */
#contact {
  background: var(--black);
  text-align: center;
}

.contact-body {
  font-size: 15px;
  color: var(--ash);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.contact-email {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--red-bright);
  border-bottom: 1px solid rgba(181,34,34,0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.contact-email:hover {
  color: var(--white);
  border-color: var(--white);
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.social-link {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ash);
  border: 1px solid rgba(58,32,21,0.8);
  padding: 12px 24px;
  transition: all 0.2s;
}

.social-link:hover {
  color: var(--white);
  border-color: var(--red);
  background: rgba(139,26,26,0.12);
}

/* ─── Footer ────────────────────────────────────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(58,32,21,0.6);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ash);
  opacity: 0.7;
}

.footer-copy {
  font-size: 11px;
  color: var(--ash);
  opacity: 0.4;
  letter-spacing: 0.05em;
}

/* ─── Red bar accent ────────────────────────────────────────────────────── */
.red-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--red) 0%, transparent 100%);
  margin-bottom: 60px;
}

/* ─── Hamburger Button ──────────────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 8px;
  grid-column: 3;
  justify-self: end;
  z-index: 101;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bone);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Mobile Menu Drawer ────────────────────────────────────────────────── */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(9,7,6,0.98);
  border-bottom: 1px solid rgba(139,26,26,0.3);
  backdrop-filter: blur(8px);
  z-index: 98;
  flex-direction: column;
  padding: 8px 0 24px;
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-menu a {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ash);
  padding: 16px 32px;
  border-bottom: 1px solid rgba(58,32,21,0.3);
  transition: color 0.2s, background 0.2s;
}

.nav-mobile-menu a:last-of-type { border-bottom: none; }
.nav-mobile-menu a:hover, .nav-mobile-menu a:active { color: var(--white); background: rgba(139,26,26,0.08); }

.nav-mobile-socials {
  display: flex;
  gap: 20px;
  padding: 20px 32px 0;
  margin-top: 8px;
  border-top: 1px solid rgba(58,32,21,0.3);
}

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .section-inner { padding: 0 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .show-row { grid-template-columns: 90px 1fr; }
  .show-location, .show-ticket-link { display: none; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 768px) {
  /* Hide desktop nav, show hamburger */
  .nav-links { display: none; }
  .nav-socials { display: none; }
  .nav-hamburger { display: flex; }
  nav { grid-template-columns: 1fr auto; }
  .nav-brand { grid-column: 1; display: flex; }

  /* Show card stacks on tablet */
  .show-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .show-poster-wrap {
    max-width: 280px;
  }

  section { padding: 72px 0; }
}

@media (max-width: 600px) {
  .hero-cta-group { flex-direction: column; align-items: center; }

  /* Social links wrap into 2-col grid */
  .social-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .social-link { text-align: center; padding: 12px 8px; }

  footer { padding: 24px 16px; }

  section { padding: 60px 0; }
  .section-inner { padding: 0 20px; }
}
