/* ==========================================================================
   MOLO TUNIS - Warm Minimalist Luxury Stylesheet
   Color Palette: Warm Cream (#F5EFE6) & Midnight Charcoal (#111114)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Tokens */
  --bg-dark: #111114;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --bg-cream: #F5EFE6;
  
  --accent-cream: #E8DFC9;
  --accent-gold: #D4AF37;
  --accent-glow: rgba(232, 223, 201, 0.15);
  
  --text-main: #F5EFE6;
  --text-muted: #A6A095;
  --text-dark: #111114;
  
  --border-subtle: rgba(245, 239, 230, 0.12);
  --border-glass: rgba(245, 239, 230, 0.2);

  /* Fonts */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container-max: 1280px;
  --nav-height: 85px;
  
  /* Animation */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  background-color: var(--bg-dark);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(245, 239, 230, 0.25);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cream);
}

/* Typography */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.text-cream {
  color: var(--accent-cream);
}

.subtitle-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 30px;
  background: rgba(245, 239, 230, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--accent-cream);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1.25rem;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Brand Logo (Handwritten Style with Strike Line) */
.brand-logo {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.logo-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-cream);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.logo-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(245, 239, 230, 0.3);
}

.logo-text-graphic {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  position: relative;
  line-height: 1;
  color: var(--text-dark);
}

.logo-strike-line {
  position: absolute;
  top: 52%;
  left: -2px;
  right: -2px;
  height: 1.5px;
  background-color: var(--text-dark);
}

.brand-subtext {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-cream);
  margin-top: 4px;
}

/* Navigation Header */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(17, 17, 20, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-cream);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-cream);
  transition: var(--transition-smooth);
}

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

/* Buttons */
.btn-cream {
  background: var(--bg-cream);
  color: var(--text-dark);
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(245, 239, 230, 0.15);
}

.btn-cream:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(245, 239, 230, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--border-glass);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  border-color: var(--accent-cream);
  color: var(--accent-cream);
  background: rgba(245, 239, 230, 0.08);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero Section with Scroll Animation Video */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) contrast(1.05);
  transform: scale(1.02);
  transition: transform 0.1s linear, filter 0.1s linear;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 20, 0.3) 0%,
    rgba(17, 17, 20, 0.6) 60%,
    rgba(17, 17, 20, 1) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  padding: 4rem 0;
}

.hero-title {
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  font-weight: 300;
}

.hero-description {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--text-muted);
  font-weight: 300;
  max-width: 620px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

/* Sections Shared */
.section {
  padding: 7.5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem auto;
}

.section-title {
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  margin-bottom: 1rem;
  font-weight: 300;
}

.section-desc {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 1.05rem;
}

/* About / Vibe Section with abt.mp4 Video */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-video-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  aspect-ratio: 9 / 16;
  max-height: 580px;
  margin: 0 auto;
  width: 100%;
}

.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content h3 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-content p {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

/* Gallery & Souvenir Section - 3D Velocity Planes Carousel */
.gallery-section-3d {
  position: relative;
  overflow: hidden;
  padding-bottom: 4rem;
  background: radial-gradient(ellipse at 50% 50%, rgba(245, 239, 230, 0.025) 0%, rgba(11, 11, 13, 0.98) 100%);
}

.gallery-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--bg-cream);
  color: var(--text-dark);
  border-color: var(--bg-cream);
  font-weight: 600;
}

.gallery-3d-wrapper {
  position: relative;
  width: 100%;
  padding: 1.5rem 0 3rem;
  user-select: none;
  -webkit-user-select: none;
}

.gallery-3d-viewport {
  width: 100%;
  height: 480px;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  overflow: hidden;
  position: relative;
  cursor: grab;
  touch-action: pan-y;
}

.gallery-3d-viewport:active {
  cursor: grabbing;
}

.planes-track {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform-style: preserve-3d;
  will-change: transform;
}

