/* Custom overrides for hero carousel backgrounds and YouTube videos */
/* Cache bust: 2025-12-18 v10 - Fix Vimeo video fullscreen on mobile (300% scale) */

/* Hero text readability - text shadow for contrast over video backgrounds */
.hero-marquee__title {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6),
               0 4px 16px rgba(0, 0, 0, 0.4);
}

.hero-marquee__excerpt {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5),
               0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-marquee__badge,
.hero-marquee__meta-label,
.hero-marquee__meta-value {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Hero meta responsive display - full list on desktop, truncated on mobile */
.hero-marquee__meta-value .meta-truncated {
  display: none;
}

@media (max-width: 767px) {
  .hero-marquee__meta-value .meta-full {
    display: none;
  }
  .hero-marquee__meta-value .meta-truncated {
    display: inline;
  }
}

/* Directional scrim - for ALL hero marquee items (video and still) */
/* Darker on left (text area), top (header), and bottom */
.hero-marquee::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: 
    linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 10%, transparent 25%),
    linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.4) 55%, rgba(0, 0, 0, 0.15) 75%, transparent 90%),
    linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 15%, transparent 35%) !important;
  pointer-events: none !important;
  z-index: 3 !important;
}

/* Media placeholder for lazy-loaded videos */
.hero-marquee__media-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Fade-in animation for videos */
@keyframes videoFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-marquee__video--fade-in {
  animation: videoFadeIn 0.8s ease-out forwards;
}

/* Poster image for LCP - covers placeholder, fades out when video ready */
.hero-marquee__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: opacity 0.5s ease-out;
}

.hero-marquee__poster--hidden {
  opacity: 0;
  pointer-events: none;
}

/* Video elements inside placeholder must fill it completely */
.hero-marquee__media-placeholder > video,
.hero-marquee__media-placeholder > .hero-marquee__video,
.hero-marquee__media-placeholder > .hero-marquee__video--self-hosted {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 177.78vh !important;
  height: 100vh !important;
  min-width: 100% !important;
  min-height: 56.25vw !important;
  object-fit: cover !important;
}

/* Ensure hero marquee always has a visible background, even when videos are loading */
.hero-marquee {
  background-color: #111 !important;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Safari fix - background-attachment: fixed causes zoom issues on iOS/mobile Safari */
@media (max-width: 1024px) {
  .hero-marquee {
    background-attachment: scroll !important;
  }
}

/* YouTube wrapper - ensure it doesn't show white while loading */
.hero-marquee__youtube-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: transparent;
  overflow: hidden;
}

/* YouTube player div - ensure background is visible behind it */
.hero-marquee__video--youtube {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: transparent;
}

/* YouTube overlay - ensure it blocks white flashes */
.hero-marquee__youtube-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: transparent;
  pointer-events: none;
}

/* Ensure iframes don't show white background */
.hero-marquee__youtube-wrapper iframe {
  background-color: transparent !important;
}

/* Ensure video elements don't block the background */
.hero-marquee__video {
  mix-blend-mode: normal;
}

/* Ensure background stays visible on carousel slides */
.hero-carousel__slide .hero-marquee {
  background-color: #111 !important;
}

/* Prevent white flash when carousel transitions */
.hero-carousel__slide {
  background-color: #111;
}

/* Ensure inactive slides still have their backgrounds */
.hero-carousel__slide:not(.hero-carousel__slide--active) .hero-marquee {
  background-color: #111 !important;
}

/* Archive Hero Sections - Match Homepage Structure */

/* Make archive hero sections 2/3 page height (66vh) */
.hero-marquee--archive {
	height: 66vh !important;
	min-height: 66vh !important;
	max-height: 66vh !important;
	position: relative;
	overflow: hidden;
}

/* Ensure hero-marquee container and content are left-aligned like homepage */
.hero-marquee--archive .hero-marquee__container {
	max-width: 1440px;
	margin: 0 auto;
	padding-left: 48px;
	padding-right: 48px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	height: 100%;
	position: relative;
	z-index: 10;
}

.hero-marquee--archive .hero-marquee__content {
	text-align: left !important;
	width: 100%;
}

