/**
* Template Name: Green
* Template URL: https://bootstrapmade.com/green-free-one-page-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/


/* =========================================
    1. VARIABLES
========================================= */
:root {
  --gold: #d6a84f;
  --gold-light: #f2d58c;
  --black: #050505;
  --panel: #101010;
  --white: #f7f5f0;
  --muted: #a5a19a;

  --display: "Bebas Neue", Impact, sans-serif;
  --body: "Montserrat", Arial, sans-serif;

  --section-space: clamp(5rem, 9vw, 9rem);
  --transition: 300ms cubic-bezier(.2,.7,.2,1);
}

/* =========================================
    2. BASE
========================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--gold-light);
}

::selection {
  background: var(--gold);
  color: #050505;
}

.section-pad {
  padding: var(--section-space) 0;
}

.eyebrow {
  color: var(--gold);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  line-height: .95;
  margin: 0;
}

.section-title span {
  color: var(--gold);
}

.btn {
  border-radius: 0;
  padding: 1rem 1.35rem;
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-gold {
  color: #080808;
  background: var(--gold);
  border: 1px solid var(--gold);
}

.btn-gold:hover {
  color: #080808;
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-3px);
}

.btn-outline-light:hover {
  color: #080808;
  background: var(--white);
  transform: translateY(-3px);
}

.text-link {
  color: var(--gold);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.text-link span {
  display: inline-block;
  margin-left: .5rem;
  transition: transform var(--transition);
}

.text-link:hover span {
  transform: translate(4px, -4px);
}

/* =========================================
    3. NAVIGATION
========================================= */
.site-nav {
  padding: 1.1rem 0;
  border-bottom: 1px solid transparent;
  transition: background var(--transition),
              padding var(--transition),
              border-color var(--transition);
}

.site-nav.scrolled {
  padding: .65rem 0;
  background: rgba(5,5,5,.94);
  backdrop-filter: blur(14px);
  border-color: rgba(214,168,79,.2);
}

.brand-mark {
  color: #fff !important;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-mark span {
  color: var(--gold);
}

.navbar-nav {
  gap: .75rem;
}

.site-nav .nav-link {
  color: #eee;
  padding: .7rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.nav-cta {
  padding: .75rem 1rem;
  font-size: .65rem;
}

/* =========================================
    4. HERO
========================================= */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #080808;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    url("https://images.unsplash.com/photo-1571266028243-d220c9c3b7c5?auto=format&fit=crop&w=2200&q=85")
    center / cover;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.88),
      rgba(0,0,0,.48) 55%,
      rgba(0,0,0,.25)
    ),
    linear-gradient(0deg, #050505 0%, transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 8rem;
  padding-bottom: 7rem;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(5rem, 15vw, 14rem);
  line-height: .76;
  letter-spacing: .015em;
  margin: 0 0 2rem;
}

.hero-title span {
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  text-shadow: 0 0 35px rgba(214,168,79,.1);
}

.hero-copy {
  max-width: 450px;
  color: #ddd;
  font-size: clamp(.9rem, 1.4vw, 1.05rem);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin-top: 5rem;
  color: #ddd;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .2em;
}

.scroll-cue span {
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero-stamp {
  position: absolute;
  right: 7%;
  bottom: 14%;
  color: rgba(255,255,255,.45);
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: .85;
  text-align: right;
}

/* =========================================
    5. INTRO
========================================= */
.intro-section {
  background: var(--black);
}

.intro-copy {
  max-width: 650px;
  margin-top: 1.7rem;
  color: var(--muted);
  font-size: 1rem;
}

/* =========================================
    6. VENUES
========================================= */
.venues-section {
  background: #0a0a0a;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.section-side-copy {
  color: var(--muted);
  font-size: .78rem;
  text-align: right;
  margin: 0;
}

.venue-card {
  height: 100%;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,.07);
  transition: transform var(--transition),
              border-color var(--transition);
}

.venue-card:hover {
  transform: translateY(-8px);
  border-color: rgba(214,168,79,.55);
}

.venue-image {
  height: 300px;
  position: relative;
  background-position: center;
  background-size: cover;
}

.venue-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,rgba(0,0,0,.5),transparent 65%);
}

.venue-image-conquer {
  background-image:
    url("https://images.unsplash.com/photo-1571266028243-d220c9c3b7c5?auto=format&fit=crop&w=1000&q=80");
}

.venue-image-legends {
  background-image:
    url("https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=1000&q=80");
}

.venue-image-emzini {
  background-image:
    url("https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=1000&q=80");
}

