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

:root {
  --header-height: 72px;
  --header-height-mobile: 60px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
  background: #000;
  padding-top: var(--header-height);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

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

a:hover {
  color: var(--primary-dark);
}

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 72px;
}

.logo-link {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0;
}

.site-logo {
  height: 72px;
  width: auto;
  margin: 0;
  padding: 0;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links-mobile {
  display: none;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 0.5rem 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  transition: all 0.3s ease-in-out;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Menu Backdrop */
.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
  -webkit-tap-highlight-color: transparent;
}

.menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-links {
    display: none;
  }

  .nav-links-mobile {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    max-width: 85vw;
    background: rgba(26, 26, 46, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 0;
    gap: 0;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.3);
  }

  .nav-links-mobile.active {
    transform: translateX(0);
  }

  .nav-links-mobile li {
    margin: 0;
  }

  .nav-links-mobile a {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .nav-links-mobile a:hover,
  .nav-links-mobile a.active {
    color: white;
    background: rgba(255, 255, 255, 0.05);
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero {
    padding-bottom: 100%;
    aspect-ratio: 1 / 1;
  }
}

/* Hero */
.hero {
  width: 100%;
  padding-bottom: 56.25%;
  aspect-ratio: 16 / 9;
  background-image: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
  transition: background-size 0.15s ease, background-position 0.15s ease;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  text-align: center;
  z-index: 1;
  padding: 2rem;
}

.hero h1 {
  color: var(--hero-title-color, white);
  letter-spacing: 0.3vw;
  text-shadow: 0 0.3vw 2vw rgba(0, 0, 0, 0.3);
}

.hero-title {
  z-index: 1;
}

.hero-tagline {
  z-index: 1;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.1vw;
  line-height: 1.3;
}

.hero-buttons {
  z-index: 1;
}

.tagline {
  color: var(--hero-tagline-color, rgba(255, 255, 255, 0.8));
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, #000, transparent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  color: #fff;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

/* Page Header */
.page-header {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

/* Shows Grid */
.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.show-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #222;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.show-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.show-date {
  text-align: center;
  min-width: 60px;
}

.show-date .month {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
}

.show-date .day {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  color: #fff;
}

.show-info {
  flex: 1;
}

.show-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: #fff;
}

.show-info .venue {
  color: #aaa;
  font-size: 0.9rem;
}

.show-info .time {
  color: #888;
  font-size: 0.85rem;
}

/* Shows List */
.shows-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.show-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: #222;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.show-date-block {
  text-align: center;
  min-width: 80px;
}

.show-date-block .month {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
}

.show-date-block .day {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  color: #fff;
}

.show-date-block .year {
  display: block;
  font-size: 0.8rem;
  color: #888;
}

.show-details {
  flex: 1;
}

.show-details h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.show-details .venue {
  font-weight: 600;
  color: #ddd;
}

.show-details .address,
.show-details .time,
.show-details .price {
  color: #aaa;
  font-size: 0.9rem;
}

.show-details .description {
  margin-top: 0.5rem;
  color: #aaa;
}

.show-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.past-shows .show-item {
  opacity: 0.7;
}

.shows-list.compact .show-item {
  padding: 1rem 1.5rem;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.featured-content {
  padding-top: 0;
  margin-top: -2rem;
}

.featured-bios {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.featured-bios .content-card {
  max-width: 400px;
}

.content-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #1a1a2e;
}

.content-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.content-card:hover img {
  transform: scale(1.1);
}

.content-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
}

.content-type {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--primary);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-bottom: 0.5rem;
}

.content-overlay h3 {
  font-size: 1rem;
}

/* About Page Hero */
.about-hero {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: background-size 0.15s ease, background-position 0.15s ease;
}

.about-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: white;
}

/* Shows Page Hero */
.shows-hero {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: background-size 0.15s ease, background-position 0.15s ease;
}

.shows-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: white;
}

/* Press Page Hero */
.press-hero {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: background-size 0.15s ease, background-position 0.15s ease;
}

.press-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: white;
}

/* Bios */
.bios-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bio-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: var(--bio-bg, #222);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.bio-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-content {
  flex: 1;
}

.bio-content h2 {
  text-align: left;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--bio-heading, var(--primary));
}

.bio-content h2::after {
  display: none;
}

