/* ============================================================
   The Time Bandits - Main Stylesheet
   Navy & Gold theme
   ============================================================ */


:root {
  --primary-color: #0c1a35;
  --secondary-color: #c9a227;
  --accent-color: #1a8fb0;
  --text-color: #f0f0f0;
  --text-light: #a8b4c8;
  --bg-dark: #070f1e;
  --bg-main: #0c1a35;
  --bg-light: #102040;
  --bg-card: #0d1e38;
  --border-color: #1c2f50;
  --success-color: #4caf50;
  --error-color: #e53935;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --teal: #1a8fb0;
  --font-heading: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  --font-elegant: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-color);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

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

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 56px 0; }
.section-title {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 16px;
  text-align: center;
}
.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 48px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 300;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

header {
  background: rgba(7, 15, 30, 0.97);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.site-logo .logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  line-height: 1;
  margin-top: 2px;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav ul li { position: relative; }

nav ul li a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-color);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  display: block;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
}

/* Dropdown */
nav ul li.has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7rem;
}

nav ul li .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  min-width: 160px;
  padding: 8px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  z-index: 200;
}

nav ul li:hover .dropdown { display: block; }

nav ul li .dropdown a {
  padding: 10px 18px;
  font-size: 0.8rem;
  border-radius: 0;
  white-space: nowrap;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-color);
  border-radius: 2px;
  transition: all 0.3s;
}

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

.mobile-nav {
  display: none;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  padding: 16px 0;
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-color);
  padding: 12px 24px;
  border-bottom: 1px solid var(--border-color);
  transition: color 0.2s, background 0.2s;
}

.mobile-nav a:last-child { border-bottom: none; }

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
}

.mobile-nav .mobile-dropdown-items a {
  padding-left: 40px;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ============================================================
   HERO SECTION (Homepage) — Full-width photo + logo overlay
   ============================================================ */

.hero-with-image {
  position: relative;
  display: block;
  width: 100%;
  background: var(--bg-dark);
  line-height: 0; /* collapse inline spacing around img */
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-logo {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
  width: 55%;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.7));
}

/* CTA bar below hero */
.hero-cta-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--bg-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--text-color);
  border-color: var(--text-color);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-color);
}

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

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

.btn-danger {
  background: var(--error-color);
  color: white;
  border-color: var(--error-color);
}

.btn-danger:hover {
  background: #c62828;
  border-color: #c62828;
}

.btn-sm {
  font-size: 0.75rem;
  padding: 8px 16px;
}

/* ============================================================
   SECTION DIVIDER
   ============================================================ */

.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0;
  opacity: 0.4;
}

/* ============================================================
   HOME - NEXT GIG SECTION
   ============================================================ */

.next-gig-section {
  background: var(--bg-card);
  border-top: 3px solid var(--gold);
  padding: 32px 0;
}

.next-gig-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.next-gig-flyer {
  width: 100%;
  height: auto;
  display: block;
}

.next-gig-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 24px 28px;
  flex: 1;
}

.next-gig-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.next-gig-date-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  margin-bottom: 4px;
}

.next-gig-month {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.next-gig-day {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1;
}

.next-gig-year {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}

.next-gig-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 6px 0;
}

.next-gig-venue {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-color);
  line-height: 1.2;
}

.next-gig-location {
  color: var(--text-light);
  font-size: 0.9rem;
}

.next-gig-time {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
}

.next-gig-desc {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.5;
}

.next-gig-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  align-items: flex-start;
}

.next-gig-date-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px 28px;
  min-width: 200px;
}

.next-gig-date-badge .month {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.next-gig-date-badge .day {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1;
}

.next-gig-details { flex: 1; }

.next-gig-details .venue-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 4px;
}