.venue-card-content {
  padding: 1.7rem;
}

.venue-number {
  color: var(--gold);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
  margin-bottom: .6rem;
}

.venue-card h3 {
  font-family: var(--display);
  font-size: 2.8rem;
  letter-spacing: .04em;
  margin: 0;
}

.venue-card-content > p:not(.venue-number) {
  min-height: 3.5rem;
  margin: .7rem 0 1.4rem;
  color: var(--muted);
  font-size: .8rem;
}

/* =========================================
    7. MARQUEE
========================================= */
.brand-marquee {
  overflow: hidden;
  padding: 1rem 0;
  background: var(--gold);
  color: #080808;
}

.marquee-track {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 3rem;
  min-width: 900px;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: .08em;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee-track i {
  font-size: 1rem;
  font-style: normal;
}

/* =========================================
    8. EVENTS
========================================= */
.events-section {
  background: var(--black);
}

.events-list {
  border-top: 1px solid rgba(255,255,255,.16);
}

.event-row {
  display: grid;
  grid-template-columns: 110px 1fr 50px;
  align-items: center;
  gap: 2rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
  transition: padding var(--transition);
}

.event-row:hover {
  padding-left: .8rem;
  padding-right: .8rem;
}

.event-date {
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
}

.event-date strong {
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.event-date span {
  color: var(--muted);
  font-size: .55rem;
  letter-spacing: .1em;
}

.event-label {
  color: var(--gold);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
  margin: 0;
}

.event-main h3 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin: 0;
}

.event-main p:last-child {
  color: var(--muted);
  font-size: .78rem;
  margin: .3rem 0 0;
}

.event-arrow {
  color: var(--gold);
  font-size: 2rem;
  text-align: right;
  transition: transform var(--transition);
}

.event-arrow:hover {
  transform: translate(4px,-4px);
}

.demo-note {
  color: #777;
  font-size: .65rem;
  margin-top: 1.5rem;
}

/* =========================================
    9. GALLERY
========================================= */
.gallery-section {
  background: #0a0a0a;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-tile {
  min-height: 180px;
  background-position: center;
  background-size: cover;
  filter: saturate(.72);
  transition: filter var(--transition),
              transform var(--transition);
}

.gallery-tile:hover {
  filter: saturate(1);
  transform: scale(.99);
}

.gallery-one {
  grid-column: span 2;
  grid-row: span 2;
  background-image:
    url("https://images.unsplash.com/photo-1506157786151-b8491531f063?auto=format&fit=crop&w=1200&q=80");
}

.gallery-two {
  background-image:
    url("https://images.unsplash.com/photo-1571266028243-d220c9c3b7c5?auto=format&fit=crop&w=800&q=80");
}

.gallery-three {
  background-image:
    url("https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=800&q=80");
}

.gallery-four {
  background-image:
    url("https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?auto=format&fit=crop&w=800&q=80");
}

.gallery-five {
  background-image:
    url("https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=800&q=80");
}

.gallery-six {
  background-image:
    url("https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?auto=format&fit=crop&w=800&q=80");
}

/* =========================================
    10. CONTACT
========================================= */
.contact-section {
  background:
    radial-gradient(ellipse at center,rgba(214,168,79,.12),transparent 60%),
    #050505;
}

.contact-panel {
  padding: clamp(2rem, 6vw, 6rem);
  text-align: center;
  border: 1px solid rgba(214,168,79,.25);
  background: rgba(255,255,255,.015);
}

.contact-panel > p:not(.eyebrow) {
  color: var(--muted);
  margin: 1.5rem 0;
}

.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .8rem;
}

.contact-panel small {
  display: block;
  color: #777;
  font-size: .62rem;
  margin-top: 1.5rem;
}

/* =========================================
    11. FOOTER
========================================= */
.site-footer {
  padding: 2.5rem 0 5rem;
  background: #030303;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-inner p {
  color: var(--muted);
  font-size: .7rem;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer small {
  width: 100%;
  color: #666;
  font-size: .62rem;
}

.mobile-book-bar {
  display: none;
}

/* =========================================
    12. ANIMATIONS
========================================= */
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-30%); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
    13. RESPONSIVE BREAKPOINTS
========================================= */

/* Large laptop and desktop */
@media (min-width: 1200px) {
  .venue-image {
    height: 330px;
  }
}

