/* ============================================================
   TRUNK OR TREAT, SHOPS & EATS — MASTERPIECE DESIGN SYSTEM
   Official Colors: Navy #0a1628 | Gold #e8922a | Yellow #fbbf24 | Spooky #7e22ce
   ============================================================ */

/* --- 1. CSS VARIABLES & RESET --- */
:root {
  --bg-dark: #0a1628;
  --bg-card: #0d1a2d;
  --bg-card-hover: #11223b;
  --gold: #e8922a;
  --gold-glow: rgba(232, 146, 42, 0.35);
  --yellow: #fbbf24;
  --purple: #7e22ce;
  --purple-glow: rgba(126, 34, 206, 0.4);
  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --border-color: rgba(232, 146, 42, 0.3);
  --font-base: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-base);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

/* --- 2. TYPOGRAPHY & HEADINGS --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover {
  color: var(--yellow);
}

p {
  color: var(--text-muted);
}

.highlight {
  color: var(--gold);
  background: linear-gradient(135deg, #e8922a 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-purple {
  color: #a855f7;
  background: linear-gradient(135deg, #a855f7 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- 3. SVG ICON SPRITE FIXING (NEVER RUN TOGETHER) --- */
.svg-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Specific Icon Sizes */
.date-icon .svg-icon,
.section-tag .svg-icon {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  color: var(--gold);
  margin-right: 6px;
}

.feature-icon .svg-icon,
.info-icon .svg-icon,
.vendor-icon .svg-icon,
.ticket-family-icon .svg-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  color: var(--gold);
}

.ticket-features .svg-icon,
.halloween-features .svg-icon {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  margin-right: 8px;
  flex-shrink: 0;
}

.ticket-features li,
.halloween-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
  font-size: 0.92rem;
}

.ticket-features li .svg-icon {
  color: #22c55e;
}

.ticket-features li.excluded .svg-icon {
  color: #ef4444;
}

.halloween-features li .svg-icon {
  color: #a855f7;
}

/* --- 4. LAYOUT CONTAINERS & SECTION SPACING --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
  position: relative;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: rgba(232, 146, 42, 0.12);
  border: 1px solid rgba(232, 146, 42, 0.35);
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 0.8rem;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* --- 5. BUTTONS & INTERACTIVE ELEMENTS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, #e8922a 0%, #d97706 100%);
  color: #0c182a;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #e8922a 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 146, 42, 0.4);
  color: #0c182a;
}

.btn-glow {
  box-shadow: 0 0 20px rgba(232, 146, 42, 0.35);
}

.btn-outline {
  background: transparent;
  border-color: rgba(232, 146, 42, 0.5);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(232, 146, 42, 0.12);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-purple {
  background: transparent;
  border-color: rgba(168, 85, 247, 0.5);
  color: #c084fc;
}

.btn-outline-purple:hover {
  border-color: #a855f7;
  background: rgba(168, 85, 247, 0.15);
  color: #ffffff;
  transform: translateY(-2px);
}

/* --- 6. NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 146, 42, 0.2);
  padding: 0.8rem 0;
}

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

.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-link:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: rgba(232, 146, 42, 0.1);
  border: 1px solid rgba(232, 146, 42, 0.35);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(232, 146, 42, 0.2);
  border-color: var(--gold);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

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

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

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

/* --- PREMIUM MOBILE SIDE DRAWER NAVIGATION --- */
.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 12, 22, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  pointer-events: none;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: linear-gradient(180deg, #0d1b2a 0%, #07101c 100%);
  border-left: 1.5px solid rgba(232, 146, 42, 0.4);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-menu-drawer.active {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(232, 146, 42, 0.2);
  background: rgba(10, 22, 40, 0.6);
}

.mobile-drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-drawer-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(232, 146, 42, 0.4));
}

.mobile-drawer-title {
  display: flex;
  flex-direction: column;
}

.mobile-drawer-title .brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold);
  line-height: 1.1;
}

.mobile-drawer-title .brand-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.mobile-drawer-close {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gold);
  font-size: 1.5rem;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  transition: all 0.2s ease;
}

.mobile-drawer-close:hover {
  background: var(--gold);
  color: #0c182a;
}

.mobile-drawer-body {
  flex: 1;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.drawer-section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 700;
  margin: 0.8rem 0 0.2rem;
  opacity: 0.85;
}

.mobile-drawer-body .mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #cbd5e1;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border-bottom: none;
  background: transparent;
  transition: all 0.25s ease;
}

.mobile-drawer-body .mobile-link:hover,
.mobile-drawer-body .mobile-link:active {
  background: rgba(232, 146, 42, 0.12);
  color: var(--gold);
  padding-left: 1rem;
}

.mobile-drawer-body .mobile-link.highlight-link {
  background: linear-gradient(135deg, rgba(232, 146, 42, 0.2), rgba(168, 85, 247, 0.2));
  border: 1px solid rgba(232, 146, 42, 0.35);
  color: #ffffff;
  font-weight: 700;
}

.drawer-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.drawer-icon .svg-icon {
  width: 18px !important;
  height: 18px !important;
  color: var(--gold) !important;
}

.mobile-drawer-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 22, 40, 0.4);
}

.drawer-artist-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.3);
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
}

.drawer-artist-badge .artist-icon {
  font-size: 1.3rem;
}

.drawer-artist-badge .artist-info strong {
  display: block;
  font-size: 0.85rem;
  color: #ffffff;
  line-height: 1.2;
}

.drawer-artist-badge .artist-info span {
  display: block;
  font-size: 0.72rem;
  color: var(--gold);
}

@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .menu-toggle { display: flex !important; }
}