.next-gig-details .venue-location {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.next-gig-details .gig-time {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
}

/* ============================================================
   HOME - ABOUT SECTION
   ============================================================ */

.about-section {
  background: var(--bg-main);
  padding-bottom: 28px;
}

.about-grid {
  display: grid;
  grid-template-columns: 7fr 2fr;
  gap: 48px;
  align-items: start;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-text {
  text-align: center;
}

.about-text h2 {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.about-text .tagline {
  font-family: var(--font-elegant);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: left;
}

.about-heading-row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 0;
  justify-content: center;
}

.about-heading-row h2 { margin-bottom: 0; }

.about-stats-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 20px;
  margin-left: 16px;
  border-left: 2px solid var(--gold);
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--text-light);
  flex-wrap: wrap;
}

.about-stats-inline strong {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 600;
  margin-right: 2px;
}

.about-stats-inline > span:not(.stat-sep) {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.stat-sep {
  color: var(--border-color);
  font-size: 1rem;
}

.stat { text-align: center; }

.stat .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.stat .label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-next-gig {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease;
}

.about-image:hover img {
  transform: scale(1.04);
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold);
  border-radius: 8px;
  z-index: 1;
  opacity: 0.3;
  pointer-events: none;
}

/* ============================================================
   HOME - SPLIT PROMO (We Do It All / We Bring the Party)
   ============================================================ */

.split-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.split-promo-col {
  display: flex;
  flex-direction: column;
}

.split-promo-photo {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.split-promo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.split-promo-col:hover .split-promo-photo img {
  transform: scale(1.04);
}

.split-promo-body {
  padding: 28px 36px;
  background: var(--bg-card);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.split-promo-col:last-child .split-promo-body {
  background: var(--bg-dark);
}

.split-promo-body h2 {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 24px;
}

.split-genres {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.8;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 16px;
  flex: 1;
}

.split-genres em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.split-tagline {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.split-lead {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-color);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.split-promo-body > p:not(.split-lead):not(.split-tagline):not(.split-genres) {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-light);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

@media (max-width: 768px) {
  .split-promo { grid-template-columns: 1fr; }
  .split-promo-body { padding: 24px 20px; }
}

/* ============================================================
   HOME - TESTIMONIAL
   ============================================================ */

.testimonial-section {
  background: var(--bg-main);
  padding: 48px 0;
}

.testimonial-pullquote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 40px;
}

.testimonial-pullquote::before {
  content: '\201C';
  font-family: var(--font-elegant);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: -30px;
  left: 0;
  line-height: 1;
}

.testimonial-pullquote blockquote {
  font-family: var(--font-elegant);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-pullquote cite {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   HOME - MEDIA PREVIEW
   ============================================================ */

.media-preview-section {
  background: var(--bg-card);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.media-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg-dark);
  cursor: pointer;
}

.media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.media-item:hover img { transform: scale(1.05); }

.media-item .media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,15,30,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.media-item:hover .media-overlay { opacity: 1; }

.play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
  font-size: 1.2rem;
}

/* ============================================================
   GIGS PAGE
   ============================================================ */

.page-hero {
  background: linear-gradient(to bottom, var(--bg-card), var(--bg-main));
  padding: 36px 0 28px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--gold);
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.gigs-section { background: var(--bg-main); padding-top: 40px; }

/* ---- Gig modal venue map ---- */
.gig-detail-map-wrap {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

#gig-detail-map {
  width: 100%;
  height: 220px;
}




.gigs-heading {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.gig-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.gig-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.gig-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.gig-card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-dark);
}

.gig-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.gig-card:hover .gig-card-img { transform: scale(1.04); }

.gig-card-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #162540 60%, #1a2e4a 100%);
}

.gig-date-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--bg-dark);
  border-radius: 6px;
  padding: 6px 10px;
  text-align: center;
  min-width: 44px;
  line-height: 1;
}

.gig-date-badge .month {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  display: block;
  text-transform: uppercase;
}

.gig-date-badge .day {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  display: block;
}

.gig-card-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gig-card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
}

.gig-info { flex: 1; }

.gig-venue-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 4px;
  line-height: 1.3;
}

