/* ═══════════════════════════════════════════════════════════
   THE MONACO — Main Stylesheet
   ═══════════════════════════════════════════════════════════ */

:root {
  --purple-deep:   #7c22c4;   /* slightly brighter than before */
  --purple-mid:    #9333ea;
  --purple-bright: #b06ef5;
  --purple-light:  #f0abfc;
  --purple-pale:   #faf5ff;
  --purple-border: #f3e8ff;
  --dark:          #100d1a;   /* very slightly lighter base */
  --dark-2:        #1c1230;   /* lifted from #1a1025 */
  --dark-3:        #271840;   /* lifted — cards feel less muddy */
  --white:         #ffffff;
  --off-white:     #f0eef5;
  --text-muted:    #9470b0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--dark); overflow-x: hidden; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 150; /* below nav (200) — stops Safari compositing conflict */
  opacity: 0.4;
}

/* ── TYPOGRAPHY BASE ───────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1;
}

a { color: inherit; }

/* ── NAV ───────────────────────────────────────────────────── */

nav#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 16px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(16,13,26,0);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
/* Fills any gap Safari creates above the fixed nav — uses pseudo-element
   so it doesn't bleed horizontally like box-shadow spread would */
nav#nav::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0; right: 0;
  height: 100px;
  background: inherit;
  pointer-events: none;
}

nav#nav.scrolled {
  background: rgba(16,13,26,0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(124,34,196,0.3);
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}

nav#nav.scrolled .nav-logo img,
nav#nav.scrolled .nav-logo .custom-logo {
  height: 52px;
}

.nav-logo a,
.nav-logo .custom-logo-link {
  display: block;
  padding: 4px 0;
}

.nav-logo img,
.nav-logo .custom-logo {
  height: 84px;
  width: auto;
  transition: height 0.3s ease;
  display: block;
}

/* Only invert if using a dark logo uploaded via Customizer */
.nav-logo .custom-logo { filter: brightness(0) invert(1); }

/* Bundled white logo — no filter needed */
.nav-logo .monaco-logo-fallback { filter: none; }

.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
}

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

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

/* Underline on hover */
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--purple-bright);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--white); }

.nav-links .nav-cta,
.nav-links a.nav-cta {
  background: var(--purple-deep);
  color: #fff !important;
  padding: 11px 26px;
  border-radius: 2px;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-links .nav-cta:hover,
.nav-links a.nav-cta:hover {
  background: var(--purple-mid) !important;
  transform: translateY(-1px);
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 210;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

/* Burger → X animation */
.nav-burger span { transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu — animated overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(13,10,20,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 205;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.38s cubic-bezier(0.4,0,0.2,1),
              visibility 0s linear 0.38s;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.38s cubic-bezier(0.4,0,0.2,1),
              visibility 0s linear 0s;
}

/* Nav links staggered slide-in */
.mobile-nav-links {
  list-style: none;
  text-align: center;
}
.mobile-nav-links li {
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobile-menu.is-open .mobile-nav-links li { opacity: 1; transform: translateY(0); }
.mobile-menu.is-open .mobile-nav-links li:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.is-open .mobile-nav-links li:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.is-open .mobile-nav-links li:nth-child(3) { transition-delay: 0.20s; }
.mobile-menu.is-open .mobile-nav-links li:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu.is-open .mobile-nav-links li:nth-child(5) { transition-delay: 0.32s; }

.mobile-nav-links a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav-links a:hover,
.mobile-nav-links .nav-cta { color: var(--purple-bright); }

/* Close button — positioned top-right, circular */
.mobile-menu-close {
  position: absolute;
  top: calc(20px + env(safe-area-inset-top));
  right: calc(20px + env(safe-area-inset-right));
}
.nav-burger-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.4s ease 0.35s, background 0.2s, color 0.2s, border-color 0.2s;
}
.mobile-menu.is-open .nav-burger-close { opacity: 1; }
.nav-burger-close:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

/* ── SHARED BUTTONS ────────────────────────────────────────── */

.btn-primary {
  display: inline-block;
  background: var(--purple-deep);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--purple-mid); transform: translateY(-2px); color: #fff; }

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-outline:hover { border-color: var(--purple-bright); color: var(--purple-bright); transform: translateY(-2px); }

/* ── SHARED SECTION LABELS ─────────────────────────────────── */

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.section-label-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--purple-bright);
  font-family: 'Outfit', sans-serif;
}
.section-label-line {
  height: 1px;
  width: 40px;
  background: var(--purple-bright);
}

.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 480px;
}