/* --- 7. HERO SECTION --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  background: var(--bg-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: radial-gradient(circle at center, rgba(10, 22, 40, 0.4) 0%, rgba(10, 22, 40, 0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
}

.hero-logo {
  max-width: 170px;
  max-height: 170px;
  width: auto;
  height: auto;
  margin: 0 auto 1.25rem;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.hero-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 26, 45, 0.85);
  border: 1px solid var(--border-color);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.countdown-item {
  background: rgba(13, 26, 45, 0.9);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 10px 18px;
  min-width: 75px;
}

.countdown-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.countdown-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

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

@media (max-width: 600px) {
  .hero-title { font-size: 2.1rem; }
  .countdown-item { padding: 8px 12px; min-width: 60px; }
  .countdown-number { font-size: 1.25rem; }
  .hero-cta { flex-direction: column; align-items: center; }
}

/* --- 8. FESTIVAL HIGHLIGHTS (GALLERY SHOWCASE GRID - 4 COLUMNS) --- */
section#gallery.gallery {
  background: #081220;
}

.gallery-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .gallery-showcase-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .gallery-showcase-grid { grid-template-columns: 1fr; max-width: 400px; }
}

.gallery-showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.gallery-showcase-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 14px 35px rgba(232, 146, 42, 0.25);
}

.gallery-showcase-img-box {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
}

.gallery-showcase-img-box img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-showcase-card:hover .gallery-showcase-img-box img {
  transform: scale(1.05);
}

.gallery-showcase-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(232, 146, 42, 0.92);
  color: #0c182a;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
}

.gallery-showcase-info {
  padding: 1.1rem;
  flex: 1;
}

.gallery-showcase-info h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.gallery-showcase-info p {
  font-size: 0.84rem;
  line-height: 1.45;
}

/* --- 9. ABOUT & FEATURES GRID --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: var(--bg-card-hover);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(232, 146, 42, 0.15);
  border: 1px solid rgba(232, 146, 42, 0.35);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-size: 0.88rem;
}

/* --- 10. FOOD COMPETITION & SHOWCASE --- */
.awards-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.award-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 26, 45, 0.9);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
}

.award-badge .svg-icon {
  color: var(--gold);
}

.competition-showcase {
  max-width: 750px;
  margin: 0 auto 2.5rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.showcase-image {
  position: relative;
  width: 100%;
  max-height: 320px;
  overflow: hidden;
}

.showcase-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(10,22,40,0.95), transparent);
}

.showcase-overlay h3 { font-size: 1.2rem; margin-bottom: 0.2rem; }
.showcase-overlay p { font-size: 0.88rem; color: #cbd5e1; }

.subsection-title {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

@media (max-width: 900px) { .restaurant-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .restaurant-grid { grid-template-columns: 1fr; } }

.restaurant-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  position: relative;
}

.restaurant-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.restaurant-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.cuisine-tag {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.add-restaurant-card {
  border: 2px dashed rgba(232, 146, 42, 0.4);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.add-icon {
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

/* --- 11. HALLOWEEN SECTION --- */
.halloween-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 850px) { .halloween-grid { grid-template-columns: 1fr; } }

.halloween-card {
  background: var(--bg-card);
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.halloween-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.halloween-card-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.halloween-card-content {
  padding: 1.5rem;
  flex: 1;
}

.halloween-icon-large {
  display: flex;
  gap: 8px;
  margin-bottom: 0.8rem;
  color: #a855f7;
}

.halloween-card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.halloween-card-content p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* --- 12. MUSIC LINEUP SECTION --- */
.music-showcase {
  max-width: 750px;
  margin: 0 auto 2rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.music-showcase img.music-hero-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 650px) { .lineup-grid { grid-template-columns: 1fr; } }

.artist-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
}

.featured-artist {
  border-color: var(--gold);
  box-shadow: 0 0 25px rgba(232, 146, 42, 0.2);
}

.artist-time {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.artist-avatar {
  width: 50px;
  height: 50px;
  background: rgba(232, 146, 42, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  color: var(--gold);
}

.artist-name {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.artist-genre {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.6rem;
}

.artist-status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(232, 146, 42, 0.2);
  color: var(--gold);
}

/* --- 13. TICKETS SECTION --- */
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 900px) { .tickets-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto 2rem; } }

.ticket-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.ticket-featured {
  border-color: var(--gold);
  box-shadow: 0 10px 35px rgba(232, 146, 42, 0.25);
  transform: scale(1.03);
}

@media (max-width: 900px) { .ticket-featured { transform: none; } }

.ticket-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0c182a;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ticket-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.ticket-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.ticket-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.price-currency { font-size: 1.4rem; vertical-align: top; }

.ticket-period {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.ticket-features {
  list-style: none;
  margin-bottom: 1.75rem;
  flex: 1;
}

.btn-ticket { width: 100%; text-align: center; }

.ticket-family {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.ticket-family-info h4 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.ticket-family-info p { font-size: 0.85rem; margin: 0; }

.ticket-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --- 14. VENDORS & FILTER BAR --- */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.filter-btn {
  background: rgba(13, 26, 45, 0.9);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--gold);
  color: #0c182a;
  border-color: var(--gold);
}

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) { .vendor-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .vendor-grid { grid-template-columns: 1fr; } }

.vendor-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1.25rem;
}

.vendor-icon {
  width: 44px;
  height: 44px;
  background: rgba(232, 146, 42, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  color: var(--gold);
}

.vendor-card h4 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.vendor-type { font-size: 0.75rem; font-weight: 700; color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 0.4rem; }
.vendor-card p { font-size: 0.85rem; }

.vendor-apply-card {
  border: 2px dashed var(--gold);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* --- 15. SCHEDULE TIMELINE --- */
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-item {
  margin-bottom: 1.25rem;
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
}

.timeline-time {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
}

.timeline-content h4 {
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.3rem;
}

.timeline-content p {
  font-size: 0.88rem;
  margin: 0;
}

/* --- 16. FAQ V3 COMPONENT (PRISTINE 2 COLUMNS) --- */
section#faq.faq-v3-section {
  background: #081220;
}

.faq-v3-search-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  width: 100%;
}

.faq-v3-search-box {
  display: flex;
  align-items: center;
  background: #0e1c2e;
  border: 2px solid var(--gold);
  border-radius: 40px;
  padding: 10px 20px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.faq-v3-search-icon {
  color: var(--gold);
  margin-right: 10px;
}

input.faq-v3-search-input {
  width: 100%;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}

input.faq-v3-search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.faq-v3-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 2.5rem auto 0;
}

@media (max-width: 850px) {
  .faq-v3-grid { grid-template-columns: 1fr; }
}

.faq-v3-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s ease;

  width: 100%;
}

.faq-v3-card:hover, .faq-v3-card.active {
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(232, 146, 42, 0.2);
}

.faq-v3-header {
  padding: 1.1rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  gap: 1rem;
}

.faq-v3-question-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.faq-v3-icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(232, 146, 42, 0.15);
  border: 1px solid rgba(232, 146, 42, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.faq-v3-question-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.35;
}

.faq-v3-toggle-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: #0c182a;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.faq-v3-card.active .faq-v3-toggle-badge {
  background: var(--yellow);
}

