/* =============================================
   Lucifer Nails — Events Page
   ============================================= */

/* ---------- Video Hero ---------- */
.ev-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

/* Video container — flexbox to split viewport into slots */
.ev-hero-videos {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: row; /* desktop: side by side */
  z-index: 0;
  pointer-events: none;
}
.ev-hero-slot {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #0a0316; /* fallback while video loads */
}
.ev-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.05);
  opacity: 0;
  transition: opacity 700ms ease;
  pointer-events: none;
}
.ev-hero-video.is-active {
  opacity: 1;
}

/* Overlay for text contrast — dark gradient + brand-color tint */
.ev-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.35) 100%),
    linear-gradient(180deg,
      rgba(0,0,0,0.30) 0%,
      rgba(0,0,0,0.10) 50%,
      rgba(0,0,0,0.55) 100%),
    linear-gradient(90deg,
      rgba(255,5,127,0.10) 0%,
      transparent 40%,
      transparent 60%,
      rgba(179,136,235,0.10) 100%);
}

/* Content on top of videos */
.ev-hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 32px 140px;
  text-align: center;
  max-width: 900px;
  color: #fff;
}

.ev-hero-eyebrow {
  justify-content: center;
  color: #fff !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.ev-hero-eyebrow::before {
  color: var(--accent) !important;
}

.ev-hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 108px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 24px 0 32px;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}
.ev-hero-title em {
  font-family: var(--font-highlight);
  font-weight: 800;
  font-style: italic;
  color: var(--accent);
  font-size: 1.15em;
  vertical-align: -0.01em;
  text-shadow: 0 0 20px rgba(255, 5, 127, 0.4);
}

.ev-hero-lede {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  max-width: 62ch;
  margin: 0 auto 40px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.ev-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Button variant that reads well on the video hero */
.btn.ev-btn-on-video {
  color: #fff;
  border-color: #fff;
  background: transparent;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn.ev-btn-on-video:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

/* Scroll cue on dark video — white with subtle glow */
.scroll-cue--on-video {
  color: rgba(255, 255, 255, 0.85) !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.scroll-cue--on-video::after {
  background: rgba(255, 255, 255, 0.6) !important;
}
.scroll-cue--on-video:hover {
  color: var(--accent) !important;
}

/* Transparent header on video hero — reveals on scroll */
.float-header--on-video:not(.scrolled) {
  background: transparent !important;
  border-bottom-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.float-header--on-video:not(.scrolled) .nav a {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.float-header--on-video:not(.scrolled) .nav a:hover {
  color: var(--accent);
}
.float-header--on-video:not(.scrolled) .logo-mark {
  /* Show the white-logo variant on the video hero */
  background-image: url('../images/logo-white.png');
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.float-header--on-video:not(.scrolled) .nav a.active {
  color: var(--accent);
}

/* Mobile: stack videos vertically, adjust content sizing */
@media (max-width: 720px) {
  .ev-hero-videos {
    flex-direction: column;
  }
  .ev-hero-content {
    padding: 80px 20px 100px;
  }
  .ev-hero-title {
    font-size: clamp(44px, 12vw, 72px);
    margin: 18px 0 24px;
  }
  .ev-hero-lede {
    font-size: 17px;
    margin-bottom: 32px;
  }
}

/* ---------- Events List / Empty State ---------- */
.ev-section--list {
  max-width: 880px;
}

.ev-empty-state {
  text-align: center;
  padding: 60px 40px;
  border: 1px solid var(--line);
  border-top: 2px solid var(--accent);
  background:
    linear-gradient(135deg, rgba(255, 5, 127, 0.03) 0%, transparent 60%),
    var(--paper);
}
.ev-empty-icon {
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.75;
  display: inline-block;
}
.ev-empty-headline {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.ev-empty-headline strong {
  font-family: var(--font-highlight);
  font-weight: 800;
  font-style: italic;
  color: var(--accent);
  font-size: 1.05em;
  letter-spacing: -0.01em;
}
.ev-empty-text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto 28px;
}

/* ---------- Form: select styling ---------- */
.po-select {
  font-family: var(--font-body);
  font-size: 17px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: border-color 0.3s, background 0.3s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23ff057f' stroke-width='1.5' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px 8px;
  padding-right: 44px;
  cursor: pointer;
}
.po-select:focus {
  outline: none;
  border-color: var(--accent);
  background-color: #fff;
}
