/* ===========================
   SUNNY COMEDY CLUB — Global Styles
   =========================== */

/* ===== Fonts ===== */
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #FFFFFF;
}

.font-playfair { font-family: 'Playfair Display', Georgia, serif; }
.font-inter    { font-family: 'Inter', -apple-system, sans-serif; }

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes popIn {
  0%   { transform: scale(0.7); opacity: 0; }
  75%  { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes neonPulse {
  0%, 100% { box-shadow: 0 0 6px rgba(244,195,72,0.4), 0 0 12px rgba(244,195,72,0.2); }
  50%      { box-shadow: 0 0 14px rgba(244,195,72,0.7), 0 0 28px rgba(244,195,72,0.4); }
}
@keyframes bounceSlow {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

.animate-fadeInUp { animation: fadeInUp 0.7s ease-out both; }
.animate-fadeIn   { animation: fadeIn 0.8s ease-out both; }
.animate-popIn    { animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.animate-scaleIn  { animation: scaleIn 0.6s ease-out both; }
.animate-bounceSlow { animation: bounceSlow 2s ease-in-out infinite; }

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }

/* ===== Hero gradient title ===== */
.hero-title-gradient {
  background: linear-gradient(90deg, #FFD700 0%, #FFFFFF 40%, #FF88CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255, 220, 80, 0.7), 0 0 80px rgba(255, 160, 210, 0.4);
}

/* ===== Buttons ===== */
.btn-gold {
  background: linear-gradient(135deg, #F4C348 0%, #E8A820 100%);
  color: #0A0A0A;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(244, 195, 72, 0.4);
  filter: brightness(1.05);
}

.btn-outline-gold {
  background: transparent;
  color: #F4C348;
  border: 2px solid #F4C348;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
}
.btn-outline-gold:hover {
  background: rgba(244, 195, 72, 0.1);
  transform: translateY(-2px);
}

/* ===== Card hover ===== */
.card-hover {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(244, 195, 72, 0.1);
}

/* ===== Gold divider ===== */
.gold-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #F4C348, transparent);
}

/* ===== Section badge ===== */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(244,195,72,0.18), rgba(240,152,84,0.18));
  border: 1.5px solid rgba(244, 195, 72, 0.5);
  color: #D4941A;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  animation: neonPulse 3s ease-in-out infinite;
}

.section-badge-dark {
  display: inline-block;
  background: linear-gradient(135deg, rgba(244,195,72,0.18), rgba(240,152,84,0.18));
  border: 1.5px solid rgba(244, 195, 72, 0.5);
  color: #F4C348;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  animation: neonPulse 3s ease-in-out infinite;
}

/* ===== Polka dot pattern ===== */
.polka-dots {
  background-image: radial-gradient(circle, rgba(244,195,72,0.2) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}

/* ===== Star pattern ===== */
.star-pattern {
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ===== Custom scrollbar ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #1a0810; }
::-webkit-scrollbar-thumb { background: #4a1a2e; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #F4C348; }

/* ===== Review card ===== */
.review-card {
  background: #ffffff;
  border: 1px solid rgba(244,195,72,0.25);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(244,100,0,0.06);
}
.review-card:hover {
  border-color: rgba(244, 195, 72, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(244,150,0,0.14);
}

/* ===== Navbar ===== */
.navbar-solid {
  background: rgba(20, 5, 14, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(244, 195, 72, 0.2), 0 4px 20px rgba(0,0,0,0.4);
}
.navbar-transparent { background: transparent; }

/* ===== Floating CTA hover ===== */
.floating-cta {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244,195,72,0.55);
}

/* ===== Social buttons ===== */
.social-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.2s;
}
.social-btn:hover {
  border-color: #F4C348;
  background: rgba(244,195,72,0.12);
}

/* ===== Hero CTA buttons hover ===== */
.hero-cta-primary {
  background: linear-gradient(135deg, #F4C348 0%, #F09854 100%);
  color: #1a0a00;
  padding: 15px 32px;
  font-size: 1rem;
  box-shadow: 0 6px 30px rgba(244,195,72,0.45);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(244,195,72,0.55);
}
.hero-cta-video {
  background: rgba(255,255,255,0.12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 13px 28px;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.hero-cta-video:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* ===== Form inputs ===== */
.input-base {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  outline: none;
  transition: all 0.2s;
  border: 1px solid #E5E7EB;
  background: #fff;
  color: #1a0810;
}
.input-base:hover { border-color: #D1D5DB; }
.input-base:focus { border-color: #F4C348; }
.input-base.error { border-color: #F87171; background: #FEF2F2; }

/* ===== Hero modal video ===== */
.video-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,0.88);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* ===== Native accordion (FAQ) ===== */
details.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
details.faq-item:last-child { border-bottom: 0; }
details.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  color: #1a0810;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '';
  width: 12px;
  height: 12px;
  border-right: 2px solid #888;
  border-bottom: 2px solid #888;
  transform: rotate(45deg);
  transition: transform 0.2s;
  flex-shrink: 0;
}
details.faq-item[open] summary::after {
  transform: rotate(-135deg);
}
details.faq-item .faq-content {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #4B5563;
  padding-bottom: 16px;
}

/* ===== Tab buttons (venue, FAQ city) ===== */
.tab-button {
  cursor: pointer;
  outline: none;
  transition: all 0.2s;
}

/* ===== Misc utility ===== */
.spotlight-pulse { animation: neonPulse 4s ease-in-out infinite; }