.faq-v3-body {
  padding: 0 1.35rem 1.1rem;
}

.faq-v3-answer-box {
  background: rgba(7, 14, 23, 0.85);
  padding: 1rem 1.25rem;
  border-radius: 10px;
  border-left: 4px solid var(--gold);
}

.faq-v3-answer-box p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #e2e8f0;
  margin: 0;
}

/* --- 17. LOCATION & MAP --- */
/* (Styles unified in Cohesive Integrated Location Section at bottom of file) */

/* --- 18. SPONSORS SECTION --- */
.sponsor-tiers {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.sponsor-tier { text-align: center; }

.tier-label {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.tier-platinum { color: #e2e8f0; }
.tier-gold { color: var(--gold); }
.tier-silver { color: #94a3b8; }

.sponsor-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.sponsor-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sponsor-name { font-weight: 700; font-size: 1rem; color: #fff; }
.sponsor-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

.sponsor-cta {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.sponsor-cta h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.sponsor-cta p { font-size: 0.9rem; margin-bottom: 1.25rem; }

/* --- 19. FOOTER --- */
.footer {
  background: #060e1a;
  border-top: 1px solid var(--border-color);
  padding: 3.5rem 0 1.5rem;
}

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

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo { height: 48px; width: auto; margin-bottom: 0.8rem; }
.footer-tagline { font-size: 0.88rem; margin-bottom: 1rem; }

.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.social-link:hover { color: var(--gold); border-color: var(--gold); }

.footer-links h4, .footer-newsletter h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--text-muted); font-size: 0.88rem; }
.footer-links a:hover { color: var(--gold); }

.bell-social-links {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
}

.btn-social-follow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
}

.btn-social-follow:hover { border-color: var(--gold); color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
}

.footer-location { color: var(--gold); margin: 4px 0; }
.footer-legal a { color: var(--text-muted); }
.legal-sep { margin: 0 8px; color: rgba(255,255,255,0.2); }

/* --- 20. COOKIE BANNER & BACK TO TOP --- */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.cookie-banner p { font-size: 0.82rem; margin: 0; }

.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 6px 20px rgba(232, 146, 42, 0.4);
  transition: all 0.3s ease;
}

.back-to-top:hover { transform: translateY(-3px); background: var(--yellow); }


/* ============================================================
   EXACT SCREENSHOT FIXES (BADGES, HEADERS & BUTTON ALIGNMENT)
   ============================================================ */

/* 1. Fix Section Header Padding & Navbar Clearances */
.section {
  padding: 5rem 0 !important;
  position: relative !important;
}

.section-header {
  position: relative !important;
  z-index: 5 !important;
  margin-bottom: 2.5rem !important;
  padding-top: 1rem !important;
}

.section-title {
  font-size: 2.25rem !important;
  line-height: 1.3 !important;
  margin-top: 0.5rem !important;
  margin-bottom: 0.8rem !important;
  position: relative !important;
  z-index: 5 !important;
}

.section-desc {
  position: relative !important;
  z-index: 5 !important;
}

/* 2. Fix Gallery Showcase Card Badges */
.gallery-showcase-card {
  position: relative !important;
}

.gallery-showcase-img-box {
  position: relative !important;
  height: 200px !important;
  width: 100% !important;
  overflow: hidden !important;
}

.gallery-showcase-tag {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  background: #e8922a !important;
  color: #0c182a !important;
  padding: 6px 14px !important;
  border-radius: 20px !important;
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  z-index: 10 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4) !important;
  width: auto !important;
  max-width: max-content !important;
}

.gallery-showcase-tag .svg-icon {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px !important;
  min-height: 14px !important;
  fill: #0c182a !important;
  color: #0c182a !important;
  display: inline-block !important;
  margin: 0 !important;
}

/* 3. Fix Ticket Card Badges & Button Alignment */
.tickets-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
  align-items: stretch !important;
}

@media (max-width: 900px) {
  .tickets-grid {
    grid-template-columns: 1fr !important;
  }
}

.ticket-card {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  padding: 2rem 1.5rem 1.5rem !important;
  height: 100% !important;
}

.ticket-featured {
  transform: none !important;
  border: 2px solid #e8922a !important;
}

.ticket-badge {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  left: auto !important;
  transform: none !important;
  background: #e8922a !important;
  color: #0c182a !important;
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  padding: 5px 12px !important;
  border-radius: 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  z-index: 5 !important;
}

.ticket-header {
  margin-top: 0.5rem !important;
  margin-bottom: 1.5rem !important;
}

.ticket-header h3 {
  font-size: 1.3rem !important;
  margin-bottom: 0.5rem !important;
}

.ticket-features {
  flex: 1 !important;
  margin-bottom: 1.5rem !important;
}

.btn-ticket {
  width: 100% !important;
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 12px 20px !important;
  margin-top: auto !important;
}

/* 4. Fix Cookie Banner & Floating Elements */
.cookie-banner {
  z-index: 9999 !important;
}


/* ============================================================
   PERFECT HERO & GLOBAL HORIZONTAL CENTERING FIX
   ============================================================ */
.hero {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
  padding: 7rem 1.5rem 4rem !important;
  box-sizing: border-box !important;
}

.hero-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
  max-width: 850px !important;
  margin: 0 auto !important;
  left: 0 !important;
  right: 0 !important;
}

.hero-logo {
  margin: 0 auto 1.25rem !important;
  display: block !important;
}

.hero-title {
  text-align: center !important;
  width: 100% !important;
}

.hero-subtitle {
  text-align: center !important;
  width: 100% !important;
}

