.events-page {
  overflow-x: hidden;
}
.section-padding {
  padding: var(--space-16) 0;
}
.bg-alt {
  background-color: var(--bg-surface-alt);
}
.max-w-3xl {
  max-width: 48rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mb-8 {
  margin-bottom: var(--space-8);
}
@media (min-width: 768px) {
  .md-grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md-grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-16) var(--space-4);
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.7), var(--bg-base));
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero-content h1 {
  text-shadow: 0 0 20px rgba(157, 0, 255, 0.5);
}
.feature-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-12) 0;
  border-bottom: 1px solid var(--bg-surface-alt);
}
@media (min-width: 768px) {
  .feature-row {
    flex-direction: row;
    justify-content: space-between;
  }
  .feature-row.reverse {
    flex-direction: row-reverse;
  }
  .feature-text, .feature-image {
    flex: 1;
  }
}
.feature-text h3 {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(157, 0, 255, 0.2);
}
.feature-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-neon);
  transition: transform var(--transition-normal);
}
.feature-image:hover img {
  transform: scale(1.02);
}
.learn-more {
  display: inline-block;
  margin-top: var(--space-4);
  font-weight: 700;
  text-transform: uppercase;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
}
.event-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: var(--text-main);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-neon);
}
.event-date .day {
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: 1;
}
.event-date .month {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
}
.portfolio-showcase img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(5, 150, 105, 0.2);
}
.testimonial-card {
  border-color: var(--primary);
  background: linear-gradient(145deg, var(--bg-surface), var(--bg-base));
}
.stars {
  color: var(--accent);
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}
.author {
  display: block;
  margin-top: var(--space-4);
  font-weight: 700;
  color: var(--secondary);
}
.step-number {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: 2px solid var(--primary);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--primary);
  box-shadow: inset 0 0 15px rgba(157, 0, 255, 0.2), 0 0 15px rgba(157, 0, 255, 0.2);
}
.venue-image-wrapper img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--secondary);
  box-shadow: var(--shadow-emerald);
}
.cta-card {
  background: linear-gradient(135deg, var(--bg-surface-alt) 0%, #1a0b2e 100%);
  border: 1px solid var(--primary);
  padding: var(--space-12) var(--space-6);
}
.animate-fade, .animate-slide-up {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-slide-up {
  transform: translateY(30px);
}
.is-visible {
  opacity: 1;
  transform: translateY(0);
}