.bio-role {
  color: var(--bio-heading, var(--primary));
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.bio-text {
  color: var(--bio-text, #aaa);
  line-height: 1.6;
  font-size: 0.95rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

.bio-text p {
  margin-bottom: 1rem;
}

.bio-text p:last-child {
  margin-bottom: 0;
}

.bio-text strong {
  color: #fff;
  font-weight: 600;
}

.bio-text em {
  font-style: italic;
}

.bio-text a {
  color: var(--primary-color);
  text-decoration: none;
}

.bio-text a:hover {
  text-decoration: underline;
}

.bio-text ul, .bio-text ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.bio-text li {
  margin-bottom: 0.5rem;
}

.bio-text h1, .bio-text h2, .bio-text h3, .bio-text h4, .bio-text h5, .bio-text h6 {
  color: #fff;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.bio-text h1 { font-size: 1.5rem; }
.bio-text h2 { font-size: 1.3rem; }
.bio-text h3 { font-size: 1.1rem; }
.bio-text h4 { font-size: 1rem; }

.bio-text blockquote {
  border-left: 3px solid var(--primary-color);
  padding-left: 1rem;
  margin-left: 0;
  margin-bottom: 1rem;
  font-style: italic;
  color: #ccc;
}

.bio-text code {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-family: monospace;
  font-size: 0.9em;
}

.bio-text pre {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 5px;
  overflow-x: auto;
  margin-bottom: 1rem;
}

.bio-text pre code {
  background: none;
  padding: 0;
}

@media (max-width: 768px) {
  .bio-card {
    flex-direction: column;
    text-align: center;
  }

  .bio-image {
    width: 100px;
    height: 100px;
  }

  .bio-content h2 {
    text-align: center;
  }
}

/* Reviews */
.reviews-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
}

.reviews-section h2 {
  color: white;
}

.reviews-section h2::after {
  background: var(--primary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: hidden;
}

.review-card p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.review-content {
  font-size: 1.1rem;
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

.review-content p {
  margin-bottom: 1rem;
}

.review-content p:last-child {
  margin-bottom: 1rem;
}

.review-content strong {
  font-weight: 600;
}

.review-content em {
  font-style: italic;
}

.review-content a {
  color: var(--primary-light);
  text-decoration: none;
}

.review-content a:hover {
  text-decoration: underline;
}

.review-content ul, .review-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.review-content li {
  margin-bottom: 0.5rem;
}

.review-content h1, .review-content h2, .review-content h3, .review-content h4 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.review-content h1 { font-size: 1.3rem; }
.review-content h2 { font-size: 1.2rem; }
.review-content h3 { font-size: 1.1rem; }

.review-content blockquote {
  border-left: 2px solid var(--primary-light);
  padding-left: 1rem;
  margin-left: 0;
  margin-bottom: 1rem;
  font-style: italic;
}

.review-content code {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-family: monospace;
  font-size: 0.9em;
}

.review-content pre {
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: 5px;
  overflow-x: auto;
  margin-bottom: 1rem;
}

.review-content pre code {
  background: none;
  padding: 0;
}

.review-card cite {
  font-style: normal;
}

.review-card cite strong {
  display: block;
  color: var(--primary);
}

.review-card cite span {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Media Page */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.video-card {
  background: #222;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-embed {
  position: relative;
  padding-top: 56.25%;
  background: #000;
}

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

.video-thumbnail {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}

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

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

.video-thumbnail .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
  transition: background 0.3s, transform 0.3s;
}

.video-thumbnail .play-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent white;
}

.video-thumbnail:hover .play-button {
  background: rgba(255, 0, 0, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.vimeo-placeholder,
.video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.video-card h3 {
  padding: 1rem 1.5rem 0.5rem;
  font-size: 1.1rem;
  color: #fff;
}

.video-card p {
  padding: 0 1.5rem 1rem;
  color: #aaa;
  font-size: 0.9rem;
}

/* Audio Player */
.audio-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.audio-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #222;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.audio-info {
  flex: 1;
  min-width: 0;
}

.audio-info h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.audio-info p {
  color: #aaa;
  font-size: 0.9rem;
  margin: 0;
}

.audio-card audio {
  flex-shrink: 0;
  max-width: 350px;
  width: 100%;
  height: 40px;
}

/* Style the audio player for dark theme */
.audio-card audio::-webkit-media-controls-panel {
  background: #333;
}

@media (max-width: 600px) {
  .audio-card {
    flex-direction: column;
    align-items: stretch;
  }

  .audio-card audio {
    max-width: 100%;
  }
}

.photos-grid {
  column-count: 3;
  column-gap: 1rem;
}

@media (max-width: 900px) {
  .photos-grid {
    column-count: 2;
  }
}

@media (max-width: 500px) {
  .photos-grid {
    column-count: 1;
  }
}

.photo-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 1rem;
  break-inside: avoid;
}

.photo-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

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

.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  opacity: 0;
  transition: opacity 0.3s;
}

.photo-card:hover .photo-overlay {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}

/* Press Kit */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.press-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #222;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.press-icon {
  display: none;
}

.press-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--primary);
}

.press-info {
  flex: 1;
}

.press-info h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #fff;
}

.press-info p {
  font-size: 0.85rem;
  color: #aaa;
  margin-bottom: 0.25rem;
}

.file-size {
  font-size: 0.8rem;
  color: #888;
}

.press-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  background: #2a2a2a;
}

/* Contact Form */
.contact-container {
  max-width: 600px;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

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

.honeypot {
  position: absolute;
  left: -9999px;
}

/* Alerts */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.alert-success {
  background: #d4edda;
  color: #155724;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
  color: white;
}

.cta-section h2 {
  color: white;
}

.cta-section h2::after {
  background: white;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.cta-section .btn-primary {
  background: white;
  color: var(--primary);
}

.cta-section .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.contact-cta {
  background: #1a1a2e;
  color: white;
  text-align: center;
}

.contact-cta h2 {
  color: white;
}

.contact-cta h2::after {
  background: var(--primary);
}

.contact-cta p {
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 3rem;
  color: #aaa;
}

/* Error Page */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-page h1 {
  font-size: 8rem;
  color: var(--primary);
  line-height: 1;
}

.error-page p {
  font-size: 1.5rem;
  color: #666;
  margin: 1rem 0 2rem;
}

/* Footer */
.site-footer {
  background: #1a1a2e;
  color: white;
  padding: 3rem 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand .logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: white;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: white;
}

/* Responsive */
@media (max-width: 640px) {
  body {
    padding-top: var(--header-height-mobile);
  }

  .hero {
    padding-bottom: 75%;
    aspect-ratio: 4 / 3;
    min-height: 400px;
  }

  .about-hero {
    height: 300px;
  }

  .about-title {
    font-size: 2rem;
  }

  .shows-hero {
    height: 300px;
  }

  .shows-title {
    font-size: 2rem;
  }

  .press-hero {
    height: 300px;
  }

  .press-title {
    font-size: 2rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section h2 {
    font-size: 2rem;
  }

  .page-header {
    padding: 6rem 0 3rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .show-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .show-actions {
    width: 100%;
  }

  .show-actions .btn {
    flex: 1;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