.hero-date {
  margin: 0 auto 1.75rem !important;
  display: inline-flex !important;
  justify-content: center !important;
}

.countdown {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.hero-cta {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}


/* ============================================================
   BIGGER LOGO, CONTRASTING PILL ICONS & COASTAL TEAL ACCENTS
   ============================================================ */

/* 1. Bigger Logos */
.hero-logo,
.hero .hero-logo {
  max-width: 260px !important;
  max-height: 260px !important;
  width: 260px !important;
  height: auto !important;
  margin: 0 auto 1.5rem !important;
  display: block !important;
  filter: drop-shadow(0 12px 25px rgba(0,0,0,0.6)) !important;
}

.navbar .nav-logo-img {
  height: 62px !important;
  max-height: 62px !important;
  width: auto !important;
  display: block !important;
}

/* 2. Fix Pill Icons: Dark Navy/Black Icons on Orange Pills (High Contrast) */
.gallery-showcase-tag {
  background: #e8922a !important;
  color: #0c182a !important;
  font-weight: 800 !important;
}

.gallery-showcase-tag .svg-icon {
  fill: #0c182a !important;
  color: #0c182a !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
}

.ticket-badge {
  background: #e8922a !important;
  color: #0c182a !important;
  font-weight: 800 !important;
}

.ticket-badge .svg-icon {
  fill: #0c182a !important;
  color: #0c182a !important;
  width: 14px !important;
  height: 14px !important;
}

/* 3. Logo Palette Enhancement: Tropical Ocean Teal Accents (#00b4d8 & #38bdf8) */
:root {
  --teal-coastal: #00b4d8;
  --teal-glow: rgba(0, 180, 216, 0.4);
  --cyan-bright: #38bdf8;
}

/* Highlight Coastal Ocean Text Gradient */
.highlight-teal,
.highlight-ocean {
  color: #38bdf8;
  background: linear-gradient(135deg, #00b4d8 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Section Tags with Teal Accent Variants */
.section-tag {
  background: rgba(0, 180, 216, 0.12) !important;
  border: 1px solid rgba(0, 180, 216, 0.4) !important;
  color: #38bdf8 !important;
}

.section-tag .svg-icon {
  color: #38bdf8 !important;
}

/* Coastal Card Glowing Hover Effects */
.feature-card:hover,
.vendor-card:hover {
  border-color: #00b4d8 !important;
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.25) !important;
}

/* Map Badge & Footer Branding Touches */
.map-badge {
  border-color: rgba(0, 180, 216, 0.4) !important;
}


/* ============================================================
   PRISTINE BRANDED MAP OVERLAY BADGE
   ============================================================ */
.map-overlay-branding {
  position: absolute !important;
  top: 16px !important;
  left: 16px !important;
  z-index: 10 !important;
}

.map-badge {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: rgba(10, 22, 40, 0.95) !important;
  backdrop-filter: blur(12px) !important;
  border: 1.5px solid #e8922a !important;
  padding: 10px 18px !important;
  border-radius: 30px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65), 0 0 20px rgba(232, 146, 42, 0.25) !important;
}

.map-badge-logo {
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  object-fit: contain !important;
  border: 1px solid #e8922a !important;
  background: #0a1628 !important;
  flex-shrink: 0 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5) !important;
}

.map-badge-text {
  display: flex !important;
  flex-direction: column !important;
}

.map-badge-text strong {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  line-height: 1.3 !important;
  display: block !important;
}

.map-badge-text span {
  font-size: 0.8rem !important;
  color: #e8922a !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center !important;
  margin-top: 2px !important;
}


/* ============================================================
   FLOATING GHOSTS, BATS, SPIDER WEBS & ANIMATIONS
   ============================================================ */

/* --- 1. Spider Web Corner Decorations --- */
.spider-web {
  position: absolute;
  width: 140px;
  height: 140px;
  z-index: 2;
  pointer-events: none;
  animation: sway-web 8s ease-in-out infinite;
}

.spider-web-tl {
  top: 0;
  left: 0;
}

.spider-web-tr {
  top: 0;
  right: 0;
}

@keyframes sway-web {
  0%, 100% { transform: rotate(-2deg); opacity: 0.25; }
  50% { transform: rotate(2deg); opacity: 0.45; }
}

/* --- 2. Floating Ghosts & Spooky Particles --- */
.hero-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.spooky-particle {
  position: absolute;
  user-select: none;
  pointer-events: none;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
  z-index: 2;
}

.spooky-particle.ghost {
  font-size: 2.2rem;
  animation: float-ghost 6s ease-in-out infinite;
}

.spooky-particle.bat {
  font-size: 1.8rem;
  animation: float-bat 7s ease-in-out infinite;
}

.spooky-particle.pumpkin {
  font-size: 2rem;
  animation: float-ghost 8s ease-in-out infinite 1s;
}

.spooky-particle.spider {
  font-size: 1.6rem;
  animation: float-bat 9s ease-in-out infinite 0.5s;
}

/* Keyframe Animations */
@keyframes float-ghost {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(5deg); }
  50% { transform: translateY(-8px) rotate(-4deg); }
  75% { transform: translateY(-24px) rotate(3deg); }
}

@keyframes float-bat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  30% { transform: translate(30px, -25px) scale(1.1) rotate(8deg); }
  60% { transform: translate(-25px, -40px) scale(0.95) rotate(-8deg); }
  85% { transform: translate(20px, -18px) scale(1.05) rotate(5deg); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(232, 146, 42, 0.35); }
  50% { box-shadow: 0 0 35px rgba(232, 146, 42, 0.65), 0 0 50px rgba(251, 191, 36, 0.3); }
}


/* ============================================================
   ADVANCED ANIMATIONS, FOG, CALCULATOR & MODAL STYLES
   ============================================================ */

/* --- 1. Cinematic Coastal Fog Layer --- */
.fog-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 120px;
  z-index: 2;
  pointer-events: none;
  background: repeat-x url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1000" height="120" viewBox="0 0 1000 120"><path d="M0,60 Q250,20 500,60 T1000,60 L1000,120 L0,120 Z" fill="rgba(0,180,216,0.06)"/></svg>');
  animation: fog-drift 25s linear infinite;
}

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

