/* ============================================================
   The ShortcutZ — Band Website Stylesheet
   Palette: Black | Chrome/Silver | Crimson Red | Electric Blue
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-bg:           #000000;
  --color-surface:      #141414;
  --color-surface-2:    #1e1e1e;
  --color-border:       #2e2e2e;

  /* Red from logo layering */
  --color-red:          #cc1f1f;
  --color-red-hover:    #e83232;

  /* Electric blue from lightning */
  --color-blue:         #1a8fff;
  --color-blue-glow:    rgba(26,143,255,.35);

  /* Chrome / silver headings */
  --color-chrome-light: #ffffff;
  --color-chrome-mid:   #c8c8c8;
  --color-chrome-dark:  #888888;

  --color-text:         #e0e0e0;
  --color-text-muted:   #909090;
  --color-white:        #ffffff;

  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body:    'Helvetica Neue', Arial, sans-serif;

  --nav-height: 70px;
  --max-width:  1100px;
  --radius:     6px;
  --shadow:     0 6px 28px rgba(0,0,0,.7);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.7;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a   { color: var(--color-blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--color-red-hover); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: .03em;
  line-height: 1.2;
}

ul { list-style: none; }

/* ---------- Layout Utilities ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 72px 0; }

.section-title {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--color-chrome-light), var(--color-chrome-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 48px;
  font-size: 1.05rem;
}

.divider {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-red), var(--color-blue));
  margin: 12px auto 40px;
  border: none;
  border-radius: 2px;
}

/* ---------- Navigation ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,.97);
  border-bottom: 2px solid var(--color-red);
  box-shadow: 0 2px 20px var(--color-blue-glow);
  backdrop-filter: blur(6px);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--color-white);
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1.1;
}

.nav-logo-text .the { display: block; font-size: .7rem; letter-spacing: .2em; color: var(--color-chrome-mid); }
.nav-logo-text .band-name { color: var(--color-white); }
.nav-logo-text .band-name span { color: var(--color-red); }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: var(--color-text);
  font-size: .88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-blue);
  border-bottom-color: var(--color-blue);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-text);
  transition: transform .3s, opacity .3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (Home page) ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(26,143,255,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(204,31,31,.14) 0%, transparent 60%),
    #000;
  overflow: hidden;
  padding: 60px 20px;
}

/* Subtle scanline overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,.012) 2px,
    rgba(255,255,255,.012) 4px
  );
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-logo-wrap {
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}

.hero-logo {
  max-width: min(600px, 90vw);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(26,143,255,.4)) drop-shadow(0 0 20px rgba(204,31,31,.3));
}

/* Fallback text title when logo is missing */
.hero-title-text {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-title-the {
  display: block;
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  letter-spacing: .35em;
  color: var(--color-chrome-mid);
  margin-bottom: 8px;
}

.hero-title-band {
  display: block;
  background: linear-gradient(160deg,
    #fff 0%,
    #d0d0d0 30%,
    #fff 50%,
    #b0b0b0 70%,
    #e8e8e8 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 16px rgba(26,143,255,.5));
}

.hero-tagline {
  font-size: clamp(.95rem, 2.5vw, 1.3rem);
  color: var(--color-text-muted);
  margin-bottom: 40px;
  font-style: italic;
  letter-spacing: .04em;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  transition: transform .15s, box-shadow .15s, background .2s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.55); }
.btn:active { transform: translateY(0); }

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

.btn-primary:hover {
  background: var(--color-red-hover);
  color: var(--color-white);
  border-color: var(--color-red-hover);
  box-shadow: 0 6px 24px rgba(204,31,31,.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-blue);
  border-color: var(--color-blue);
}

.btn-outline:hover {
  background: var(--color-blue);
  color: var(--color-bg);
  box-shadow: 0 6px 24px var(--color-blue-glow);
}

.btn-tip {
  background: #28a745;
  color: #fff;
  border-color: #28a745;
  padding: 8px 18px;
  font-size: .78rem;
}

.btn-tip:hover {
  background: #218838;
  border-color: #218838;
  color: #fff;
  box-shadow: 0 6px 24px rgba(40,167,69,.4);
}

/* ---------- Feature / Quick-nav Cards (Home) ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-red);
  border-radius: var(--radius);
  padding: 32px 22px;
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-top-color .2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(26,143,255,.15);
  border-top-color: var(--color-blue);
}

.feature-icon { font-size: 2.4rem; margin-bottom: 16px; }

.feature-card h3 {
  font-size: 1rem;
  background: linear-gradient(135deg, var(--color-chrome-light), var(--color-chrome-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.feature-card p { color: var(--color-text-muted); font-size: .88rem; margin-bottom: 20px; }

/* ---------- Band Intro (Home) ---------- */
.intro-section {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.intro-text h2 {
  font-size: 1.9rem;
  background: linear-gradient(135deg, var(--color-chrome-light), var(--color-chrome-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.intro-text p { color: var(--color-text-muted); margin-bottom: 16px; line-height: 1.8; }

.intro-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.intro-photo {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

/* ---------- Shows Teaser (Home) ---------- */
.show-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.show-item:last-of-type { border-bottom: none; }

.show-date-badge {
  min-width: 68px;
  text-align: center;
  background: var(--color-red);
  border-radius: var(--radius);
  padding: 10px 8px;
  flex-shrink: 0;
}

.show-date-badge .month { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.8); display: block; }
.show-date-badge .day   { font-size: 1.6rem; font-weight: bold; color: #fff; display: block; line-height: 1; }

.show-info h4 { color: var(--color-white); font-size: 1rem; }
.show-info p  { color: var(--color-text-muted); font-size: .88rem; }

/* ---------- Calendar Page ---------- */
.calendar-table-wrap { overflow-x: auto; }

.calendar-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .93rem;
}

.calendar-table th {
  background: var(--color-surface-2);
  color: var(--color-chrome-mid);
  text-align: left;
  padding: 14px 18px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  border-bottom: 2px solid var(--color-red);
}

.calendar-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

.calendar-table tr:hover td { background: var(--color-surface); }

.calendar-table .date-cell { font-weight: 700; color: var(--color-blue); white-space: nowrap; }
.calendar-table .venue { font-weight: 600; color: var(--color-white); }
.calendar-table .venue-detail { font-size: .85rem; color: var(--color-text-muted); }

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.badge-upcoming  { background: rgba(204,31,31,.2);   color: #e83232; border: 1px solid #cc1f1f; }
.badge-today     { background: rgba(34,197,94,.2);   color: #22c55e; border: 1px solid #22c55e; }
.badge-private   { background: rgba(26,143,255,.15); color: var(--color-blue); border: 1px solid var(--color-blue); }
.badge-cancelled { background: rgba(80,80,80,.2);    color: #666;  border: 1px solid #444; }

.no-shows-msg {
  text-align: center;
  padding: 60px 20px;
  color: var(--color-text-muted);
  font-style: italic;
}

/* ---------- Bio Page ---------- */
.bios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.bio-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}

.bio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(26,143,255,.15);
}

.bio-photo-placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(160deg, #0a0a1a 0%, #141414 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: .85rem;
  border-bottom: 2px solid var(--color-red);
}

.bio-photo-placeholder .photo-icon { font-size: 3.5rem; margin-bottom: 10px; }

.bio-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  border-bottom: 2px solid var(--color-red);
}

.bio-card-body { padding: 28px; }

.bio-card-body h3 {
  font-size: 1.4rem;
  color: var(--color-white);
  margin-bottom: 4px;
}

.bio-role {
  color: var(--color-blue);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 16px;
  display: block;
}

.bio-card-body p {
  color: var(--color-text-muted);
  font-size: .93rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ---------- Music / Song List ---------- */
.youtube-cta-box {
  background: linear-gradient(135deg, #0a0a1a 0%, #141414 100%);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-red);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  box-shadow: 0 0 30px rgba(26,143,255,.08);
}

.youtube-cta-box .yt-icon { font-size: 3.5rem; flex-shrink: 0; }

.youtube-cta-box h3 {
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: 8px;
}

.youtube-cta-box p { color: var(--color-text-muted); font-size: .93rem; }

.song-list-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 7px 18px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-muted);
  font-size: .84rem;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}

.song-table-wrap { overflow-x: auto; }

.song-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .93rem;
}

.song-table th {
  background: var(--color-surface-2);
  color: var(--color-chrome-mid);
  text-align: left;
  padding: 12px 16px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  border-bottom: 2px solid var(--color-red);
}

.song-table td { padding: 13px 16px; border-bottom: 1px solid var(--color-border); }
.song-table tr:hover td { background: var(--color-surface); }
.song-table .song-title  { font-weight: 600; color: var(--color-white); }
.song-table .song-artist { color: var(--color-text-muted); }
.song-table .song-era    { font-size: .78rem; color: var(--color-blue); white-space: nowrap; }

/* ---------- Media Page ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}

.video-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(26,143,255,.18);
}

.video-embed-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}

.video-embed-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.video-placeholder {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #080814 0%, #111 100%);
  color: var(--color-text-muted);
  font-size: .88rem;
  text-align: center;
  padding: 20px;
}

.video-placeholder .play-icon { font-size: 3rem; margin-bottom: 12px; color: var(--color-red); }

.video-card-body { padding: 20px; }
.video-card-body h3 { font-size: 1rem; color: var(--color-white); margin-bottom: 6px; }
.video-card-body p  { font-size: .88rem; color: var(--color-text-muted); }

/* ---------- Downloads ---------- */
.downloads-section { background: var(--color-surface); }

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.download-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}

.download-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(204,31,31,.15);
}

.download-card .logo-preview {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 20px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}

.download-card .logo-preview img { width: 100%; height: auto; }

.download-card .logo-preview-placeholder {
  height: 120px;
  background: linear-gradient(135deg, #0a0a1a 0%, #141414 100%);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--color-text-muted);
}

.download-card h4 { color: var(--color-white); margin-bottom: 8px; font-size: 1rem; }
.download-card p  { color: var(--color-text-muted); font-size: .88rem; margin-bottom: 20px; }

/* ---------- Contact Strip ---------- */
.contact-strip {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.contact-strip h2 {
  font-size: 1.7rem;
  background: linear-gradient(135deg, var(--color-chrome-light), var(--color-chrome-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.contact-strip p { color: var(--color-text-muted); margin-bottom: 6px; }
.contact-strip a { color: var(--color-blue); font-weight: 600; }
.contact-strip a:hover { color: var(--color-red-hover); }

.contact-info-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 32px 0;
}

.contact-info-item { text-align: center; }
.contact-info-item .ci-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}
.contact-info-item .ci-value { color: var(--color-white); font-size: 1rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: #000;
  border-top: 2px solid var(--color-red);
  padding: 40px 0 24px;
  text-align: center;
}

.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(.85);
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--color-chrome-mid);
  letter-spacing: .08em;
}

.footer-logo-text span { color: var(--color-red); }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.footer-nav a {
  color: var(--color-text-muted);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-nav a:hover { color: var(--color-blue); }

.footer-copy { color: #555; font-size: .78rem; }

/* ---------- Page Banner (inner pages) ---------- */
.page-banner {
  background:
    radial-gradient(ellipse at center, rgba(26,143,255,.08) 0%, transparent 70%),
    #0a0a0a;
  border-bottom: 2px solid var(--color-red);
  padding: 60px 0 50px;
  text-align: center;
}

.page-banner h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  background: linear-gradient(135deg, var(--color-chrome-light), var(--color-chrome-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
}

.page-banner p { color: var(--color-text-muted); font-size: 1.05rem; font-style: italic; }

/* ---------- Glow Utility ---------- */
.glow-red  { text-shadow: 0 0 16px rgba(204,31,31,.5); }
.glow-blue { text-shadow: 0 0 16px rgba(26,143,255,.5); }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(0,0,0,.98);
    padding: 20px 24px;
    border-bottom: 2px solid var(--color-red);
    gap: 18px;
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .intro-grid { grid-template-columns: 1fr; }
  .intro-photo { height: 240px; }
  .youtube-cta-box { flex-direction: column; }
  .section { padding: 52px 0; }
}

@media (max-width: 480px) {
  .bios-grid   { grid-template-columns: 1fr; }
  .video-grid  { grid-template-columns: 1fr; }
  .hero-title-text { font-size: 2.2rem; }
}