.back-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-bright);
  text-decoration: none;
  transition: color 0.2s;
}
.back-link:hover { color: #fff; }

/* ── HERO ──────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px 48px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 30%, rgba(107,33,168,0.45) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(147,51,234,0.2) 0%, transparent 60%),
    linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(107,33,168,0.3);
  top: -100px; right: 5%;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: rgba(168,85,247,0.2);
  bottom: 10%; left: 10%;
  animation-delay: -4s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.hero-line {
  position: absolute;
  top: 0; bottom: 0;
  right: 28%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(147,51,234,0.4) 30%, rgba(147,51,234,0.4) 70%, transparent);
  transform: rotate(8deg) scaleY(1.2);
  transform-origin: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--purple-bright);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--purple-bright);
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}
.hero-headline .accent { color: var(--purple-bright); }

.hero-sub {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  writing-mode: vertical-lr;
  font-family: 'Outfit', sans-serif;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.2s;
}

/* ── TICKER ────────────────────────────────────────────────── */

.ticker {
  background: var(--purple-deep);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  padding: 0 40px;
  color: rgba(255,255,255,0.9);
}
.ticker-dot { color: var(--purple-light); padding: 0 8px; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── EVENTS SECTION ────────────────────────────────────────── */

section { padding: 100px 48px; }

.events-section {
  background: var(--dark-2);
  position: relative;
  padding: 100px 48px;
}
.events-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--purple-mid), transparent);
}

.events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* Event card */
.event-card {
  background: var(--dark-3);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(107,33,168,0.15);
  transition: border-color 0.3s, transform 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.event-card:hover {
  border-color: rgba(147,51,234,0.5);
  transform: translateY(-4px);
  z-index: 1;
}
.event-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--purple-deep), var(--purple-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.event-card:hover::before { transform: scaleX(1); }

.event-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(107,33,168,0.08), transparent 60%);
  pointer-events: none;
}

.event-type-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-bright);
  background: rgba(107,33,168,0.15);
  padding: 4px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 16px;
  font-family: 'Outfit', sans-serif;
}

.event-day-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  position: absolute;
  top: 20px;
  right: 20px;
  letter-spacing: -0.02em;
}

.event-title-card {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--white);
}
.event-meta-card {
  font-size: 12px;
  font-weight: 500;
  color: var(--purple-bright);
  margin-bottom: 8px;
  font-family: 'Outfit', sans-serif;
}
.event-desc-card {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
  margin-bottom: 24px;
  font-family: 'Outfit', sans-serif;
}

.event-cta-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
  font-family: 'Outfit', sans-serif;
}
.event-cta-link::after { content: '→'; transition: transform 0.2s; }
.event-card:hover .event-cta-link { color: var(--purple-bright); }
.event-card:hover .event-cta-link::after { transform: translateX(4px); }

/* Featured card */
.event-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #1a0d2e 0%, var(--dark-3) 100%);
  padding: 48px 40px;
}
.event-card.featured .event-title-card { font-size: 44px; }

.featured-badge {
  background: var(--purple-mid);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
}

.events-empty {
  text-align: center;
  padding: 60px 24px;
  color: rgba(255,255,255,0.4);
  font-size: 15px;
}
.events-empty a { color: var(--purple-bright); }

/* ── HIGHLIGHT / BONGOS ────────────────────────────────────── */

.highlight-section {
  background: var(--dark-2);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.highlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.highlight-visual {
  position: relative;
  overflow: hidden;
  background: #000;
}
.highlight-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.highlight-logo-area {
  position: relative;
  z-index: 2;
  text-align: center;
}
.highlight-logo-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  text-align: center;
  line-height: 1.3;
}
.highlight-logo-area > p {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
}
.highlight-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.highlight-content .section-heading { color: var(--white); margin-bottom: 20px; }
.highlight-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 36px;
}

/* ── WHY US ────────────────────────────────────────────────── */

.why-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 100px 48px;
}
.why-bg-text {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 280px;
  color: rgba(107,33,168,0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 64px;
  background: rgba(107,33,168,0.15);
}
.why-item {
  background: var(--dark);
  padding: 48px 32px;
  transition: background 0.3s;
}
.why-item:hover { background: var(--dark-2); }
.why-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: rgba(107,33,168,0.25);
  line-height: 1;
  margin-bottom: 20px;
}
.why-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.why-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  font-family: 'Outfit', sans-serif;
}

/* ── ADDRESS STRIP ─────────────────────────────────────────── */