/* --- 2. Flickering Jack-o'-Lantern Glow --- */
.flicker-glow {
  animation: lantern-flicker 4s ease-in-out infinite;
}

@keyframes lantern-flicker {
  0%, 100% { filter: brightness(1) drop-shadow(0 0 10px rgba(232, 146, 42, 0.4)); }
  25% { filter: brightness(1.15) drop-shadow(0 0 18px rgba(251, 191, 36, 0.7)); }
  50% { filter: brightness(0.9) drop-shadow(0 0 8px rgba(232, 146, 42, 0.3)); }
  75% { filter: brightness(1.2) drop-shadow(0 0 22px rgba(232, 146, 42, 0.8)); }
}

/* --- 3. Mouse Stardust Particle Trail --- */
.stardust-particle {
  position: fixed;
  pointer-events: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  z-index: 99999;
  animation: stardust-fade 0.8s ease-out forwards;
}

@keyframes stardust-fade {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(0.2) translateY(-20px); opacity: 0; }
}

/* --- 4. Token Calculator Widget --- */
.calculator-wrapper {
  background: #0d1a2d !important;
  border: 1.5px solid var(--gold) !important;
  border-radius: 16px !important;
  padding: 2rem !important;
  max-width: 850px !important;
  margin: 0 auto 2.5rem !important;
  box-shadow: 0 12px 35px rgba(0,0,0,0.6) !important;
}

.calc-header { text-align: center; margin-bottom: 1.5rem; }
.calc-tag { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.4rem; }
.calc-header h3 { font-size: 1.35rem; margin-bottom: 0.2rem; }
.calc-header p { font-size: 0.88rem; }

.calc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 700px) { .calc-body { grid-template-columns: 1fr; } }

.calc-inputs { display: flex; flex-direction: column; gap: 1.25rem; }
.calc-control { display: flex; align-items: center; justify-content: space-between; background: rgba(10,22,40,0.7); padding: 10px 16px; border-radius: 12px; border: 1px solid var(--border-color); }
.calc-control label { font-weight: 600; font-size: 0.95rem; }

.counter-box { display: flex; align-items: center; gap: 12px; }
.calc-btn { width: 32px; height: 32px; border-radius: 50%; background: var(--gold); color: #0c182a; border: none; font-size: 1.2rem; font-weight: 800; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.calc-num { font-size: 1.2rem; font-weight: 800; color: #fff; min-width: 20px; text-align: center; }

.calc-result { background: rgba(7, 14, 23, 0.9); border-left: 4px solid var(--gold); padding: 1.25rem; border-radius: 12px; }
.result-row { display: flex; justify-content: space-between; font-size: 0.92rem; margin-bottom: 0.6rem; color: #cbd5e1; }
.result-row:last-child { margin-bottom: 0; }

/* --- 5. Costume Contest Modal --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 14, 26, 0.85);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active { display: flex; }

.modal-content {
  background: #0d1a2d !important;
  border: 2px solid var(--gold) !important;
  border-radius: 20px !important;
  padding: 2.25rem !important;
  max-width: 600px !important;
  width: 100% !important;
  position: relative !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8) !important;
  animation: modal-pop 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modal-pop {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
}

.modal-close:hover { color: var(--gold); }
.modal-header { text-align: center; margin-bottom: 1.5rem; }
.modal-header h2 { font-size: 1.5rem; margin: 0.4rem 0; }

.modal-categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
@media (max-width: 550px) { .modal-categories { grid-template-columns: 1fr; } }

.modal-cat-card { background: rgba(10,22,40,0.8); border: 1px solid var(--border-color); padding: 1rem; border-radius: 12px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.cat-icon { font-size: 1.8rem; margin-bottom: 0.3rem; }
.modal-cat-card strong { font-size: 0.88rem; color: #fff; margin-bottom: 2px; }
.modal-cat-card span { font-size: 0.75rem; color: var(--gold); }
.modal-footer { text-align: center; }


/* ============================================================
   CRYSTAL-CLEAR GLASSMORPHIC HIGHLIGHT CARD BADGES
   ============================================================ */
.gallery-showcase-tag {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  background: rgba(10, 22, 40, 0.92) !important;
  backdrop-filter: blur(8px) !important;
  border: 1.5px solid #e8922a !important;
  color: #fbbf24 !important;
  padding: 6px 14px !important;
  border-radius: 20px !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  z-index: 10 !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6) !important;
}

.gallery-showcase-tag .tag-icon {
  font-size: 1rem !important;
  line-height: 1 !important;
  display: inline-block !important;
}


/* ============================================================
   CREEPSTER FESTIVE ACCENT FONT & AUDIO TOGGLE STYLES
   ============================================================ */

/* Festive Creepster Accent Font for Spooky Highlights */
.font-creepster,
.highlight-purple {
  font-family: 'Creepster', cursive !important;
  letter-spacing: 1px !important;
  font-weight: 400 !important;
}

.audio-toggle, .music-player-widget, .floating-emoji {
  display: none !important;
}


/* ============================================================
   SPECTRAL SEMI-TRANSPARENT GHOST PARTICLES
   ============================================================ */
.spooky-particle {
  position: absolute !important;
  user-select: none !important;
  pointer-events: none !important;
  opacity: 0.55 !important;
  filter: opacity(0.55) drop-shadow(0 0 15px rgba(255, 255, 255, 0.4)) !important;
  z-index: 2 !important;
  transition: opacity 0.5s ease !important;
}

.spooky-particle.ghost {
  font-size: 2.5rem !important;
  animation: spectral-drift 9s ease-in-out infinite !important;
}

.spooky-particle.bat {
  font-size: 2rem !important;
  opacity: 0.45 !important;
  animation: spectral-bat-flight 8s ease-in-out infinite !important;
}

.spooky-particle.pumpkin {
  font-size: 2.2rem !important;
  opacity: 0.5 !important;
  animation: spectral-drift 11s ease-in-out infinite 1s !important;
}

.spooky-particle.spider {
  font-size: 1.8rem !important;
  opacity: 0.4 !important;
  animation: spectral-bat-flight 10s ease-in-out infinite 0.5s !important;
}

/* Spectral Floating & Fading Animations */
@keyframes spectral-drift {
  0% {
    transform: translateY(0) translateX(0) scale(1) rotate(0deg);
    opacity: 0.35;
  }
  25% {
    transform: translateY(-25px) translateX(15px) scale(1.08) rotate(6deg);
    opacity: 0.65;
  }
  50% {
    transform: translateY(-10px) translateX(-20px) scale(0.95) rotate(-4deg);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-30px) translateX(10px) scale(1.05) rotate(5deg);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0) translateX(0) scale(1) rotate(0deg);
    opacity: 0.35;
  }
}