/* Tablets and smaller laptops */
@media (max-width: 991.98px) {
  .site-nav {
    background: rgba(5,5,5,.94);
  }

  .navbar-collapse {
    padding: 1rem 0;
  }

  .navbar-nav {
    align-items: stretch !important;
  }

  .nav-cta {
    display: inline-block;
    margin-top: .5rem;
  }

  .hero-stamp {
    right: 5%;
    bottom: 10%;
  }

  .section-heading {
    align-items: start;
  }

  .gallery-grid {
    grid-auto-rows: 180px;
  }
}

/* Tablets */
@media (max-width: 767.98px) {
  :root {
    --section-space: 5rem;
  }

  .hero-content {
    padding-top: 8rem;
  }

  .hero-title {
    font-size: clamp(5rem, 20vw, 9rem);
  }

  .hero-stamp {
    display: none;
  }

  .section-heading {
    display: block;
  }

  .section-side-copy {
    margin-top: 1rem;
    text-align: left;
  }

  .venue-image {
    height: 300px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
  }

  .gallery-one {
    grid-column: span 2;
    grid-row: span 1;
  }

  .event-row {
    grid-template-columns: 75px 1fr 25px;
    gap: 1rem;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }

  .footer-links {
    width: 100%;
    justify-content: center;
  }

  .site-footer small {
    text-align: center;
  }

  .mobile-book-bar {
    display: block;
    position: fixed;
    z-index: 1020;
    bottom: 0;
    left: 0;
    right: 0;
    padding: .9rem;
    background: var(--gold);
    color: #080808;
    text-align: center;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
  }

  .mobile-book-bar a {
    display: block;
  }

  .mobile-book-bar span {
    margin-left: .6rem;
  }
}

/* Phones */
@media (max-width: 575.98px) {
  body {
    font-size: 13px;
  }

  .hero-title {
    font-size: clamp(4.5rem, 22vw, 7rem);
  }

  .hero-copy {
    max-width: 320px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 290px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .scroll-cue {
    margin-top: 3rem;
  }

  .section-title {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  .venue-image {
    height: 240px;
  }

  .venue-card-content {
    padding: 1.3rem;
  }

  .event-row {
    grid-template-columns: 58px 1fr 20px;
    padding: 1.3rem 0;
  }

  .event-date {
    padding-left: .6rem;
  }

  .event-date strong {
    font-size: 1.5rem;
  }

  .event-main h3 {
    font-size: 1.65rem;
  }

  .event-main p:last-child {
    font-size: .68rem;
  }

  .gallery-grid {
    grid-auto-rows: 135px;
    gap: 8px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .btn {
    width: 100%;
  }
}

/* Large displays */
@media (min-width: 1600px) {
  .container {
    max-width: 1440px;
  }

  .hero-content {
    padding-top: 10rem;
  }

  .venue-image {
    height: 360px;
  }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Footer Background Image Setup */
footer#footer.footer {
  position: relative;
  background-image: url('../img/footer-bg.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll; /* Use 'fixed' for a parallax effect */
  color: #ffffff;
  z-index: 1;
}

/* Dark Overlay for Text Readability */
footer#footer.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 23, 34, 0.90); /* Adjust opacity (0.85 - 0.92) to match your dark-background aesthetic */
  z-index: -1;
}

/* Ensure content stays above the overlay */
footer#footer.footer .container {
  position: relative;
  z-index: 2;
}

/* Ensure footer links contrast clearly */
footer#footer.footer .footer-links ul li a,
footer#footer.footer .contact-info p,
footer#footer.footer .footer-bottom {
  color: rgba(255, 255, 255, 0.85);
}

footer#footer.footer .footer-links ul li a:hover {
  color: #ffffff;
}

/* 1. Add this CSS to your main stylesheet (e.g., style.css) */
.section-grad {
  /* Rich automotive blue gradient with soft subtle overlay */
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #2563eb 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Subtle glowing accent circle in the background */
.section-grad::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* 2. Style heading and paragraph texts for high contrast */
.section-grad .section-title h2,
.section-grad .section-title p,
.section-grad h3,
.section-grad h4,
.section-grad .intro-title,
.section-grad .f-title {
  color: #ffffff !important;
}

.section-grad p,
.section-grad .f-text,
.section-grad .intro-text {
  color: #cbd5e1 !important; /* Soft light gray for readability */
}

/* 3. Modern Glassmorphism Cards for Feature Items */
.section-grad .intro-panel,
.section-grad .feature-item,
.section-grad .assurance-banner {
  background: rgba(255, 255, 255, 0.07) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Hover effect on cards */
.section-grad .feature-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12) !important;
}

/* Adjust metadata tag text colors */
.section-grad .f-meta span {
  color: #93c5fd !important;
}