/* Individual 3D Plane Card */
.plane-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 270px;
  height: 370px;
  margin-top: -185px;
  margin-left: -135px;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid rgba(245, 239, 230, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  cursor: pointer;
  will-change: transform, opacity;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.plane-card.is-hovered {
  border-color: rgba(245, 239, 230, 0.6);
  box-shadow: 0 35px 75px rgba(0, 0, 0, 0.95), 0 0 30px rgba(245, 239, 230, 0.25);
  z-index: 1000 !important;
}

.plane-media-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.plane-media-wrap img,
.plane-media-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.plane-card.is-hovered .plane-media-wrap img,
.plane-card.is-hovered .plane-media-wrap video {
  transform: scale(1.12);
}

.plane-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(11, 11, 13, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

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

.plane-badge {
  align-self: flex-end;
  background: rgba(17, 17, 20, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 239, 230, 0.2);
  color: var(--accent-cream);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plane-footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.plane-index-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.plane-scramble-title {
  font-size: 1.05rem;
  color: var(--accent-cream);
  font-weight: 500;
  letter-spacing: 0.02em;
  min-height: 1.4em;
  font-family: inherit;
}

/* Hint Bar */
.gallery-hint-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hint-pill {
  background: rgba(245, 239, 230, 0.04);
  border: 1px solid rgba(245, 239, 230, 0.1);
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Call Reservation Section */
.reservation-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 28px;
  padding: 4rem 3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
}

.reservation-card h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.reservation-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.phone-display-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(245, 239, 230, 0.08);
  border: 1px solid var(--border-glass);
  padding: 16px 36px;
  border-radius: 50px;
  color: var(--accent-cream);
  font-size: 1.4rem;
  font-family: var(--font-serif);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.phone-display-btn:hover {
  background: var(--bg-cream);
  color: var(--text-dark);
  box-shadow: 0 10px 30px rgba(245, 239, 230, 0.25);
  transform: translateY(-2px);
}

/* Events Page Specific Styles */
.events-hero {
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 4rem;
  text-align: center;
}

.events-section-title {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-cream);
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1rem;
  text-align: left;
}

.events-flyers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.flyer-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  transition: var(--transition-smooth);
}

.flyer-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glass);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.flyer-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.flyer-body {
  padding: 1.5rem;
}

.flyer-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.events-videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.event-video-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  border: 1px solid var(--border-subtle);
  background: #000;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.event-video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.event-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Lightbox Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content-container {
  max-width: 900px;
  width: 100%;
  max-height: 85vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content-container img, .modal-content-container video {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
}

.modal-close-btn {
  position: absolute;
  top: -45px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background: var(--bg-cream);
  color: var(--text-dark);
}

/* Footer */
.footer {
  background: #09090b;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--accent-cream);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--accent-cream);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Management dashboard access */
.btn-dashboard-top{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 18px;
  min-height:40px;
  border:1px solid rgba(212,175,55,.55);
  border-radius:999px;
  color:var(--accent-cream);
  text-decoration:none;
  background:rgba(212,175,55,.08);
  font-size:.8rem;
  font-weight:600;
  letter-spacing:.02em;
  transition:var(--transition-smooth);
  box-shadow:0 0 0 rgba(212,175,55,0);
}
.btn-dashboard-top:hover{
  color:#111114;
  background:var(--accent-gold);
  border-color:var(--accent-gold);
  box-shadow:0 0 24px rgba(212,175,55,.22);
  transform:translateY(-1px);
}
@media (max-width: 768px){
  .navbar .container{position:relative;min-height:72px}
  .nav-actions{gap:7px!important;margin-left:auto;margin-right:6px}
  .nav-actions .btn-outline,
  .nav-actions .btn-cream{display:none}
  .btn-dashboard-top{padding:9px 13px;font-size:.72rem;min-height:38px}
  .btn-dashboard-top span{display:inline}
  .mobile-nav-toggle{margin-left:0!important}
  .nav-links{z-index:1001}
}
@media (max-width: 390px){
  .btn-dashboard-top{padding:9px 11px}
  .btn-dashboard-top span{display:none}
}

.event-loading,.event-empty{grid-column:1/-1;text-align:center;padding:3rem;color:var(--text-muted);border:1px solid rgba(245,239,230,.12);border-radius:16px}.home-events-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}.home-event-card{display:grid;grid-template-columns:110px 1fr;gap:1rem;padding:1rem;border:1px solid rgba(245,239,230,.12);border-radius:16px;background:rgba(255,255,255,.025)}.home-event-card img{width:110px;height:140px;object-fit:cover;border-radius:10px}.home-event-card h3{font-family:var(--font-serif,serif);font-size:1.6rem;margin:.6rem 0}.home-event-card p{color:var(--text-muted);font-size:.82rem;line-height:1.6;margin-bottom:1rem}@media(max-width:800px){.home-events-grid{grid-template-columns:1fr}.home-event-card{grid-template-columns:90px 1fr}.home-event-card img{width:90px;height:120px}}