@keyframes spectral-bat-flight {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.3;
  }
  30% {
    transform: translate(40px, -30px) rotate(12deg);
    opacity: 0.6;
  }
  60% {
    transform: translate(-30px, -50px) rotate(-10deg);
    opacity: 0.35;
  }
  85% {
    transform: translate(25px, -20px) rotate(8deg);
    opacity: 0.55;
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.3;
  }
}


/* ============================================================
   ULTIMATE MOBILE TOUCH TARGETS & ACCESSIBILITY POLISH
   ============================================================ */

/* Touch Target Sizes for Mobile (Accessibility) */
@media (max-width: 600px) {
  .btn, .nav-link, .mobile-link, .filter-btn, .calc-btn {
    min-height: 44px !important;
    min-width: 44px !important;
  }
  
  .section-title {
    font-size: 1.8rem !important;
  }
}

/* Print Styles for Event Flyers & Tickets */
@media print {
  .navbar, .cookie-banner, .back-to-top, .audio-toggle, .fog-layer, .hero-decorations {
    display: none !important;
  }
  body {
    background: #fff !important;
    color: #000 !important;
  }
}


/* ============================================================
   SUBTLE FLOATING & GLOWING ANIMATION FOR FESTIVAL EMBLEM LOGO
   ============================================================ */
.hero-logo,
.hero .hero-logo {
  animation: hero-logo-float 7s ease-in-out infinite, hero-logo-pulse 4s ease-in-out infinite !important;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s ease !important;
  cursor: pointer !important;
}

.hero-logo:hover,
.hero .hero-logo:hover {
  transform: scale(1.08) rotate(2deg) !important;
  filter: drop-shadow(0 15px 35px rgba(232, 146, 42, 0.75)) drop-shadow(0 0 50px rgba(0, 180, 216, 0.4)) !important;
}

/* Floating Spirit Sway Animation */
@keyframes hero-logo-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(1.5deg);
  }
  50% {
    transform: translateY(-4px) rotate(-1deg);
  }
  75% {
    transform: translateY(-12px) rotate(1deg);
  }
}

/* Breathing Aura Glow Animation */
@keyframes hero-logo-pulse {
  0%, 100% {
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 20px rgba(232, 146, 42, 0.35));
  }
  50% {
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 35px rgba(251, 191, 36, 0.65)) drop-shadow(0 0 45px rgba(0, 180, 216, 0.3));
  }
}


/* ============================================================
   ANTI-AI HUMANIZING DESIGN SYSTEM & SPOOKY MUSIC PLAYER
   ============================================================ */

/* Live Official Event Pill */
.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e;
  animation: pulse-dot 2s infinite;
}

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

/* Organic Background Texture Depth */
body {
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(232, 146, 42, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(0, 180, 216, 0.05) 0%, transparent 40%) !important;
}

/* Spooky Music Player Widget */
.music-player-widget {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 9999;
  background: rgba(10, 22, 40, 0.94) !important;
  backdrop-filter: blur(12px) !important;
  border: 1.5px solid var(--gold) !important;
  border-radius: 30px !important;
  padding: 6px 16px 6px 12px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65), 0 0 20px rgba(232, 146, 42, 0.25) !important;
  transition: all 0.3s ease !important;
}

.music-btn {
  background: none;
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
.music-player-widget {
  display: none !important;
}


/* ============================================================
   COHESIVE INTEGRATED LOCATION & MAP LAYOUT (NO SEPARATION)
   ============================================================ */

/* 4-Column Horizontal Info Bar */
.location-info-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.25rem !important;
  margin-bottom: 2rem !important;
}

@media (max-width: 900px) {
  .location-info-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 550px) {
  .location-info-grid {
    grid-template-columns: 1fr !important;
  }
}

.location-info-grid .info-card {
  background: rgba(13, 27, 42, 0.92) !important;
  backdrop-filter: blur(12px) !important;
  border: 1.5px solid rgba(232, 146, 42, 0.35) !important;
  border-radius: 14px !important;
  padding: 1.25rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
  transition: all 0.3s ease !important;
}

.location-info-grid .info-card:hover {
  border-color: var(--gold) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 35px rgba(232, 146, 42, 0.25) !important;
}

.location-info-grid .info-icon {
  width: 44px !important;
  height: 44px !important;
  background: rgba(232, 146, 42, 0.15) !important;
  border: 1px solid rgba(232, 146, 42, 0.35) !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  color: var(--gold) !important;
}

.location-info-grid .info-text h4 {
  font-size: 1rem !important;
  margin-bottom: 0.2rem !important;
  color: #ffffff !important;
}

.location-info-grid .info-text p {
  font-size: 0.85rem !important;
  line-height: 1.4 !important;
  color: var(--text-muted) !important;
  margin: 0 !important;
}

/* Full-Width Map Showcase */
.festival-map-showcase {
  background: var(--bg-card) !important;
  border: 1.5px solid var(--border-color) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6) !important;
}

.map-container-inner {
  position: relative !important;
  width: 100% !important;
  height: 380px !important;
  overflow: hidden !important;
}

.map-overlay-branding {
  position: absolute !important;
  top: 15px !important;
  left: 15px !important;
  z-index: 5 !important;
  pointer-events: none !important;
}

.map-badge {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: rgba(10, 22, 40, 0.92) !important;
  backdrop-filter: blur(12px) !important;
  border: 1.5px solid var(--gold) !important;
  padding: 8px 16px 8px 10px !important;
  border-radius: 30px !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6) !important;
}