.hero-marquee--archive .hero-marquee__title {
	text-align: left !important;
	margin-left: 0 !important;
	margin-right: auto !important;
}

.hero-marquee--archive .hero-marquee__excerpt {
	text-align: left !important;
	margin-left: 0 !important;
	margin-right: auto !important;
}

/* Remove scroll indicators from all hero sections */
.page-hero__scroll-indicator,
.hero-marquee__scroll-indicator,
.hero-carousel__scroll-indicator {
	display: none !important;
}

/* Ensure media carousel works for archive heroes */
.hero-marquee--archive .hero-marquee__media-carousel {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-marquee--archive .hero-marquee__media-item {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.hero-marquee--archive .hero-marquee__media-item--active {
	opacity: 1;
	z-index: 2;
}

.hero-marquee--archive .hero-marquee__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

/* Ensure video background doesn't interfere */
.hero-marquee--archive .hero-marquee__video--self-hosted {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

/* Social Proof Bar Styles */
.social-proof-bar {
	background-color: #111 !important;
	color: #fff !important;
	padding: 1.25rem var(--layout-gutter, 48px) !important;
	text-align: center;
	font-family: var(--font-body, 'Inter', sans-serif);
	font-size: 1rem;
	line-height: 1.2;
	overflow: hidden;
	width: 100%;
	position: relative;
}

.social-proof-bar__container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	max-width: 1440px;
	margin: 0 auto;
}

.social-proof-bar__content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.social-proof-bar__stat {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	white-space: nowrap;
}

.social-proof-bar__label {
	font-weight: 500;
	opacity: 0.8;
	font-size: 0.9375rem;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.social-proof-bar__value {
	font-weight: 700;
	font-size: 1.25rem;
	color: #fff;
	display: inline-block;
	min-width: 40px;
	text-align: left;
}

.social-proof-bar__separator {
	opacity: 0.5;
	color: rgba(255, 255, 255, 0.6);
	font-size: 1.125rem;
}

@media (max-width: 768px) {
	.social-proof-bar__container,
	.social-proof-bar__content {
		flex-direction: column;
		gap: 0.5rem;
	}
	
	.social-proof-bar__separator {
		display: none;
	}
}

/* United Airlines Logo - Make it bigger */
.site-footer__partner-logo {
	height: 4rem !important;
	width: auto !important;
	max-width: none !important;
}

@media (max-width: 768px) {
	.site-footer__partner-logo {
		height: 3rem !important;
	}
}

/* Newsletter Modal Discount */
.newsletter-modal__discount {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	margin-bottom: 1.5rem;
	background: transparent;
	border: 2px dashed var(--color-accent, #b01010);
	border-radius: 8px;
}

.newsletter-modal__discount-amount {
	font-family: var(--font-heading, Georgia, serif);
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--color-accent, #b01010);
	line-height: 1;
}

.newsletter-modal__discount-label {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--color-body, #4d4d4d);
	text-align: left;
	line-height: 1.3;
}

@media (max-width: 768px) {
	.newsletter-modal__discount-amount {
		font-size: 1.5rem;
	}
}

/* ============================================
   PAGE META - THE BIG LIVE TEAM (ABOUT PAGE)
   ============================================ */
/* Page separator dots */
.page-separator {
	text-align: center;
	margin: 3rem 0;
}

.page-separator__dots {
	font-size: 1.5rem;
	letter-spacing: 0.75em;
	color: rgba(17, 17, 17, 0.25);
}

.page-meta {
	margin-top: 0;
}

.page-meta__item {
	padding: 2rem;
	background-color: #f8f6f3;
	border-radius: var(--border-radius);
}

.page-meta__label {
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin: 0 0 1rem;
}

.page-meta__value {
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--color-body);
}

.page-meta__value p {
	margin: 0 0 1rem;
}

.page-meta__value p:last-child {
	margin-bottom: 0;
}

/* ============================================
   SCHEDULE GRID - CENTER ITEMS
   ============================================ */
.editorial-section--schedule .schedule-grid,
.editorial-section--past .schedule-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
}

.editorial-section--schedule .schedule-grid .schedule-card,
.editorial-section--past .schedule-grid .schedule-card {
	flex: 0 1 320px;
	max-width: 400px;
}

/* ============================================
   SCHEDULE CARD - NOW SHOWING BADGE
   ============================================ */
.schedule-card--now-showing {
	border-color: #e08830;
	border-width: 2px;
}

.schedule-card--now-showing .btn {
	background: linear-gradient(135deg, #e08830 0%, #c87628 100%);
	box-shadow: 0 4px 16px rgba(224, 136, 48, 0.25);
}

.schedule-card--now-showing .btn:hover,
.schedule-card--now-showing .btn:focus {
	background: linear-gradient(135deg, #c87628 0%, #b06620 100%);
	box-shadow: 0 8px 24px rgba(224, 136, 48, 0.35);
}

.schedule-card__badge--now-showing {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	margin: 1rem 1rem 0;
	background: linear-gradient(135deg, #e08830 0%, #c87628 100%);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: 999px;
	box-shadow: 0 2px 8px rgba(224, 136, 48, 0.25);
}

.schedule-card__badge-dot {
	width: 8px;
	height: 8px;
	background-color: #fff;
	border-radius: 50%;
	animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.6;
		transform: scale(0.85);
	}
}

/* Empty schedule state - centered card */
.schedule-empty {
	display: flex;
	justify-content: center;
}

.schedule-empty .schedule-card--register {
	flex: 1 1 320px;
	max-width: 450px;
}

/* Consistent header spacing in schedule and past sections */
.editorial-section--schedule .editorial-section__header,
.editorial-section--past .editorial-section__header {
	margin-bottom: clamp(2rem, 4vw, 3rem);
}



.single-city .show-history {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
}

.single-city .show-history__item {
	flex: 1 1 280px;
	max-width: 450px;
}

/* Reduce vertical space before Performance Schedule and Past Performances on city pages */
.single-city .editorial-section--schedule {
	padding-top: 0;
	padding-bottom: 3rem;
}

.single-city .editorial-section--past {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

@media (max-width: 768px) {
	.single-city .editorial-section--schedule {
		padding-top: 0;
		padding-bottom: 2rem;
	}
	
	.single-city .editorial-section--past {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}
}


/* ============================================
   HERO VIDEO - DESKTOP/MOBILE SWITCHING
   ============================================ */
/* Desktop: Show desktop video, hide mobile video */
.hero-media-desktop {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.hero-media-mobile {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

/* Mobile: Show mobile video, hide desktop video */
@media (max-width: 768px) {
	.hero-media-desktop {
		display: none !important;
		visibility: hidden !important;
		opacity: 0 !important;
		pointer-events: none !important;
	}
	
	.hero-media-mobile {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
		pointer-events: auto !important;
		/* Ensure mobile video wrapper fills entire hero area */
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		width: 100% !important;
		height: 100% !important;
		min-height: 100vh !important;
		min-height: 100dvh !important;
		overflow: hidden !important; /* Critical: clip the scaled iframe */
	}
}

/* ============================================
   HERO VIDEO - EDGE-TO-EDGE POSITIONING
   Ensures video fills entire hero area from top
   ============================================ */
/* Video wrapper must fill entire hero area */
.hero-marquee__video-wrapper {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	width: 100% !important;
	height: 100% !important;
	overflow: hidden !important;
	z-index: 0 !important;
}

/* Vimeo iframes - cover entire area, centered both ways like self-hosted */
.hero-marquee__video-wrapper iframe,
.hero-marquee__video--vimeo {
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
	width: 177.78vh !important; /* 16:9 aspect ratio to cover tall containers */
	height: 100vh !important;
	min-width: 100% !important;
	min-height: 56.25vw !important; /* 16:9 aspect ratio */
	border: none !important;
}

/* Self-hosted videos - cover entire area with 16:9 aspect ratio coverage */
.hero-marquee__video--self-hosted {
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
	width: 177.78vh !important; /* 16:9 aspect ratio to cover tall containers */
	height: 100vh !important;
	min-width: 100% !important;
	min-height: 56.25vw !important; /* 16:9 aspect ratio */
	object-fit: cover !important;
}

/* YouTube wrapper same treatment */
.hero-marquee__youtube-wrapper {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	width: 100% !important;
	height: 100% !important;
	overflow: hidden !important;
	z-index: 0 !important;
}

/* Mobile: ensure videos fill viewport properly (cover behavior) */
@media (max-width: 768px) {
	/* 
	 * Force Vimeo iframe to COVER the container (fill both width and height).
	 * Uses max() to ensure the video is large enough to cover any aspect ratio.
	 * Overflow is clipped by the wrapper.
	 */
	.hero-marquee__video-wrapper {
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		height: 100% !important;
		overflow: hidden !important;
	}
	
	.hero-marquee__video-wrapper iframe,
	.hero-marquee__video--vimeo {
		position: absolute !important;
		top: 50% !important;
		left: 50% !important;
		transform: translate(-50%, -50%) !important;
		/* Cover: scale large enough to fill any mobile aspect ratio (up to 9:21) */
		width: max(100vw, 100vh * 9 / 19.5) !important;
		height: max(100vh, 100vw * 19.5 / 9) !important;
		border: none !important;
	}
	
	/* Self-hosted video - use object-fit which works on video elements */
	.hero-marquee__video--self-hosted {
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
	}
}

/* ============================================
   MOBILE MENU - DESKTOP DEFAULTS
   ============================================ */
/* Hide close button on desktop - only visible on mobile when menu is open */
.site-header__nav-close {
	display: none !important;
}

/* ============================================
   MOBILE MENU - CLEAN SHOWPO-STYLE IMPLEMENTATION
   ============================================ */
@media (max-width: 900px) {
	/* Overlay - full screen dark background */
	.site-header__nav-overlay {
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		height: 100vh !important;
		height: 100dvh !important;
		background-color: rgba(0, 0, 0, 0.6) !important;
		opacity: 0 !important;
		visibility: hidden !important;
		transition: opacity 0.3s ease, visibility 0.3s ease !important;
		z-index: 998 !important;
		pointer-events: none !important;
		backdrop-filter: blur(2px) !important;
		-webkit-backdrop-filter: blur(2px) !important;
	}
	
	/* Show overlay when menu is open */
	.site-header.menu-is-open .site-header__nav-overlay,
	body.menu-open .site-header__nav-overlay {
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;
	}
	
	/* Menu drawer - slides in from right - WHITE BACKGROUND */
	/* Hidden by default, shown when .is-open is added */
	.site-header__nav-wrapper {
		position: fixed !important;
		top: 0 !important;
		right: -100% !important;
		width: 85% !important;
		max-width: 400px !important;
		height: 100vh !important;
		height: 100dvh !important;
		background-color: #ffffff !important;
		background: #ffffff !important;
		z-index: 999 !important;
		transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
		overflow-y: auto !important;
		overflow-x: hidden !important;
		padding: 0 !important;
		margin: 0 !important;
		box-shadow: -2px 0 20px rgba(0, 0, 0, 0.15) !important;
		-webkit-overflow-scrolling: touch !important;
		display: none !important;
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 0 !important;
	}
	
	/* Show menu drawer when open */
	.site-header__nav-wrapper.is-open,
	.site-header.menu-is-open .site-header__nav-wrapper {
		background-color: #ffffff !important;
		background: #ffffff !important;
		right: 0 !important;
		display: flex !important;
	}
	
	/* Close button - positioned in top-right of drawer */
	/* Must be scoped to nav-wrapper to position correctly */
	.site-header__nav-wrapper .site-header__nav-close {
		position: absolute !important;
		top: 1.25rem !important;
		right: 1.25rem !important;
		left: auto !important;
		bottom: auto !important;
		width: 2.75rem !important;
		height: 2.75rem !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		background: transparent !important;
		border: none !important;
		font-size: 1.75rem !important;
		cursor: pointer !important;
		color: #000000 !important;
		z-index: 1001 !important;
		padding: 0 !important;
		margin: 0 !important;
		line-height: 1 !important;
		transition: opacity 0.2s ease !important;
		transform: none !important;
	}
	
	.site-header__nav-wrapper .site-header__nav-close:hover,
	.site-header__nav-wrapper .site-header__nav-close:focus {
		opacity: 0.6 !important;
		outline: none !important;
	}
	
	.site-header__nav-wrapper .site-header__nav-close span {
		font-size: 1.75rem !important;
		line-height: 1 !important;
		display: block !important;
	}
	
	/* Menu navigation container */
	.site-header__nav {
		display: block !important;
		padding: 5rem 0 0 !important;
		position: relative !important;
		flex: 1 0 auto !important;
		width: 100% !important;
	}
	
	/* Primary navigation list */
	.site-header__nav .nav-primary {
		display: flex !important;
		flex-direction: column !important;
		gap: 0 !important;
		list-style: none !important;
		margin: 0 !important;
		padding: 0 !important;
		width: 100% !important;
	}
	
	.site-header__nav .nav-primary li {
		display: block !important;
		margin: 0 !important;
		padding: 0 !important;
		width: 100% !important;
	}
	
	/* Menu links - proper spacing and touch targets */
	.site-header__nav .nav-primary a {
		display: block !important;
		padding: 1.25rem 1.5rem !important;
		color: #000000 !important;
		text-decoration: none !important;
		border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
		font-size: 1rem !important;
		font-weight: 500 !important;
		line-height: 1.5 !important;
		transition: background-color 0.2s ease, color 0.2s ease !important;
		width: 100% !important;
	}
	
	.site-header__nav .nav-primary a:hover,
	.site-header__nav .nav-primary a:focus {
		background-color: rgba(0, 0, 0, 0.04) !important;
		color: #000000 !important;
		outline: none !important;
	}
	
	.site-header__nav .nav-primary li:last-child a {
		border-bottom: none !important;
	}
	
	/* CTA button container - at bottom of menu */
	.site-header__cta {
		display: block !important;
		padding: 1.5rem !important;
		margin-top: auto !important;
		border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
		width: 100% !important;
		flex-shrink: 0 !important;
	}
	
	.site-header__cta .btn--header {
		width: 100% !important;
		display: flex !important;
		justify-content: center !important;
		align-items: center !important;
		padding: 1rem 1.5rem !important;
		font-size: 0.9rem !important;
		font-weight: 600 !important;
		background-color: #000000 !important;
		color: #ffffff !important;
		border: 1px solid #000000 !important;
		border-radius: 4px !important;
		text-transform: uppercase !important;
		letter-spacing: 0.05em !important;
		transition: all 0.3s ease !important;
	}
	
	.site-header__cta .btn--header:hover,
	.site-header__cta .btn--header:focus {
		background-color: #333333 !important;
		border-color: #333333 !important;
		color: #ffffff !important;
		outline: none !important;
	}
	
	/* Toggle button - keep visible when menu closed */
	.site-header__toggle,
	[data-toggle="primary-nav"] {
		position: relative !important;
		z-index: 1000 !important;
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
	
	/* Hide toggle button when menu is open */
	.site-header.menu-is-open .site-header__toggle,
	.site-header.menu-is-open [data-toggle="primary-nav"],
	body.menu-open .site-header__toggle,
	body.menu-open [data-toggle="primary-nav"] {
		display: none !important;
		visibility: hidden !important;
		opacity: 0 !important;
		pointer-events: none !important;
	}
	
	/* Lock body scroll when menu is open */
	body.menu-open {
		overflow: hidden !important;
		position: fixed !important;
		width: 100% !important;
		height: 100% !important;
		top: 0 !important;
		left: 0 !important;
	}
}

/* ============================================
   PERFORMANCE GALLERY CAROUSEL
   ============================================ */
.performance-gallery {
	position: relative;
	margin: 2.5rem 0;
	overflow: hidden;
}

.performance-gallery__track {
	display: flex;
	gap: 1rem;
	transition: transform 0.4s ease;
}

.performance-gallery__slide {
	flex: 0 0 100%;
	max-width: 100%;
}

/* Show multiple slides on larger screens */
@media (min-width: 768px) {
	.performance-gallery__slide {
		flex: 0 0 calc(50% - 0.5rem);
		max-width: calc(50% - 0.5rem);
	}
}

@media (min-width: 1024px) {
	.performance-gallery__slide {
		flex: 0 0 calc(33.333% - 0.667rem);
		max-width: calc(33.333% - 0.667rem);
	}
}

.performance-gallery__item {
	display: block;
	width: 100%;
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 8px;
	cursor: pointer;
	border: none;
	padding: 0;
	background: #111;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.performance-gallery__item:hover {
	transform: scale(1.02);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.performance-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.performance-gallery__video-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #1a1a1a, #333);
	color: rgba(255, 255, 255, 0.5);
}

/* Zoom icon for images */
.performance-gallery__zoom-icon {
	position: absolute;
	bottom: 1rem;
	right: 1rem;
	width: 40px;
	height: 40px;
	background: rgba(0, 0, 0, 0.7);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.performance-gallery__item:hover .performance-gallery__zoom-icon {
	opacity: 1;
}

/* Play icon for videos */
.performance-gallery__play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	height: 64px;
	background: rgba(0, 0, 0, 0.7);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: background 0.3s ease, transform 0.3s ease;
}

.performance-gallery__item--video:hover .performance-gallery__play-icon {
	background: rgba(0, 0, 0, 0.9);
	transform: translate(-50%, -50%) scale(1.1);
}

/* Arrow navigation */
.performance-gallery__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.95);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #111;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	transition: background 0.3s ease, transform 0.3s ease;
	z-index: 10;
}

.performance-gallery__arrow:hover {
	background: #fff;
	transform: translateY(-50%) scale(1.1);
}

.performance-gallery__arrow:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.performance-gallery__arrow--prev {
	left: 0.5rem;
}

.performance-gallery__arrow--next {
	right: 0.5rem;
}

@media (min-width: 768px) {
	.performance-gallery__arrow {
		width: 56px;
		height: 56px;
	}
	
	.performance-gallery__arrow--prev {
		left: 1rem;
	}
	
	.performance-gallery__arrow--next {
		right: 1rem;
	}
}

/* ============================================
   LIGHTBOX MODAL
   ============================================ */
.performance-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.performance-lightbox[aria-hidden="false"] {
	opacity: 1;
	visibility: visible;
}

.performance-lightbox__backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	cursor: pointer;
}

.performance-lightbox__container {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

@media (min-width: 768px) {
	.performance-lightbox__container {
		padding: 2rem;
	}
}

.performance-lightbox__content {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.performance-lightbox__content img {
	max-width: 100%;
	max-height: 85vh;
	object-fit: contain;
	border-radius: 4px;
}

.performance-lightbox__content iframe {
	width: 90vw;
	height: 50.625vw; /* 16:9 aspect ratio */
	max-height: 80vh;
	max-width: calc(80vh * 16 / 9);
	border: none;
	border-radius: 4px;
}

/* Close button */
.performance-lightbox__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: background 0.3s ease;
	z-index: 10;
}

.performance-lightbox__close:hover {
	background: rgba(255, 255, 255, 0.2);
}

/* Lightbox navigation arrows */
.performance-lightbox__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 56px;
	height: 56px;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: background 0.3s ease;
	z-index: 10;
}

.performance-lightbox__nav:hover {
	background: rgba(255, 255, 255, 0.2);
}

.performance-lightbox__nav--prev {
	left: 1rem;
}

.performance-lightbox__nav--next {
	right: 1rem;
}

@media (max-width: 767px) {
	.performance-lightbox__nav {
		width: 44px;
		height: 44px;
	}
	
	.performance-lightbox__nav--prev {
		left: 0.5rem;
	}
	
	.performance-lightbox__nav--next {
		right: 0.5rem;
	}
}

/* Lock body scroll when lightbox is open */
body.lightbox-open {
	overflow: hidden !important;
}

/* ============================================
   FOOTER LOGO - White inverted logo
   ============================================ */
.site-footer__logo {
	display: block !important;
	margin: 0 0 1rem !important;
}

.site-footer__logo img {
	height: 2rem !important;
	width: auto !important;
	filter: invert(1) brightness(2) !important;
}