.gig-location {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.gig-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.gig-time {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.gig-type {
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gig-type.all-ages   { background: rgba(26,143,176,0.2);  color: var(--teal);       border: 1px solid var(--teal); }
.gig-type.no-minors  { background: rgba(201,162,39,0.2);  color: var(--gold);       border: 1px solid var(--gold); }
.gig-type.private    { background: rgba(240,240,240,0.1); color: var(--text-light); border: 1px solid var(--border-color); }
.gig-type.public     { background: rgba(201,162,39,0.15); color: var(--gold);       border: 1px solid rgba(201,162,39,0.4); }
.gig-type.fundraiser { background: rgba(156,39,176,0.15); color: #ce93d8;           border: 1px solid rgba(156,39,176,0.4); }
.gig-type.outdoor    { background: rgba(76,175,80,0.15);  color: #81c784;           border: 1px solid rgba(76,175,80,0.4); }
.gig-type.live       { background: rgba(26,143,176,0.2);  color: var(--teal);       border: 1px solid var(--teal); }

.gig-description {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 8px;
  font-style: italic;
  flex: 1;
}

.gig-card-footer { margin-top: 16px; }

.gig-detail-box { max-width: 560px; }

.gig-detail-flyer-img {
  width: 100%;
  display: block;
  border-radius: 10px 10px 0 0;
  cursor: zoom-in;
}

.gig-detail-location {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 2px;
}

.gig-detail-date-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.gig-detail-full-date {
  font-weight: 600;
  color: var(--text-color);
}

.gig-detail-time {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
}

.gig-detail-desc {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.gig-detail-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.gig-detail-qr-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}
.gig-detail-qr-img {
  width: 180px;
  height: 180px;
  border-radius: 6px;
  background: #fff;
  padding: 4px;
  flex-shrink: 0;
}
.gig-detail-qr-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-light);
}
.gig-detail-qr-download-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.8rem;
}
.gig-detail-qr-download-link:hover { text-decoration: underline; }

.badge-upcoming {
  font-size: 0.7rem;
  background: rgba(76,175,80,0.15);
  color: #4caf50;
  border: 1px solid rgba(76,175,80,0.4);
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-past {
  font-size: 0.7rem;
  background: rgba(255,255,255,0.05);
  color: var(--text-light);
  border: 1px solid var(--border-color);
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticket-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 12px;
  border-radius: 12px;
  transition: all 0.2s;
}

.ticket-link:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

.no-gigs {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-light);
}

.no-gigs p {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

/* ============================================================
   BAND PAGE
   ============================================================ */

.band-hero {
  width: 100%;
  margin-bottom: 64px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.band-hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s;
  cursor: zoom-in;
}

.band-hero-image:hover { transform: scale(1.02); }

.band-intro {
  max-width: 800px;
  margin: 0 auto 64px;
  text-align: center;
}

.band-intro p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.band-members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.band-member-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.band-member-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}

.band-member-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top center;
  cursor: zoom-in;
  transition: transform 0.3s;
}

.band-member-card:hover .band-member-photo { transform: scale(1.04); }

.band-member-photo-placeholder {
  width: 100%;
  height: 300px;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--border-color);
}

.band-member-info {
  padding: 20px;
}

.band-member-info h3 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.band-member-info .instrument {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-body);
  font-weight: 700;
}

.band-member-info .bio {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 10px;
  line-height: 1.6;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.founding-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 2px 8px;
  border-radius: 10px;
  margin-top: 8px;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */

.gallery-grid {
  columns: 3;
  column-gap: 12px;
}

@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 480px) { .gallery-grid { columns: 1; } }

.gallery-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-dark);
  cursor: zoom-in;
  break-inside: avoid;
  margin-bottom: 12px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(7,15,30,0.9));
  color: var(--text-color);
  font-size: 0.8rem;
  padding: 20px 12px 10px;
  opacity: 0;
  transition: opacity 0.3s;
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
}

.gallery-item:hover .gallery-caption { opacity: 1; }

/* ============================================================
   VIDEOS PAGE
   ============================================================ */

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 640px) {
  .videos-grid { grid-template-columns: 1fr; }
}

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}