.map-badge-logo {
  width: 34px !important;
  height: 34px !important;
  object-fit: contain !important;
}

.map-badge-text {
  display: flex !important;
  flex-direction: column !important;
  text-align: left !important;
}

.map-badge-text strong {
  font-size: 0.85rem !important;
  color: #ffffff !important;
  line-height: 1.2 !important;
}

.map-badge-text span {
  font-size: 0.75rem !important;
  color: var(--gold) !important;
}

.map-bottom-bar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 1rem 1.5rem !important;
  background: rgba(10, 22, 40, 0.95) !important;
  border-top: 1px solid var(--border-color) !important;
  gap: 1rem !important;
  flex-wrap: wrap !important;
}

.map-zones {
  display: flex !important;
  align-items: center !important;
  gap: 1.25rem !important;
  flex-wrap: wrap !important;
}

.zone-item {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 0.82rem !important;
  color: #e2e8f0 !important;
  font-weight: 600 !important;
}

.zone-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  display: inline-block !important;
}


.experience-section {
  background: radial-gradient(circle at 50% 30%, rgba(13, 27, 42, 0.98) 0%, rgba(6, 13, 23, 1) 100%) !important;
  padding: 4.5rem 0 !important;
}

.experience-split-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 2rem !important;
  margin-top: 2rem !important;
}

@media (max-width: 900px) {
  .experience-split-grid {
    grid-template-columns: 1fr !important;
  }
}

.experience-column {
  background: linear-gradient(145deg, rgba(15, 28, 45, 0.95), rgba(8, 16, 28, 0.98)) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-radius: 24px !important;
  padding: 2.25rem !important;
  display: flex !important;
  flex-direction: column !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
}

.adults-column {
  border: 1.5px solid rgba(232, 146, 42, 0.5) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 25px rgba(232, 146, 42, 0.15) !important;
}

.adults-column:hover {
  border-color: var(--gold) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(232, 146, 42, 0.3) !important;
  transform: translateY(-4px) !important;
}

.kids-column {
  border: 1.5px solid rgba(168, 85, 247, 0.5) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 25px rgba(168, 85, 247, 0.15) !important;
}

.kids-column:hover {
  border-color: #c084fc !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(168, 85, 247, 0.3) !important;
  transform: translateY(-4px) !important;
}

.exp-column-header {
  margin-bottom: 2rem !important;
  padding-bottom: 1.5rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.exp-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  padding: 6px 14px !important;
  border-radius: 20px !important;
  margin-bottom: 1rem !important;
}

.exp-badge .svg-icon {
  width: 16px !important;
  height: 16px !important;
}

.gold-badge {
  background: rgba(232, 146, 42, 0.18) !important;
  color: var(--gold) !important;
  border: 1px solid rgba(232, 146, 42, 0.45) !important;
}

.purple-badge {
  background: rgba(168, 85, 247, 0.18) !important;
  color: #c084fc !important;
  border: 1px solid rgba(168, 85, 247, 0.45) !important;
}

.exp-column-header h3 {
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-bottom: 0.5rem !important;
  line-height: 1.25 !important;
}

.exp-column-header p {
  font-size: 0.95rem !important;
  color: #94a3b8 !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

.exp-feature-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.25rem !important;
}

.exp-feature-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 1.2rem !important;
  background: rgba(10, 20, 34, 0.85) !important;
  padding: 1.25rem 1.5rem !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: all 0.25s ease !important;
}

.exp-feature-item:hover {
  background: rgba(15, 28, 48, 0.95) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  transform: translateX(4px) !important;
}

.exp-icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.exp-icon .svg-icon {
  width: 22px !important;
  height: 22px !important;
}

.adults-column .exp-icon {
  background: rgba(232, 146, 42, 0.18) !important;
  color: var(--gold) !important;
  border: 1px solid rgba(232, 146, 42, 0.4) !important;
}

.kids-column .exp-icon {
  background: rgba(168, 85, 247, 0.18) !important;
  color: #c084fc !important;
  border: 1px solid rgba(168, 85, 247, 0.4) !important;
}

.exp-info h4 {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.35rem !important;
  color: #ffffff !important;
}

.exp-info p {
  font-size: 0.9rem !important;
  line-height: 1.45 !important;
  color: #cbd5e1 !important;
  margin: 0 !important;
}

.exp-icon {
  width: 40px !important;
  height: 40px !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.adults-column .exp-icon {
  background: rgba(232, 146, 42, 0.15) !important;
  color: var(--gold) !important;
  border: 1px solid rgba(232, 146, 42, 0.3) !important;
}

.kids-column .exp-icon {
  background: rgba(168, 85, 247, 0.15) !important;
  color: #c084fc !important;
  border: 1px solid rgba(168, 85, 247, 0.3) !important;
}

.exp-info h4 {
  font-size: 1.05rem !important;
  margin-bottom: 0.2rem !important;
  color: #ffffff !important;
}

/* --- MOBILE HERO & COMPONENT RESPONSIVE POLISH --- */
@media (max-width: 600px) {
  .hero-content {
    padding-top: 4rem !important;
    padding-bottom: 2rem !important;
  }
  .hero-logo {
    max-width: 160px !important;
    margin-bottom: 1rem !important;
  }
  .hero-title {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.75rem !important;
  }
  .hero-subtitle {
    font-size: 0.95rem !important;
    margin-bottom: 1.25rem !important;
  }
  .live-status-pill {
    margin-bottom: 1rem !important;
  }
}

/* --- WAYLON WRAITH SINGLE FEATURE CARD & MEDIA PLAYER --- */
.waylen-player-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  padding: 2rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.95) 0%, rgba(20, 36, 56, 0.95) 100%);
  border: 1.5px solid rgba(232, 146, 42, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  align-items: center;
  margin-bottom: 2rem;
}

@media (max-width: 850px) {
  .waylen-player-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.5rem;
  }
}

.waylen-card-left {
  display: flex;
  justify-content: center;
}

.waylen-album-art {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 16px;
  background: rgba(10, 22, 40, 0.8);
  border: 2px solid rgba(232, 146, 42, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(232, 146, 42, 0.25);
  overflow: hidden;
}

.waylen-art-img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(232, 146, 42, 0.6));
}