.address-strip {
  background: var(--dark-3);
  border-top: 1px solid rgba(107,33,168,0.2);
  border-bottom: 1px solid rgba(107,33,168,0.2);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.address-item { display: flex; align-items: center; gap: 14px; }
.address-icon {
  width: 40px; height: 40px;
  background: rgba(107,33,168,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.address-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-bright);
  margin-bottom: 3px;
  font-family: 'Outfit', sans-serif;
}
.address-value {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  font-family: 'Outfit', sans-serif;
}
.address-value a { color: inherit; text-decoration: none; }
.address-value a:hover { color: var(--purple-bright); }

/* ── FOOTER ────────────────────────────────────────────────── */

footer {
  background: #08060e;
  padding: 60px 48px 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 40px;
}
.footer-logo img,
.footer-logo .custom-logo {
  height: 50px;
  width: auto;
  display: block;
  opacity: 0.8;
}

.footer-logo .custom-logo { filter: brightness(0) invert(1); }
.footer-logo .monaco-logo-fallback { filter: none; }
.footer-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.06em;
  opacity: 0.8;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
  letter-spacing: 0.05em;
  font-family: 'Outfit', sans-serif;
}
.footer-links-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-bright);
  margin-bottom: 16px;
  font-family: 'Outfit', sans-serif;
}
.footer-links-col ul { list-style: none; }
.footer-links-col ul li { margin-bottom: 10px; }
.footer-links-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
  font-family: 'Outfit', sans-serif;
}
.footer-links-col ul li a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  font-family: 'Outfit', sans-serif;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--purple-bright); color: var(--purple-bright); }

/* ── ARCHIVE: ALL EVENTS PAGE ──────────────────────────────── */

/* Dark hero — stays on brand */
.archive-hero {
  background: var(--dark-2);
  padding: 140px 56px 0;
  position: relative;
  overflow: hidden;
}
.archive-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 80% 10%, rgba(124,34,196,0.4) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 5% 90%, rgba(147,51,234,0.12) 0%, transparent 60%);
}
.archive-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.15s;
}
.archive-page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 14px;
}
.archive-page-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  font-family: 'Outfit', sans-serif;
}

/* Filter tabs strip */
.archive-type-filters {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 8px;
}
.type-filter-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 9px 20px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.type-filter-btn:hover,
.type-filter-btn.active {
  background: var(--purple-deep);
  color: #fff;
  border-color: var(--purple-deep);
}

/* ── EVENT ARCHIVE — white section ──────────────────────────── */

.archive-section {
  background: #ffffff;
  padding: 48px 56px 96px;
}

/* List container */
.archive-events-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── HORIZONTAL EVENT CARD (evc) ─────────────────────────────  */

.evc {
  border: 1px solid #ede6ff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(124,34,196,0.05);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.evc:hover {
  border-color: #c9aff0;
  box-shadow: 0 4px 20px rgba(124,34,196,0.1);
}

.evc-link {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  background: #fff;
  transition: background 0.2s;
  min-height: 160px;
}
.evc-link:hover { background: #faf7ff; }

/* Image */
.evc-img {
  position: relative;
  width: 200px;
  height: 100%;
  min-height: 160px;
  flex-shrink: 0;
  overflow: hidden;
}
.evc-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.evc-link:hover .evc-photo { transform: scale(1.05); }

.evc-gradient {
  position: absolute;
  inset: 0;
}
.evc-gradient-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.2);
  text-align: center;
  padding: 12px;
  line-height: 1.2;
}

/* Middle content */
.evc-content {
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
  border-left: 1px solid #f0eaff;
  border-right: 1px solid #f0eaff;
}

/* Category pill */
.evc-pill {
  display: inline-flex;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-deep);
  background: rgba(124,34,196,0.08);
  border: 1px solid rgba(124,34,196,0.2);
  padding: 4px 12px;
  border-radius: 100px;
  align-self: flex-start;
  margin-bottom: 4px;
}

.evc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #1a0d2e;
  transition: color 0.2s;
}
.evc-link:hover .evc-title { color: var(--purple-deep); }

.evc-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: #6b5f80;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.evc-when {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #9470b0;
  margin-top: 4px;
  flex-wrap: wrap;
}
.evc-when-sep { color: #d0c0e8; }

/* Right action column */
.evc-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 28px;
  min-width: 160px;
  flex-shrink: 0;
}

/* Date box */
.evc-datebox {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 1px;
}
.evc-datebox-dow {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9470b0;
}
.evc-datebox-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: -0.01em;
  color: var(--purple-deep);
  line-height: 1;
}
.evc-datebox-mon {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9470b0;
}