.video-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.video-card:hover .video-thumbnail img { transform: scale(1.05); }

.video-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,15,30,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.video-card:hover .video-play-overlay { background: rgba(7,15,30,0.3); }

.video-play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--bg-dark);
  box-shadow: 0 4px 16px rgba(201,162,39,0.4);
  transition: transform 0.2s;
}

.video-card:hover .video-play-icon { transform: scale(1.1); }

.video-info {
  padding: 16px;
}

.video-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 6px;
}

.video-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* ============================================================
   SAMPLES PAGE
   ============================================================ */

.samples-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sample-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: border-color 0.2s;
}

.sample-card:hover { border-color: var(--gold); }

.sample-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,162,39,0.1);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
}

.sample-info { flex: 1; }

.sample-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 4px;
}

.sample-artist {
  font-size: 0.85rem;
  color: var(--text-light);
}

audio { width: 100%; max-width: 400px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-container {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.contact-form-column {
  flex: 1;
}

.contact-info-column {
  width: 340px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.contact-band-photo {
  width: 100%;
  height: auto;
  display: block;
}

.contact-info-body { padding: 24px; }

.contact-detail {
  margin-bottom: 24px;
}

.contact-detail h4 {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}

.contact-detail p,
.contact-detail a {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-color);
  text-transform: none;
  letter-spacing: 0;
}

.contact-social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.contact-social-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  transition: color 0.2s;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
}

.contact-social-links a:last-child { border-bottom: none; }
.contact-social-links a:hover { color: var(--gold); }

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--text-color);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.form-group select option { background: var(--bg-card); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-honeypot { display: none !important; }

/* ============================================================
   CLIENT LIST PAGE
   ============================================================ */

.client-reviews {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

@media (max-width: 640px) {
  .client-reviews { grid-template-columns: 1fr; }
}

.client-review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.7;
  text-transform: none;
  letter-spacing: 0;
  flex: 1;
  font-style: italic;
}

.review-toggle {
  background: none;
  border: none;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  align-self: flex-start;
}

.review-toggle:hover { color: var(--gold-light); }

.review-byline {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 4px;
}

.review-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--text-color);
}

.review-date {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: none;
  letter-spacing: 0;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
}

.client-logo-card {
  background: #fff;
  border-radius: 6px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
}

.client-logo-card img {
  max-height: 64px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.client-intro {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

.clients-by-category {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 40px 48px;
}

.client-category-heading {
  font-size: 0.7rem;
  font-family: var(--font-heading);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

.client-name-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.client-name-list li {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-light);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  text-transform: none;
  letter-spacing: 0;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.active { display: flex; }

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 1;
  padding: 8px;
}

.lightbox-close:hover { color: var(--gold); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s, color 0.2s;
  user-select: none;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--gold); color: var(--bg-dark); border-color: var(--gold); }

@media (max-width: 600px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1.7rem; }
}

.lightbox-img {
  max-width: 92vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-caption {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  margin-top: 16px;
}

.lightbox-video {
  width: min(900px, 92vw);
  aspect-ratio: 16/9;
}

.lightbox-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 4px;
}

/* ============================================================
   ALERTS
   ============================================================ */

.alert {
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: none;
}

.alert.show { display: block; }

.alert-success {
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.4);
  color: #81c784;
}

.alert-error {
  background: rgba(229,57,53,0.1);
  border: 1px solid rgba(229,57,53,0.4);
  color: #ef9a9a;
}

/* ============================================================
   LOADING SPINNER
   ============================================================ */

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  color: var(--text-light);
  gap: 12px;
}

.spinner {
  width: 24px;
  height: 24px;
  border: 2px solid var(--border-color);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   ADMIN PAGES
   ============================================================ */

.admin-header {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-color);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.admin-logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.admin-logo span {
  color: var(--text-light);
  font-size: 0.75rem;
  margin-left: 8px;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
}

.admin-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
}

.stat-card .stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card .stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
}