.waylen-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #e8922a, #d97706);
  color: #0c182a;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.artist-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.artist-heading {
  font-size: 2rem;
  margin-bottom: 0.2rem;
  color: #ffffff;
}

.song-title {
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.feat-tag {
  font-size: 0.95rem;
  color: #c084fc;
  font-weight: 600;
}

.song-desc {
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.waylen-audio-player {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(232, 146, 42, 0.3);
  background: #000000;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

/* --- HERO WAYLON WRAITH HIT SINGLE AUDIO PILL --- */
.hero-music-player-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 20px 8px 10px;
  border-radius: 40px;
  background: rgba(13, 27, 42, 0.85);
  border: 1.5px solid rgba(232, 146, 42, 0.4);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  margin: 1.25rem 0;
  transition: all 0.3s ease;
  z-index: 10;
}

.hero-music-player-pill:hover {
  border-color: var(--gold);
  box-shadow: 0 0 25px rgba(232, 146, 42, 0.4);
  transform: translateY(-2px);
}

.hero-music-player-pill.playing {
  border-color: #fbbf24;
  box-shadow: 0 0 35px rgba(251, 191, 36, 0.6);
  animation: hero-pill-pulse 2s infinite ease-in-out;
}

@keyframes hero-pill-pulse {
  0%, 100% { box-shadow: 0 0 25px rgba(232, 146, 42, 0.4); }
  50% { box-shadow: 0 0 40px rgba(251, 191, 36, 0.7); }
}

.hero-play-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8922a, #d97706);
  border: none;
  color: #0c182a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(232, 146, 42, 0.5);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.hero-play-button:hover {
  transform: scale(1.08);
  background: linear-gradient(135deg, #fbbf24, #e8922a);
}

.hero-play-icon {
  font-size: 1.15rem;
  line-height: 1;
  margin-left: 2px;
}

.hero-music-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.hero-music-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-music-badge .svg-icon {
  width: 14px;
  height: 14px;
}

/* --- WAYLON WRAITH MASCOT SINGLE BANNER (DIRECTLY UNDER LOGO) --- */
.hero-mascot-single-banner {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 22px 12px 22px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.92) 0%, rgba(20, 36, 56, 0.95) 100%);
  border: 1.5px solid rgba(232, 146, 42, 0.5);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(232, 146, 42, 0.2);
  margin: 0.75rem auto 1.5rem auto;
  transition: all 0.3s ease;
  z-index: 10;
}

.hero-mascot-single-banner:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(232, 146, 42, 0.35);
}

.mascot-single-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.75px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mascot-player-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mascot-play-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8922a, #d97706);
  border: none;
  color: #0c182a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(232, 146, 42, 0.5);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.mascot-play-btn:hover {
  transform: scale(1.08);
  background: linear-gradient(135deg, #fbbf24, #e8922a);
}

.mascot-play-btn .play-icon {
  font-size: 1rem;
  line-height: 1;
  margin-left: 2px;
}

.mascot-song-details {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.song-headline {
  font-size: 0.88rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.song-sub {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
}

.mascot-timer-display {
  font-family: monospace, system-ui;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fbbf24;
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid rgba(232, 146, 42, 0.3);
  letter-spacing: 1px;
}



/* ============================================================
   PREMIUM ANIMATIONS (Added v4.0)
   ============================================================ */

/* 1. Scroll-Triggered Fade Up */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 2. Glass Card Shimmer Effect */
@keyframes shimmer {
  0% { transform: translateX(-150%) skewX(-20deg); }
  100% { transform: translateX(250%) skewX(-20deg); }
}
.glass {
  position: relative;
  overflow: hidden;
}
.glass::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: translateX(-150%) skewX(-20deg);
  z-index: 10;
  pointer-events: none;
}
.glass:hover::after {
  animation: shimmer 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* 3. Glowing Pulse Borders for Experience Columns */
@keyframes pulse-glow-gold {
  0% { box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 10px rgba(232, 146, 42, 0.1); }
  50% { box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(232, 146, 42, 0.4); }
  100% { box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 10px rgba(232, 146, 42, 0.1); }
}
@keyframes pulse-glow-purple {
  0% { box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 10px rgba(168, 85, 247, 0.1); }
  50% { box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(168, 85, 247, 0.4); }
  100% { box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 10px rgba(168, 85, 247, 0.1); }
}
.adults-column:hover {
  animation: pulse-glow-gold 3s infinite;
}
.kids-column:hover {
  animation: pulse-glow-purple 3s infinite;
}

/* 4. Ghost Float Mascot Animation */
@keyframes ghost-float {
  0% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-8px) rotate(5deg); }
  100% { transform: translateY(0) rotate(-5deg); }
}
.waylen-ghost-mascot {
  animation: ghost-float 4s ease-in-out infinite;
  display: inline-block;
}

/* ============================================================
   FUNCTIONAL UPGRADES - MODALS & CALENDAR (Added v4.1)
   ============================================================ */

/* Modals */
.modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(6, 13, 23, 0.85);
  backdrop-filter: blur(8px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  position: relative;
  background: var(--bg-dark);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  width: 90%;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal.active .modal-content {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover {
  color: white;
}

/* Map specific tweaks */
#map-fullscreen-modal .modal-content {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
.map-interactive-wrapper:hover .map-overlay-hint {
  opacity: 1 !important;
}

/* Adjust mobile nav if needed */
@media (max-width: 768px) {
  .hero-action-buttons {
    flex-direction: column;
    align-items: center;
  }
}


/* ============================================================
   PHOTO CAROUSEL & LIGHTBOX STYLES
   ============================================================ */
.photo-carousel-track::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
.photo-carousel-track {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}
.carousel-nav-arrow:hover {
  background: var(--gold) !important;
  color: #0c182a !important;
  transform: scale(1.1) !important;
}
.carousel-photo-card:hover {
  transform: translateY(-6px) !important;
  border-color: var(--gold) !important;
}
.carousel-photo-card:hover .card-hover-overlay {
  opacity: 1 !important;
}