/* CTA button */
.evc-btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background: #1a0d2e;
  padding: 11px 22px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background 0.2s;
}
.evc-link:hover .evc-btn { background: var(--purple-deep); }
.evc-btn--tickets { background: var(--purple-deep); }
.evc-link:hover .evc-btn--tickets { background: var(--purple-mid); }


/* Load More */
.load-more-container {
  margin-top: 40px;
  text-align: center;
}
.load-more-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-deep);
  background: #fff;
  border: 1.5px solid var(--purple-deep);
  padding: 14px 36px;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.load-more-btn:hover {
  background: var(--purple-deep);
  color: #fff;
}
#scroll-sentinel { height: 1px; }

/* No-filter-results message */
.no-results-msg {
  padding: 40px 0;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: #9470b0;
}
.inline-reset {
  background: none;
  border: none;
  color: var(--purple-deep);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  font-size: inherit;
  font-family: inherit;
  padding: 0;
}

/* Empty state on light bg */
.events-empty { padding: 80px 0; text-align: center; }
.events-empty-inner { max-width: 420px; margin: 0 auto; }
.events-empty-icon { font-size: 48px; margin-bottom: 20px; }
.events-empty h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.04em;
  color: #1a0d2e;
  margin-bottom: 12px;
}
.events-empty p {
  font-size: 15px;
  color: #6b5f80;
  line-height: 1.6;
  font-family: 'Outfit', sans-serif;
}


/* ── CONTACT FORM 7 ────────────────────────────────────────── */

.wpcf7 { width: 100%; }

.wpcf7-form p {
  margin-bottom: 20px;
}

/* Labels */
.wpcf7-form label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3a2d52;
  margin-bottom: 8px;
}

/* Inputs, textarea, select */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: #1a0d2e;
  background: #faf7ff;
  border: 1.5px solid #e0d4f7;
  border-radius: 4px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form input[type="number"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: var(--purple-deep);
  box-shadow: 0 0 0 3px rgba(124,34,196,0.1);
  background: #fff;
}

.wpcf7-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* Submit button */
.wpcf7-form input[type="submit"],
.wpcf7-submit {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--purple-deep);
  border: none;
  padding: 15px 36px;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.wpcf7-form input[type="submit"]:hover,
.wpcf7-submit:hover {
  background: var(--purple-mid);
  transform: translateY(-1px);
}

/* Validation errors */
.wpcf7-not-valid {
  border-color: #e53e3e !important;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.1) !important;
}
.wpcf7-not-valid-tip {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: #e53e3e;
  margin-top: 4px;
  display: block;
}

/* Response messages */
.wpcf7-response-output {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  padding: 14px 20px;
  border-radius: 4px;
  margin-top: 16px;
  border: none !important;
}
.wpcf7-mail-sent-ok {
  background: #f0fdf4;
  color: #166534;
  border-left: 4px solid #22c55e !important;
}
.wpcf7-mail-sent-ng,
.wpcf7-aborted,
.wpcf7-spam-blocked {
  background: #fef2f2;
  color: #991b1b;
  border-left: 4px solid #ef4444 !important;
}
.wpcf7-acceptance-missing {
  background: #fffbeb;
  color: #92400e;
  border-left: 4px solid #f59e0b !important;
}

/* Control wrap spans — make them block so they stack properly */
.wpcf7-form-control-wrap {
  display: block;
}

/* ── SINGLE EVENT PAGE ─────────────────────────────────────── */

.single-event-page { padding-top: 80px; }

.single-event-hero {
  background: var(--dark-2);
  padding: 100px 48px 80px;
  position: relative;
  overflow: hidden;
}
.single-event-hero .hero-bg { opacity: 0.6; }

.single-event-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.15s;
}

.single-event-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 7vw, 80px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 16px 0 12px;
}

.single-event-meta {
  font-size: 16px;
  font-weight: 600;
  color: var(--purple-bright);
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.03em;
}

.single-event-day-bg {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(160px, 20vw, 300px);
  line-height: 1;
  color: rgba(255,255,255,0.03);
  bottom: -20px;
  right: 48px;
  letter-spacing: -0.02em;
  user-select: none;
}

.single-event-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2px;
  background: var(--dark-3);
}

.single-event-content {
  background: var(--dark);
  padding: 60px 48px;
}

.single-event-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
  font-family: 'Outfit', sans-serif;
}

.single-event-full-content {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  font-family: 'Outfit', sans-serif;
}
.single-event-full-content p { margin-bottom: 16px; }
.single-event-full-content h2,
.single-event-full-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--white);
  margin: 32px 0 12px;
  letter-spacing: 0.03em;
}