/* Primary Button inside Gradient */
.section-grad .cta-btn,
.section-grad .banner-btn {
  background-color: #ffffff;
  color: #1e3a8a;
  font-weight: 600;
  border: none;
}

.section-grad .cta-btn:hover,
.section-grad .banner-btn:hover {
  background-color: #f1f5f9;
  color: #2563eb;
}

/* Secondary Link Button inside Gradient */
.section-grad .link-btn {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-grad .link-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* ============================================================
     INLINE STYLES (scoped to .vem-single-event)
     ============================================================ */
.vem-single-event {
    --vem-dark: #0d0d0d;
    --vem-accent: #e63946;
    --vem-muted: #6b7280;
    --vem-border: #e5e7eb;
    --vem-bg-soft: #f9fafb;
    --vem-radius: 10px;
    font-family: inherit;
    color: #111;
    line-height: 1.6;
}
.vem-single-event * { box-sizing: border-box; }

/* ---------- HERO ---------- */
.vem-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-color: #111;
    color: #fff;
    padding: 0 24px 48px;
    overflow: hidden;
}
.vem-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.15) 100%);
    z-index: 1;
}
.vem-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}
.vem-hero-cats {
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: 12px;
    opacity: .85;
    margin: 0 0 8px;
}
.vem-hero-featured {
    display: inline-block;
    background: #fbbf24;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
}
.vem-hero-title {
    font-size: clamp(32px, 5vw, 60px);
    line-height: 1.1;
    margin: 0 0 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.vem-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 15px;
    opacity: .95;
    margin-bottom: 16px;
}
.vem-hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.vem-hero-status {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    background: #fff;
    color: #111;
}
.vem-status-cancelled { background: #b91c1c; color: #fff; }
.vem-status-sold_out  { background: #f59e0b; color: #111; }
.vem-status-past      { background: #6b7280; color: #fff; }
.vem-status-postponed { background: #4338ca; color: #fff; }

/* ---------- BODY LAYOUT ---------- */
.vem-body {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
}
@media (max-width: 900px) {
    .vem-body { grid-template-columns: 1fr; gap: 32px; }
}
.vem-content { min-width: 0; }
.vem-lede {
    font-size: 20px;
    line-height: 1.5;
    color: #374151;
    margin: 0 0 28px;
    font-weight: 400;
}
.vem-description { font-size: 17px; }
.vem-description h2 { font-size: 26px; margin-top: 36px; }
.vem-description img { max-width: 100%; height: auto; border-radius: var(--vem-radius); }

.vem-section-title {
    font-size: 22px;
    font-weight: 700;
    margin: 48px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--vem-border);
}

/* ---------- VENUE BLOCK ---------- */
.vem-venue-card {
    border: 1px solid var(--vem-border);
    border-radius: var(--vem-radius);
    overflow: hidden;
    background: #fff;
}
.vem-venue-info { padding: 24px; }
.vem-venue-info h3 { margin: 0 0 8px; font-size: 20px; }
.vem-venue-address { color: var(--vem-muted); margin: 0 0 12px; }
.vem-venue-phone { margin: 0 0 16px; }
.vem-venue-link { display: inline-block; margin-top: 12px; color: var(--vem-accent); text-decoration: none; font-weight: 600; }
.vem-venue-map iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
    border-top: 1px solid var(--vem-border);
}

/* ---------- RSVP SECTION ---------- */
.vem-rsvp-section {
    scroll-margin-top: 90px;
}
.vem-rsvp-section .vem-rsvp-wrap {
    background: var(--vem-bg-soft);
    padding: 28px;
    border-radius: var(--vem-radius);
    border: 1px solid var(--vem-border);
}

/* ---------- SIDEBAR ---------- */
.vem-sidebar {
    position: sticky;
    top: 24px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.vem-card {
    border: 1px solid var(--vem-border);
    border-radius: var(--vem-radius);
    padding: 20px;
    background: #fff;
}
.vem-card-label {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 11px;
    color: var(--vem-muted);
    margin: 0 0 6px;
    font-weight: 700;
}
.vem-card-value {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 14px;
}
.vem-card-value:last-child { margin-bottom: 0; }
.vem-card-sub { color: var(--vem-muted); margin: 0 0 12px; font-size: 14px; }
.vem-card-price { font-size: 26px; font-weight: 800; margin: 0 0 14px; }

/* ---------- BUTTONS ---------- */
.vem-btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: transform .15s ease, background .15s ease;
    cursor: pointer;
    border: 0;
}
.vem-btn:hover { transform: translateY(-1px); }
.vem-btn-primary { background: var(--vem-accent); color: #fff; display: block; width: 100%; }
.vem-btn-primary:hover { background: #c62b39; color: #fff; }
.vem-btn-outline {
    background: transparent;
    border: 2px solid var(--vem-dark);
    color: var(--vem-dark);
}
.vem-btn-outline:hover { background: var(--vem-dark); color: #fff; }
.vem-btn-sm { padding: 8px 14px; font-size: 13px; }

/* ---------- SHARE ---------- */
.vem-share-buttons { display: flex; gap: 8px; }
.vem-share-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--vem-bg-soft);
    color: var(--vem-dark);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--vem-border);
}
.vem-share-buttons a:hover { background: var(--vem-dark); color: #fff; }

.vem-full-notice {
    margin: 10px 0 0;
    font-size: 13px;
    color: #b45309;
    background: #fff7ed;
    padding: 8px 12px;
    border-radius: 6px;
}

/* ---------- RELATED EVENTS ---------- */
.vem-related {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 80px;
}
.vem-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 800px) {
    .vem-related-grid { grid-template-columns: 1fr; }
}
.vem-related-card {
    display: block;
    border: 1px solid var(--vem-border);
    border-radius: var(--vem-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #fff;
    transition: transform .15s ease, box-shadow .15s ease;
}
.vem-related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
}
.vem-related-img {
    height: 160px;
    background: #111 center/cover no-repeat;
}
.vem-related-body { padding: 16px; }
.vem-related-body h3 { margin: 6px 0 0; font-size: 17px; }
.vem-related-date {
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 11px;
    color: var(--vem-muted);
    margin: 0;
    font-weight: 700;
}

/* ============================================================
     INLINE STYLES (scoped to .vem-single-venue)
     ============================================================ */
.vem-single-venue {
    --vem-dark:    #0d0d0d;
    --vem-accent:  #e63946;
    --vem-muted:   #6b7280;
    --vem-border:  #e5e7eb;
    --vem-bg-soft: #f9fafb;
    --vem-radius:  10px;
    font-family: inherit;
    color: #111;
    line-height: 1.6;
}
.vem-single-venue * { box-sizing: border-box; }

/* HERO */
.vem-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-color: #111;
    color: #fff;
    padding: 0 24px 48px;
}
.vem-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.15) 100%);
}
.vem-hero-content { position: relative; max-width: 1100px; width: 100%; margin: 0 auto; }
.vem-hero-badge {
    display: inline-block;
    background: var(--vem-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.vem-hero-cats { text-transform: uppercase; letter-spacing: .15em; font-size: 12px; opacity: .85; margin: 0 0 8px; }
.vem-hero-title { font-size: clamp(32px, 5vw, 60px); line-height: 1.1; margin: 0 0 16px; font-weight: 800; letter-spacing: -0.02em; }
.vem-hero-meta { display: flex; flex-wrap: wrap; gap: 20px; font-size: 15px; opacity: .95; }
.vem-hero-meta-item { display: inline-flex; align-items: center; gap: 6px; }
.vem-hero-meta-item a { color: inherit; text-decoration: none; }
.vem-hero-meta-item a:hover { text-decoration: underline; }

/* BODY */
.vem-body {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
}
@media (max-width: 900px) { .vem-body { grid-template-columns: 1fr; gap: 32px; } }

.vem-lede { font-size: 20px; line-height: 1.5; color: #374151; margin: 0 0 28px; }
.vem-description { font-size: 17px; }
.vem-description img { max-width: 100%; height: auto; border-radius: var(--vem-radius); }
.vem-section-title {
    font-size: 22px;
    font-weight: 700;
    margin: 48px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--vem-border);
}

/* INFO GRID */
.vem-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    background: var(--vem-bg-soft);
    padding: 24px;
    border-radius: var(--vem-radius);
}
@media (max-width: 600px) { .vem-info-grid { grid-template-columns: 1fr; } }
.vem-info-item { min-width: 0; }
.vem-info-full { grid-column: 1 / -1; }
.vem-info-label {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 11px;
    color: var(--vem-muted);
    margin: 0 0 4px;
    font-weight: 700;
}
.vem-info-value { margin: 0; font-size: 16px; font-weight: 500; }
.vem-info-value a { color: var(--vem-dark); text-decoration: none; }
.vem-info-value a:hover { color: var(--vem-accent); }

/* MAP */
.vem-map-embed {
    border-radius: var(--vem-radius);
    overflow: hidden;
    border: 1px solid var(--vem-border);
}
.vem-map-embed iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: 0;
}
.vem-map-link { margin-top: 12px; }