.tab-nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 24px;
}

.tab-btn {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  background: none;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.admin-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-section-heading {
  font-size: 1rem;
  font-family: var(--font-heading);
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

.data-table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  background: var(--bg-dark);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.data-table td {
  padding: 8px 16px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-color);
  vertical-align: middle;
}

.data-table tr:last-child td { border-bottom: none; }

.data-table tr:hover td { background: rgba(255,255,255,0.02); }

.table-actions { display: flex; gap: 6px; white-space: nowrap; }

.data-table td:last-child { width: 1%; white-space: nowrap; }

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active { display: flex; }

.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.7);
}

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: var(--bg-card);
  z-index: 1;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

.modal-close:hover { color: var(--text-color); }

.modal-body { padding: 24px; }

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* Drop zone */
.drop-zone {
  border: 2px dashed var(--border-color);
  border-radius: 8px;
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.drop-zone:hover,
.drop-zone.drag-over {
  border-color: var(--gold);
  background: rgba(201,162,39,0.05);
}

.drop-zone-text {
  font-size: 0.85rem;
  color: var(--text-light);
  pointer-events: none;
}

.drop-zone-text strong { color: var(--gold); }

.flyer-preview { margin-top: 12px; }

.flyer-thumbnail {
  max-width: 150px;
  max-height: 150px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 12px 16px;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] { width: 16px; height: 16px; cursor: pointer; accent-color: var(--gold); }

.checkbox-group label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-color);
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}

/* Admin Login */
.login-page {
  min-height: 100vh;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 48px 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}

.login-logo {
  text-align: center;
  margin-bottom: 32px;
}

.login-logo h1 {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.login-logo p {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: var(--font-body);
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-color);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-dark);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--text-light);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--text-color); }

.footer-col .footer-contact-item {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.footer-col .footer-contact-item a {
  color: var(--text-light);
}

.footer-col .footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============================================================
   ERROR PAGES
   ============================================================ */

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.error-code {
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.5;
}

.error-page h1 {
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 16px;
}

.error-page p {
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  nav { display: none; }
  .hamburger { display: flex; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-next-gig { order: 1; }
  .band-members-grid { grid-template-columns: repeat(2, 1fr); }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-logo { max-width: 280px; width: 40%; }
}

@media (max-width: 768px) {
  .about-heading-row { flex-direction: column; align-items: center; gap: 10px; }
  .about-stats-inline { border-left: none; margin-left: 0; padding-left: 0; justify-content: center; gap: 8px; }
  .about-stats-inline strong { font-size: 1.5rem; }
  .about-stats-inline { font-size: 0.9rem; }
  .section { padding: 40px 0; }
  .hero-logo { max-width: 220px; width: 45%; bottom: 3%; top: auto; }
  .hero-actions { flex-direction: column; align-items: center; }
  .contact-container { flex-direction: column; }
  .contact-info-column { width: 100%; position: static; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .gig-cards-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .next-gig-inner { flex-direction: column; }
  .data-table th:nth-child(3),
  .data-table td:nth-child(3) { display: none; }
}

@media (max-width: 480px) {
  .band-members-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 20px; }
  .hero-logo { max-width: 160px; width: 35%; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── News / Blog ──────────────────────────────────────────────────────────── */
.news-section { padding: 60px 0; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.news-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  border-color: var(--gold);
}

.news-card-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-dark);
}
.news-card-img-placeholder {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1c2f50 100%);
}

.news-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.news-card-date   { font-size: 0.78rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; }
.news-card-title  { font-family: var(--font-heading); font-size: 1.15rem; color: var(--text-color); margin: 0; line-height: 1.3; }
.news-card-excerpt{
  font-size: 0.875rem; color: var(--text-light); line-height: 1.6; margin: 0; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.news-read-more   { font-size: 0.8rem; color: var(--gold); margin-top: 4px; }

/* Single post */
.news-post-page   { padding: 40px 0 80px; }
.news-back-link   { display: inline-block; color: var(--text-light); font-size: 0.875rem; margin-bottom: 28px; text-decoration: none; transition: color 0.2s; }
.news-back-link:hover { color: var(--gold); }

.news-post-hero {
  width: 100%;
  height: 360px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin-bottom: 36px;
}

.news-post-article { max-width: 740px; }
.news-post-meta  { font-size: 0.8rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.news-post-title { font-family: var(--font-heading); font-size: 2rem; color: var(--text-color); margin: 0 0 28px; line-height: 1.25; }
.news-post-body  { color: var(--text-light); line-height: 1.8; font-size: 1rem; }
.news-post-body p { margin: 0 0 1.2em; }
.news-post-body h2, .news-post-body h3 { color: var(--text-color); font-family: var(--font-heading); margin: 1.5em 0 0.5em; }
.news-post-body a { color: var(--gold); text-decoration: underline; }
.news-post-body img { max-width: 100%; border-radius: 6px; margin: 16px 0; }
.news-post-body ul, .news-post-body ol { padding-left: 1.5em; margin-bottom: 1.2em; }

/* News post modal */
#news-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7,15,30,0.88);
  z-index: 1100;
  overflow-y: auto;
  padding: 40px 16px 60px;
}
#news-modal-overlay.open { display: block; }

#news-modal {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  max-width: 780px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  animation: modalIn 0.22s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

#news-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(0,0,0,0.45);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.15s;
}
#news-modal-close:hover { background: rgba(201,162,39,0.6); }

.news-modal-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}
#news-modal .news-post-article { padding: 28px 32px 36px; max-width: none; }