/* Live database event cards */
.flyer-card{display:flex;flex-direction:column;min-width:0}.flyer-media{position:relative;overflow:hidden;background:#18181a}.flyer-img{height:360px;object-fit:cover;transition:transform .5s ease}.flyer-card:hover .flyer-img{transform:scale(1.035)}.event-type-badge,.ticket-badge{position:absolute;top:14px;display:inline-flex;align-items:center;gap:6px;padding:7px 10px;border:1px solid rgba(245,239,230,.2);border-radius:999px;background:rgba(10,10,12,.72);backdrop-filter:blur(10px);font-size:.68rem;color:var(--accent-cream)}.event-type-badge{left:14px}.ticket-badge{right:14px;color:#fff1cf;border-color:rgba(212,175,55,.45)}.event-description{min-height:64px;line-height:1.7}.event-info-row{display:flex;gap:14px;flex-wrap:wrap;margin:0 0 1rem;color:var(--text-muted);font-size:.75rem}.event-info-row i{color:var(--accent-cream)}.event-card-actions{display:flex;gap:9px}.event-card-actions .btn-cream,.event-card-actions .btn-outline{flex:1;justify-content:center}.home-event-meta{display:flex;gap:12px;flex-wrap:wrap;color:var(--text-muted);font-size:.72rem;margin-bottom:1rem}.home-ticket-tag{color:var(--accent-cream)}
.ticket-modal{position:fixed;inset:0;z-index:9999;display:none;align-items:center;justify-content:center;padding:20px}.ticket-modal.show{display:flex}.ticket-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.78);backdrop-filter:blur(8px)}.ticket-dialog{position:relative;width:min(760px,100%);max-height:90vh;overflow:auto;background:#161618;border:1px solid rgba(245,239,230,.16);border-radius:22px;padding:30px;box-shadow:0 30px 90px rgba(0,0,0,.65)}.ticket-close{position:absolute;right:16px;top:16px;width:38px;height:38px;border:1px solid rgba(245,239,230,.15);border-radius:50%;background:#222;color:#eee;font-size:18px}.ticket-dialog h2{font-family:var(--font-serif,serif);font-size:clamp(2rem,5vw,3.2rem);margin:.35rem 0}.ticket-meta{color:var(--text-muted)}.ticket-price{font-family:var(--font-serif,serif);font-size:2.5rem;color:var(--accent-cream);margin:20px 0}.ticket-price small{font-family:inherit;font-size:.9rem;color:var(--text-muted)}.ticket-demo-grid{display:grid;grid-template-columns:1.25fr .75fr;gap:20px}.ticket-demo-grid>div{border:1px solid rgba(245,239,230,.1);border-radius:16px;padding:20px;background:rgba(255,255,255,.025)}.demo-input{padding:12px 0;border-bottom:1px solid rgba(245,239,230,.08);display:flex;justify-content:space-between;gap:12px;font-size:.8rem}.demo-input span{color:var(--text-muted)}.ticket-demo-btn{width:100%;justify-content:center;margin-top:18px}.qr-panel{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;gap:9px}.qr-panel span{font-size:.7rem;color:var(--text-muted)}.qr-frame{width:180px;height:180px;background:#fff;padding:10px;border-radius:12px}.qr-frame img{width:100%;height:100%;object-fit:contain}.event-live-card{cursor:default}
@media(max-width:700px){.events-flyers-grid{grid-template-columns:1fr;gap:18px}.flyer-img{height:330px}.ticket-dialog{padding:22px}.ticket-demo-grid{grid-template-columns:1fr}.qr-frame{width:150px;height:150px}.event-card-actions{flex-direction:column}.home-event-card{grid-template-columns:1fr}.home-event-card img{width:100%;height:180px}.home-event-card .btn-outline{width:100%;justify-content:center}}
