/* ===== BAYBORO LIVE — LIVE MUSIC VENUE ===== */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Libre Baskerville', 'Georgia', serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== HEADER ===== */
.site-header {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-logo-left img,
.header-logo-right img {
  height: 60px;
  width: auto;
}
.header-tagline {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-size: 1rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #ccc;
  text-align: center;
  flex: 1;
}

/* ===== NAVIGATION ===== */
.main-nav {
  background: #000;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}
.main-nav ul {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.main-nav li {
  position: relative;
  flex: 1;
  text-align: center;
}
.main-nav > ul > li > a {
  display: block;
  padding: 14px 10px;
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: color 0.2s;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
  color: #e04a32;
}
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; padding: 14px 20px; }

/* ===== HERO ===== */
.hero-full {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}
.hero-full::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.hero-full .hero-text {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px;
}
.hero-full h1 {
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 6px;
  margin-bottom: 16px;
}
.hero-full p {
  font-size: 1.1rem;
  color: #ddd;
  font-style: italic;
  margin-bottom: 30px;
}

/* Smaller hero variant */
.hero-sm {
  min-height: 300px;
}
.hero-sm h1 {
  font-size: 2.5rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: #e04a32;
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary:hover { background: #c73d28; }

.btn-outline {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 32px;
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s;
}
.btn-outline:hover { background: #fff; color: #000; }

/* ===== SECTION UTILITIES ===== */
.section-dark {
  background: #0a0a0a;
  padding: 60px 20px;
}
.section-default {
  padding: 60px 20px;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-align: center;
  margin-bottom: 40px;
}
.section-subtitle {
  text-align: center;
  color: #999;
  font-size: 0.95rem;
  margin-top: -30px;
  margin-bottom: 40px;
  font-style: italic;
}

/* ===== UPCOMING SHOWS PREVIEW (homepage) ===== */
.shows-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.show-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.show-card:hover { border-color: #e04a32; transform: translateY(-4px); }
.show-card-image {
  height: 180px;
  overflow: hidden;
}
.show-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.show-card-body {
  padding: 20px;
}
.show-card-date {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e04a32;
  margin-bottom: 6px;
}
.show-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.show-card-time {
  color: #6ba3a0;
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 12px;
}
.show-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

/* ===== PHOTO STRIP ===== */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.photo-strip img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* ===== VENUE DESCRIPTION ===== */
.venue-intro {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}
.venue-intro p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.9;
}

/* ===== NEWSLETTER ===== */
.newsletter-bar {
  background: #e04a32;
  padding: 30px 20px;
  text-align: center;
}
.newsletter-bar h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  font-size: 0.9rem;
  font-family: inherit;
}
.newsletter-form button {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: #222; }

/* ===== SOCIAL ICONS ===== */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.social-icons a:hover { opacity: 0.8; }
.social-icons .ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-icons .fb { background: #1877f2; }
.social-icons .yt { background: #ff0000; }
.social-icons svg { width: 22px; height: 22px; fill: #fff; }

/* ===== EVENTS PAGE ===== */
.events-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.events-toolbar {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  justify-content: center;
}
.view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 4px;
  color: #999;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.view-btn:hover { color: #fff; border-color: #555; }
.view-btn.active { background: #e04a32; color: #fff; border-color: #e04a32; }

.events-empty {
  background: #111;
  padding: 50px 40px;
  border-radius: 8px;
  text-align: center;
}
.events-empty h2 { font-size: 1.4rem; margin-bottom: 12px; }
.events-empty p { color: #999; }

/* Feed view */
.events-feed { display: flex; flex-direction: column; gap: 24px; }

.event-card {
  display: flex;
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.event-card:hover { border-color: #333; }

.event-card-image {
  width: 240px;
  min-height: 200px;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.event-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.event-card-image:hover img { transform: scale(1.05); }

.event-card-zoom {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s;
}
.event-card-image:hover .event-card-zoom { opacity: 1; }

.event-card-body { flex: 1; padding: 24px; display: flex; flex-direction: column; }
.event-card-meta { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 14px; }

.event-date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #e04a32;
  color: #fff;
  border-radius: 6px;
  padding: 8px 12px;
  min-width: 52px;
  flex-shrink: 0;
}
.event-date-badge strong { font-family: 'Oswald', sans-serif; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; }
.event-date-badge span { font-family: 'Oswald', sans-serif; font-size: 1.6rem; font-weight: 700; line-height: 1; }

.event-card-info h3 { font-size: 1.3rem; margin-bottom: 4px; }
.event-time { font-size: 0.9rem; color: #6ba3a0; font-style: italic; }
.event-description { color: #aaa; font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; flex: 1; }

.event-card-footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }

.event-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.event-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.event-badge-genre { background: rgba(107,163,160,0.2); color: #6ba3a0; }
.event-badge-price { background: rgba(224,74,50,0.2); color: #e04a32; }
.event-badge-age { background: rgba(255,255,255,0.1); color: #ccc; }

.eventbrite-btn {
  display: inline-block;
  background: #f6682f;
  color: #fff;
  padding: 10px 24px;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.eventbrite-btn:hover { background: #e05820; }

/* Calendar */
.events-calendar { background: #111; border: 1px solid #1e1e1e; border-radius: 8px; padding: 24px; }
.calendar-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.calendar-nav h2 { font-family: 'Oswald', sans-serif; font-size: 1.3rem; letter-spacing: 3px; text-transform: uppercase; }
.calendar-nav-btn {
  background: none;
  border: 1px solid #333;
  color: #999;
  padding: 8px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
}
.calendar-nav-btn:hover { border-color: #e04a32; color: #e04a32; }

.calendar-grid, .calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.calendar-header {
  text-align: center;
  padding: 10px 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
}
.calendar-day { position: relative; min-height: 60px; padding: 8px; background: #1a1a1a; border-radius: 4px; text-align: center; }
.calendar-day-empty { background: transparent; }
.calendar-day-num { font-family: 'Oswald', sans-serif; font-size: 0.95rem; color: #888; }
.calendar-day-today .calendar-day-num { color: #fff; font-weight: 700; }
.calendar-day-today { border: 1px solid #e04a32; }
.calendar-day-has-event { cursor: pointer; transition: background 0.2s; }
.calendar-day-has-event:hover { background: #222; }
.calendar-day-has-event .calendar-day-num { color: #fff; }
.calendar-day-selected { background: #e04a32 !important; }
.calendar-day-selected .calendar-day-num { color: #fff; }
.calendar-day-dot {
  display: block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  background: #e04a32;
  border-radius: 50%;
  margin: 4px auto 0;
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  color: #fff;
}
.calendar-events-panel { margin-top: 24px; padding-top: 24px; border-top: 1px solid #222; }
.calendar-events-panel h3 { font-family: 'Oswald', sans-serif; font-size: 1rem; letter-spacing: 2px; text-transform: uppercase; color: #999; margin-bottom: 16px; }
.calendar-event-card { display: flex; gap: 16px; padding: 16px; background: #1a1a1a; border-radius: 6px; margin-bottom: 12px; }
.cal-event-img { width: 100px; height: 80px; flex-shrink: 0; border-radius: 4px; overflow: hidden; cursor: pointer; }
.cal-event-img img { width: 100%; height: 100%; object-fit: cover; }
.cal-event-info h4 { font-size: 1.1rem; margin-bottom: 4px; }
.cal-event-time { color: #6ba3a0; font-size: 0.85rem; font-style: italic; margin-bottom: 8px; }
.cal-event-desc { color: #aaa; font-size: 0.85rem; line-height: 1.6; margin-bottom: 10px; }

/* ===== LIGHTBOX ===== */
.event-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
  cursor: pointer;
}
.event-lightbox.active { display: flex; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10001;
  line-height: 1;
}
.lightbox-close:hover { color: #e04a32; }
.event-lightbox img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: 4px; cursor: default; }
.lightbox-caption { color: #ccc; font-size: 1rem; margin-top: 16px; text-align: center; font-style: italic; cursor: default; }

/* ===== ABOUT PAGE ===== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.about-text p { color: #ccc; line-height: 1.8; margin-bottom: 16px; }
.about-image img { width: 100%; border-radius: 6px; }

.venue-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 8px;
  padding: 30px 16px;
}
.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #e04a32;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 4px;
}
.gallery-grid img:hover { transform: scale(1.02); opacity: 0.85; }

.video-section { margin-top: 40px; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #111;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== VISIT / FAQ ===== */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.visit-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 8px;
  padding: 30px;
}
.visit-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e04a32;
  margin-bottom: 16px;
}
.visit-card p, .visit-card li {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.8;
}
.visit-card ul {
  list-style: disc;
  padding-left: 18px;
}
.visit-card li { margin-bottom: 6px; }

/* FAQ Accordion */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #1e1e1e;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  padding: 20px 0;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: #e04a32; }
.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-answer p {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ===== ARTISTS PAGE ===== */
.specs-grid, .stage-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.spec-card {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}
.spec-card h3, .spec-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e04a32;
  margin-bottom: 12px;
}
.spec-card ul {
  text-align: left;
  list-style: disc;
  padding-left: 20px;
}
.spec-card ul li {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.8;
}
.spec-card p {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.7;
}
.provide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.provide-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid #222;
  border-radius: 8px;
  padding: 30px;
}
.provide-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e04a32;
  margin-bottom: 16px;
}
.provide-card ul {
  list-style: disc;
  padding-left: 20px;
}
.provide-card ul li {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.9;
}
.booking-form {
  max-width: 800px;
  margin: 0 auto;
}
.booking-callout {
  background: #111;
  border-left: 3px solid #e04a32;
  padding: 16px 20px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 0 4px 4px 0;
}
.booking-callout a {
  color: #e04a32;
  font-weight: bold;
}
.booking-callout a:hover { text-decoration: underline; }
.form-success {
  background: rgba(107, 163, 160, 0.15);
  border: 1px solid #6ba3a0;
  color: #6ba3a0;
  padding: 16px 20px;
  border-radius: 4px;
  margin-bottom: 24px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.full-width { grid-column: 1 / -1; }

/* ===== FORMS ===== */
.form-section {
  background: #0a0a0a;
  border: 1px solid #1e1e1e;
  border-radius: 8px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
}
.form-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  background: #151515;
  border: 1px solid #333;
  border-radius: 4px;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: #e04a32; }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 0.8rem; color: #666; margin-top: 4px; }

/* ===== CENTERED TEXT ===== */
.centered-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px;
}
.centered-text h1 { font-size: 2.4rem; margin-bottom: 20px; }
.centered-text p { font-size: 1rem; color: #ccc; line-height: 1.8; }

/* ===== CONTACT INFO BAR ===== */
.contact-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.contact-bar-item, .contact-item {
  text-align: center;
}
.contact-bar-item h4, .contact-item h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e04a32;
  margin-bottom: 6px;
}
.contact-bar-item p, .contact-item p {
  color: #ccc;
  font-size: 0.9rem;
}
.contact-item a {
  color: #e04a32;
  transition: color 0.2s;
}
.contact-item a:hover { color: #fff; }

/* ===== FOOTER ===== */
.site-footer {
  background: #000;
  border-top: 1px solid #1a1a1a;
  text-align: center;
  padding: 40px 20px 24px;
}
.footer-content {
  max-width: 600px;
  margin: 0 auto;
}
.footer-info { margin-bottom: 16px; font-size: 0.85rem; color: #999; line-height: 1.8; }
.footer-social { margin-bottom: 16px; }
.footer-links { font-size: 0.85rem; color: #666; margin-bottom: 16px; }
.footer-links a { color: #888; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 0.8rem; color: #555; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .site-header {
    flex-wrap: wrap;
    padding: 10px 15px 8px;
    gap: 0;
  }
  .header-logo-left { order: 1; }
  .header-logo-right { order: 2; margin-left: auto; }
  .header-logo-left img,
  .header-logo-right img {
    height: 36px;
    width: auto;
  }
  .header-tagline {
    order: 3;
    flex: none;
    width: 100%;
    font-size: 0.55rem;
    letter-spacing: 2px;
    margin: 6px 0 0;
    padding-top: 6px;
    border-top: 1px solid #222;
  }
  .main-nav > ul { display: none; flex-direction: column; }
  .main-nav > ul.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-full h1 { font-size: 2rem; letter-spacing: 3px; }
  .hero-full { min-height: 350px; }
  .shows-preview { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip img { height: 200px; }
  .about-split { grid-template-columns: 1fr; }
  .venue-stats { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img { height: 180px; }
  .video-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .stage-specs, .specs-grid { grid-template-columns: 1fr; }
  .provide-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .event-card { flex-direction: column; }
  .event-card-image { width: 100%; min-height: 200px; max-height: 250px; }
  .calendar-day { min-height: 44px; padding: 4px; }
  .calendar-event-card { flex-direction: column; }
  .cal-event-img { width: 100%; height: 150px; }
  .contact-bar { gap: 20px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input, .newsletter-form button { width: 100%; }
}