/* EVENT LIST */
.vem-event-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.vem-event-list-link {
    display: grid;
    grid-template-columns: 100px 1fr 40px;
    gap: 16px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--vem-border);
    border-radius: var(--vem-radius);
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: transform .15s ease, box-shadow .15s ease;
}
.vem-event-list-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,.07);
}
.vem-event-list-thumb {
    height: 80px;
    background: #111 center/cover no-repeat;
    border-radius: 6px;
}
.vem-event-list-body { min-width: 0; }
.vem-event-list-date {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 11px;
    font-weight: 700;
    color: var(--vem-accent);
    margin: 0 0 4px;
}
.vem-event-list-body h3 { margin: 0 0 4px; font-size: 17px; }
.vem-event-list-meta { margin: 0; font-size: 13px; color: var(--vem-muted); }
.vem-event-list-arrow { font-size: 20px; color: var(--vem-muted); text-align: right; }
.vem-event-list-link:hover .vem-event-list-arrow { color: var(--vem-accent); }
@media (max-width: 500px) {
    .vem-event-list-link { grid-template-columns: 1fr; }
    .vem-event-list-thumb { display: none; }
    .vem-event-list-arrow { display: none; }
}

/* SIDEBAR */
.vem-sidebar { position: sticky; top: 24px; align-self: start; display: flex; flex-direction: column; gap: 16px; }
.vem-card {
    border: 1px solid var(--vem-border);
    border-radius: var(--vem-radius);
    padding: 20px;
    background: #fff;
}
.vem-card-label {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 11px;
    color: var(--vem-muted);
    margin: 0 0 8px;
    font-weight: 700;
}
.vem-card-value { font-size: 17px; font-weight: 600; margin: 0 0 8px; }
.vem-card-value:last-child { margin-bottom: 0; }
.vem-card-sub { color: var(--vem-muted); margin: 0 0 10px; font-size: 14px; }
.vem-card-sub a { color: inherit; text-decoration: none; }