.single-event-sidebar {
  background: var(--dark-2);
  padding: 40px 32px;
}

.event-sidebar-card {
  padding: 32px;
  background: var(--dark-3);
  border: 1px solid rgba(107,33,168,0.2);
  margin-bottom: 24px;
}
.event-sidebar-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  color: var(--white);
}

.sidebar-info-row {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sidebar-info-row:last-of-type { border-bottom: none; }
.sidebar-info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-bright);
  display: block;
  margin-bottom: 4px;
  font-family: 'Outfit', sans-serif;
}
.sidebar-info-value {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  font-family: 'Outfit', sans-serif;
}

.related-events { margin-top: 8px; }
.related-events-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 16px;
}
.related-event-item {
  display: block;
  padding: 16px;
  background: var(--dark-3);
  border: 1px solid rgba(107,33,168,0.1);
  text-decoration: none;
  margin-bottom: 4px;
  transition: border-color 0.2s;
}
.related-event-item:hover { border-color: rgba(147,51,234,0.4); }
.related-event-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 4px;
}
.related-event-meta {
  font-size: 11px;
  color: var(--purple-bright);
  font-family: 'Outfit', sans-serif;
}

/* ── GENERIC PAGE ──────────────────────────────────────────── */

.page-hero {
  background: var(--dark-2);
  padding: 140px 48px 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(107,33,168,0.2);
}
.page-hero .hero-bg { opacity: 0.5; }
.page-hero-content {
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.15s;
}
.page-hero .section-heading { color: var(--white); margin-top: 8px; }

.page-body { padding: 60px 48px 100px; }
.page-content {
  max-width: 760px;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  font-family: 'Outfit', sans-serif;
}
.page-content p { margin-bottom: 20px; }
.page-content h2, .page-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--white);
  margin: 40px 0 16px;
  letter-spacing: 0.02em;
}
.page-content h2 { font-size: 36px; }
.page-content h3 { font-size: 26px; }
.page-content a { color: var(--purple-bright); }
.page-content ul, .page-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.page-content li { margin-bottom: 8px; }

/* ── ANIMATIONS ────────────────────────────────────────────── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .evc-link { grid-template-columns: 180px 1fr; min-height: 140px; }
  .evc-action { display: none; }
  .evc-when { display: flex; }
}

@media (max-width: 1024px) {
  .single-event-body { grid-template-columns: 1fr; }
  .single-event-sidebar { padding: 40px 48px; }
}

@media (max-width: 900px) {
  nav#nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .hero { padding: 160px 24px 64px; justify-content: flex-start; min-height: auto; }
  .hero-eyebrow { display: none; }
  section { padding: 64px 24px; }
  .events-section { padding: 64px 24px; }
  .why-section { padding: 64px 24px; }

  .events-grid { grid-template-columns: 1fr; }
  .event-card.featured { grid-column: span 1; }
  .event-card.featured .event-title-card { font-size: 32px; }

  .why-grid { grid-template-columns: 1fr 1fr; }

  .highlight-inner { grid-template-columns: 1fr; }
  .highlight-visual { min-height: 280px; }
  .highlight-content { padding: 48px 24px; }

  .address-strip { padding: 24px; flex-direction: column; align-items: flex-start; gap: 24px; }
  .address-strip > .btn-primary { align-self: center; text-align: center; }
  .events-header { flex-direction: column; align-items: flex-start; }

  footer { padding: 40px 24px 24px; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }

  .hero-scroll { display: none; }

  .archive-hero { padding: 150px 24px 0; }
  .page-hero { padding: 150px 24px 32px; }
  .archive-section { padding: 32px 24px 64px; }
  .evc-link { grid-template-columns: 130px 1fr; min-height: 130px; }
  .evc-img { width: 130px; min-height: 130px; }
  .evc-content { padding: 16px 18px; }
  .evc-title { font-size: 22px; }

  .single-event-hero { padding: 100px 24px 60px; }
  .single-event-content { padding: 40px 24px; }
  .single-event-sidebar { padding: 40px 24px; }
}

@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .evc-link { grid-template-columns: 1fr; }
  .evc-img { width: 100%; height: 180px; min-height: 180px; }
  .evc-desc { -webkit-line-clamp: 4; }

  /* Prominent date badge on mobile */
  .evc-when {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--purple-deep);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 5px 12px;
    border-radius: 100px;
    margin-top: 0;
    margin-bottom: 8px;
    order: -1;
  }
  .evc-when-sep { color: rgba(255,255,255,0.4); }
}
