/*
Theme Name: Jailbirds Showcase
Author: Nadia
Version: 0.1.0
Text Domain: jailbirds
*/

body {
  margin: 0;
}

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

.site-nav {
  background: transparent;
}

.site-nav.nav-scrolled {
  background: rgba(10, 9, 9, 0.95);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(139, 26, 26, 0.3);
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: hsl(var(--cream));
  margin-bottom: 4px;
}

.mobile-menu-toggle span:last-child {
  margin-bottom: 0;
}

.mobile-menu-toggle .icon-close {
  display: none;
}

.mobile-menu-toggle.is-open .icon-open {
  display: none;
}

.mobile-menu-toggle.is-open .icon-close {
  display: block;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(10, 9, 9, 0.98);
  padding-top: 80px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav-cta {
  animation: subtle-pulse 2.4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav-cta {
    animation: none;
  }
}

.sticky-ticket {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: none;
}

@media (max-width: 767px) {
  .sticky-ticket {
    display: none !important;
  }
}

.sticky-ticket.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-ticket a {
  animation: pulse-glow 0.5s ease-in-out infinite !important;
}

@media (min-width: 768px) {
  .sticky-ticket {
    display: block;
    bottom: 40px;
    right: 32px;
  }
}

@keyframes subtle-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 18px rgba(139, 26, 26, 0.35);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 9, 0.95);
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox img.gallery-image {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid rgba(139, 26, 26, 0.4);
  box-shadow: 0 0 50px rgba(139, 26, 26, 0.25);
}

.gallery-lightbox button {
  position: absolute;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
}

.gallery-lightbox .gallery-icon {
  width: 24px;
  height: 24px;
}

.gallery-lightbox .gallery-close {
  top: 24px;
  right: 24px;
  color: hsl(var(--cream) / 0.7);
  transition: color 0.2s ease;
}

.gallery-lightbox .gallery-close:hover {
  color: hsl(var(--cream));
}

.gallery-lightbox .gallery-prev,
.gallery-lightbox .gallery-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid hsl(var(--crimson) / 0.5);
  background: hsl(var(--noir) / 0.6);
  color: hsl(var(--cream) / 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.gallery-lightbox .gallery-prev:hover,
.gallery-lightbox .gallery-next:hover {
  color: hsl(var(--cream));
  border-color: hsl(var(--crimson));
}

.gallery-lightbox .gallery-prev {
  left: 16px;
}

.gallery-lightbox .gallery-next {
  right: 16px;
}

@media (min-width: 768px) {
  .gallery-lightbox .gallery-prev {
    left: 32px;
  }

  .gallery-lightbox .gallery-next {
    right: 32px;
  }
}

.no-scroll {
  overflow: hidden;
}

.animate-marquee {
  animation: marquee 45s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes bounce-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

@keyframes bounce-dot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

.animate-bounce-slow {
  animation: bounce-slow 1.5s infinite;
}

.animate-bounce-dot {
  animation: bounce-dot 1.5s infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(139, 26, 26, 0.5); }
  50% { box-shadow: 0 0 40px rgba(139, 26, 26, 0.8), 0 0 60px rgba(139, 26, 26, 0.4); }
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

.trailer-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 9, 9, 0.95);
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.trailer-lightbox.is-open {
  display: flex;
}

.trailer-lightbox .trailer-video {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid rgba(139, 26, 26, 0.4);
  box-shadow: 0 0 50px rgba(139, 26, 26, 0.25);
}

.trailer-lightbox .trailer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(139, 26, 26, 0.5);
  background: rgba(10, 9, 9, 0.6);
  color: #f7f1e6;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.trailer-label {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

.hero-radial-crimson {
  background: radial-gradient(circle at center, hsl(0 85% 40% / 0.18) 0%, transparent 55%);
}

.hero-radial-vignette {
  background: radial-gradient(circle at center, transparent 45%, hsl(0 0% 5% / 0.85) 100%);
}

.experience-highlight {
  color: hsl(0 85% 40%);
  font-weight: 700;
}

@media (min-width: 768px) {
  .tickets-stack {
    max-width: 29rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.site-footer {
  padding: 32px 0 64px;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 40px 0 48px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-follow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-rights {
  font-size: 9px;
}

.footer-follow-label {
  font-size: 10px;
}

.footer-spacer {
  display: none;
}

.trailer-card .trailer-label {
  color: hsl(var(--cream) / 0.8) !important;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.65));
  text-shadow: none;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
  }

  .footer-follow {
    justify-self: center;
    transform: translateX(3.5rem);
    padding-top: 0.5rem;
  }

  .footer-spacer {
    display: block;
  }
}

[data-animate] {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition-property: opacity, transform;
  transition-duration: var(--anim-duration, 600ms);
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--anim-delay, 0ms);
  will-change: opacity, transform;
}

[data-animate="fade-up-sm"] {
  transform: translate3d(0, 20px, 0);
}

[data-animate="fade-up-xs"] {
  transform: translate3d(0, 10px, 0);
}

[data-animate="fade-left"] {
  transform: translate3d(-50px, 0, 0);
}

[data-animate="fade-right"] {
  transform: translate3d(50px, 0, 0);
}

[data-animate="scale-in"] {
  transform: scale(0.9);
}

[data-animate="fade-in"] {
  transform: none;
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

.nav-reveal {
  opacity: 0;
  transform: translate3d(0, -100px, 0);
  animation: nav-reveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes nav-reveal {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-animate],
  [data-animate].is-visible,
  .nav-reveal {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}