/* BUTTONS */
.vem-btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: transform .15s ease, background .15s ease;
    cursor: pointer;
    border: 0;
}
.vem-btn:hover { transform: translateY(-1px); }
.vem-btn-primary { background: var(--vem-accent); color: #fff; display: block; width: 100%; }
.vem-btn-primary:hover { background: #c62b39; color: #fff; }
.vem-btn-outline { background: transparent; border: 2px solid var(--vem-dark); color: var(--vem-dark); }
.vem-btn-outline:hover { background: var(--vem-dark); color: #fff; }

/* SHARE */
.vem-share-buttons { display: flex; gap: 8px; }
.vem-share-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--vem-bg-soft);
    color: var(--vem-dark);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--vem-border);
}
.vem-share-buttons a:hover { background: var(--vem-dark); color: #fff; }

/* RELATED VENUES */
.vem-related { max-width: 1100px; margin: 0 auto; padding: 0 24px 80px; }
.vem-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 800px) { .vem-related-grid { grid-template-columns: 1fr; } }
.vem-related-card {
    display: block;
    border: 1px solid var(--vem-border);
    border-radius: var(--vem-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #fff;
    transition: transform .15s ease, box-shadow .15s ease;
}
.vem-related-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.08); }
.vem-related-img { height: 160px; background: #111 center/cover no-repeat; }
.vem-related-body { padding: 16px; }
.vem-related-body h3 { margin: 6px 0 0; font-size: 17px; }
.vem-related-date {
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 11px;
    color: var(--vem-muted);
    margin: 0;
    font-weight: 700;
}

/* ============================================================
     INLINE STYLES (scoped to archive)
     ============================================================ */
.vem-archive-header {
    background: #0d0d0d;
    color: #fff;
    padding: 80px 24px 60px;
    text-align: center;
}
.vem-archive-header-inner { max-width: 900px; margin: 0 auto; }
.vem-archive-eyebrow {
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: 12px;
    opacity: .7;
    margin: 0 0 12px;
}
.vem-archive-title {
    font-size: clamp(32px, 5vw, 56px);
    margin: 0 0 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.vem-archive-lede { font-size: 18px; opacity: .85; margin: 0; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ============ WRAP ============ */
.vem-archive-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

/* ============ FILTERS ============ */
.vem-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 32px;
}
.vem-filter-group { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.vem-filter-cats { flex: 1 1 100%; }
.vem-filter-count {
    margin-left: auto;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #6b7280;
    font-weight: 600;
}

.vem-tab {
    padding: 8px 18px;
    border-radius: 999px;
    text-decoration: none;
    color: #111;
    font-weight: 600;
    font-size: 14px;
    background: #f3f4f6;
    border: 2px solid transparent;
    transition: all .15s ease;
}
.vem-tab:hover { background: #e5e7eb; }
.vem-tab.is-active { background: #111; color: #fff; border-color: #111; }

.vem-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    text-decoration: none;
    color: #111;
    font-weight: 500;
    font-size: 13px;
    background: transparent;
    border: 1px solid #e5e7eb;
    transition: all .15s ease;
}
.vem-pill:hover { border-color: #111; }
.vem-pill.is-active { background: #111; color: #fff; border-color: #111; }
.vem-pill-count {
    font-size: 11px;
    background: rgba(0,0,0,.08);
    padding: 1px 6px;
    border-radius: 999px;
    font-weight: 600;
}
.vem-pill.is-active .vem-pill-count { background: rgba(255,255,255,.2); color: #fff; }

.vem-active-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #fee2e2;
    color: #991b1b;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}
.vem-active-filter a { color: inherit; text-decoration: none; font-size: 16px; font-weight: 700; }

/* ============ GRID ============ */
.vem-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 900px) { .vem-archive-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .vem-archive-grid { grid-template-columns: 1fr; } }

.vem-event-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease;
}
.vem-event-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.08); }
.vem-event-card.is-past { opacity: .75; }

.vem-event-card-link { display: block; text-decoration: none; color: inherit; }

.vem-event-card-image {
    position: relative;
    height: 200px;
    background: #1a1a1a center/cover no-repeat;
}
.vem-event-card-featured {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fbbf24;
    color: #111;
    font-weight: 700;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
}
.vem-event-card-date {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    min-width: 56px;
}
.vem-event-card-day { display: block; font-size: 22px; font-weight: 800; line-height: 1; color: #111; }
.vem-event-card-month { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: #6b7280; font-weight: 700; margin-top: 2px; }

.vem-event-card-body { padding: 20px; }

.vem-event-card-venue {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 11px;
    color: #6b7280;
    margin: 0 0 8px;
    font-weight: 700;
}
.vem-event-card-title {
    font-size: 20px;
    margin: 0 0 10px;
    line-height: 1.25;
    font-weight: 700;
}
.vem-event-card-excerpt {
    font-size: 14px;
    color: #4b5563;
    margin: 0 0 14px;
    line-height: 1.5;
}
.vem-event-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 14px;
}
.vem-event-card-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.vem-event-card-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 12px;
}
.vem-status-sold_out  { background: #fff4e5; color: #b45309; }
.vem-status-cancelled { background: #fdecea; color: #b91c1c; }
.vem-status-postponed { background: #eef2ff; color: #4338ca; }
.vem-status-past      { background: #f1f5f9; color: #475569; }

.vem-event-card-cta {
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    color: #e63946;
    transition: transform .15s ease;
}
.vem-event-card:hover .vem-event-card-cta { transform: translateX(3px); }

/* ============ PAGINATION ============ */
.vem-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.vem-pagination a,
.vem-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: #111;
    background: #f3f4f6;
    transition: background .15s ease, color .15s ease;
}
.vem-pagination a:hover { background: #e5e7eb; }
.vem-pagination .current {
    background: #111;
    color: #fff;
}

/* ============ EMPTY STATE ============ */
.vem-empty-state {
    text-align: center;
    padding: 80px 24px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px dashed #d1d5db;
}
.vem-empty-icon { font-size: 48px; margin: 0 0 12px; }
.vem-empty-state h2 { margin: 0 0 8px; font-size: 24px; }
.vem-empty-state p { color: #6b7280; margin: 0 0 20px; }

/* ============ BUTTONS ============ */
.vem-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: transform .15s ease, background .15s ease;
    cursor: pointer;
    border: 0;
}
.vem-btn:hover { transform: translateY(-1px); }
.vem-btn-outline { background: transparent; border: 2px solid #111; color: #111; }
.vem-btn-outline:hover { background: #111; color: #fff; }

/* ============================================================
     INLINE STYLES (scoped to archive-event)
     ============================================================ */
/* ============ HEADER ============ */
.vem-archive-header {
    background: #0d0d0d;
    color: #fff;
    padding: 80px 24px 60px;
    text-align: center;
}
.vem-archive-header-inner { max-width: 900px; margin: 0 auto; }
.vem-archive-eyebrow {
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: 12px;
    opacity: .7;
    margin: 0 0 12px;
}
.vem-archive-title {
    font-size: clamp(32px, 5vw, 56px);
    margin: 0 0 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.vem-archive-lede {
    font-size: 18px;
    opacity: .85;
    margin: 0 auto;
    max-width: 640px;
}

/* ============ WRAP ============ */
.vem-archive-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

/* ============ FILTERS ============ */
.vem-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 32px;
}
.vem-filter-group { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.vem-filter-cats { flex: 1 1 100%; }
.vem-filter-count {
    margin-left: auto;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #6b7280;
    font-weight: 600;
}

.vem-tab {
    padding: 8px 18px;
    border-radius: 999px;
    text-decoration: none;
    color: #111;
    font-weight: 600;
    font-size: 14px;
    background: #f3f4f6;
    border: 2px solid transparent;
    transition: all .15s ease;
}
.vem-tab:hover { background: #e5e7eb; }
.vem-tab.is-active { background: #111; color: #fff; border-color: #111; }

.vem-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    text-decoration: none;
    color: #111;
    font-weight: 500;
    font-size: 13px;
    background: transparent;
    border: 1px solid #e5e7eb;
    transition: all .15s ease;
}
.vem-pill:hover { border-color: #111; }
.vem-pill.is-active { background: #111; color: #fff; border-color: #111; }
.vem-pill-count {
    font-size: 11px;
    background: rgba(0,0,0,.08);
    padding: 1px 6px;
    border-radius: 999px;
    font-weight: 600;
}
.vem-pill.is-active .vem-pill-count { background: rgba(255,255,255,.2); color: #fff; }

.vem-active-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #fee2e2;
    color: #991b1b;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}
.vem-active-filter a {
    color: inherit;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
}

/* ============ GRID ============ */
.vem-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 900px) { .vem-archive-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .vem-archive-grid { grid-template-columns: 1fr; } }

.vem-event-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease;
}
.vem-event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0,0,0,.08);
}
.vem-event-card.is-past { opacity: .75; }

.vem-event-card-link { display: block; text-decoration: none; color: inherit; }

.vem-event-card-image {
    position: relative;
    height: 200px;
    background: #1a1a1a center/cover no-repeat;
}
.vem-event-card-featured {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fbbf24;
    color: #111;
    font-weight: 700;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
}
.vem-event-card-date {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    min-width: 56px;
}
.vem-event-card-day {
    display: block;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    color: #111;
}
.vem-event-card-month {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #6b7280;
    font-weight: 700;
    margin-top: 2px;
}

.vem-event-card-body { padding: 20px; }

.vem-event-card-venue {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 11px;
    color: #6b7280;
    margin: 0 0 8px;
    font-weight: 700;
}
.vem-event-card-title {
    font-size: 20px;
    margin: 0 0 10px;
    line-height: 1.25;
    font-weight: 700;
}
.vem-event-card-excerpt {
    font-size: 14px;
    color: #4b5563;
    margin: 0 0 14px;
    line-height: 1.5;
}
.vem-event-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 14px;
}
.vem-event-card-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.vem-event-card-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 12px;
}
.vem-status-sold_out  { background: #fff4e5; color: #b45309; }
.vem-status-cancelled { background: #fdecea; color: #b91c1c; }
.vem-status-postponed { background: #eef2ff; color: #4338ca; }
.vem-status-past      { background: #f1f5f9; color: #475569; }

.vem-event-card-cta {
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    color: #e63946;
    transition: transform .15s ease;
}
.vem-event-card:hover .vem-event-card-cta { transform: translateX(3px); }

/* ============ PAGINATION ============ */
.vem-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.vem-pagination a,
.vem-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: #111;
    background: #f3f4f6;
    transition: background .15s ease, color .15s ease;
}
.vem-pagination a:hover { background: #e5e7eb; }
.vem-pagination .current {
    background: #111;
    color: #fff;
}

/* ============ EMPTY STATE ============ */
.vem-empty-state {
    text-align: center;
    padding: 80px 24px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px dashed #d1d5db;
}
.vem-empty-icon { font-size: 48px; margin: 0 0 12px; }
.vem-empty-state h2 { margin: 0 0 8px; font-size: 24px; }
.vem-empty-state p { color: #6b7280; margin: 0 0 20px; }

/* ============ BUTTONS ============ */
.vem-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: transform .15s ease, background .15s ease;
    cursor: pointer;
    border: 0;
}
.vem-btn:hover { transform: translateY(-1px); }
.vem-btn-outline {
    background: transparent;
    border: 2px solid #111;
    color: #111;
}
.vem-btn-outline:hover { background: #111; color: #fff; }

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

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

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

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

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