@media (max-width: 600px) {
  #news-modal-overlay { padding: 20px 8px 40px; }
  #news-modal .news-post-article { padding: 20px 18px 28px; }
}

/* Admin post list */
.post-status-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.post-status-badge.published { background: rgba(76,175,80,.15); color: #4caf50; border: 1px solid rgba(76,175,80,.3); }
.post-status-badge.draft     { background: rgba(255,193,7,.12);  color: #ffc107; border: 1px solid rgba(255,193,7,.25); }

/* Quill editor dark theme overrides */
#post-body-editor .ql-editor {
  min-height: 220px;
  background: #111d30;
  color: #e8e0cc;
  font-size: 0.95rem;
  line-height: 1.7;
  border: none;
}
#post-body-editor .ql-editor.ql-blank::before {
  color: #556070;
  font-style: normal;
}
.ql-toolbar.ql-snow {
  background: #0d1e38;
  border-color: #1c2f50 !important;
  border-radius: 6px 6px 0 0;
}
.ql-container.ql-snow {
  border-color: #1c2f50 !important;
  border-radius: 0 0 6px 6px;
}
.ql-snow .ql-stroke { stroke: #8899aa; }
.ql-snow .ql-fill  { fill:   #8899aa; }
.ql-snow .ql-picker-label { color: #8899aa; }
.ql-snow .ql-picker-options {
  background: #0d1e38;
  border-color: #1c2f50;
  color: #e8e0cc;
}
.ql-toolbar.ql-snow .ql-picker-item:hover,
.ql-toolbar.ql-snow button:hover .ql-stroke,
.ql-toolbar.ql-snow button.ql-active .ql-stroke { stroke: #c9a227; }
.ql-toolbar.ql-snow button:hover .ql-fill,
.ql-toolbar.ql-snow button.ql-active .ql-fill   { fill:   #c9a227; }
.ql-toolbar.ql-snow .ql-picker-label:hover,
.ql-toolbar.ql-snow .ql-picker-label.ql-active  { color:  #c9a227; }
.ql-snow a { color: #c9a227; }

/* Toast notifications */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  background: #0d1e38;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--gold);
  color: var(--text-light);
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: auto;
  max-width: 320px;
}
.toast.toast-show {
  opacity: 1;
  transform: translateY(0);
}
.toast.toast-success { border-left-color: #4caf50; }
.toast.toast-error   { border-left-color: #f44336; }
