.elementor-15 .elementor-element.elementor-element-e7c256d{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-474fc3f *//* ============================
   1. FONT: FERRO ROSSO (custom)
   ============================ */

@font-face {
  font-family: 'Ferro Rosso';
  src: url('https://events.waxxbrandz.com/wp-content/uploads/2025/12/gigalypsetrial-regular.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ============================
   2. GLOBAL PAGE STYLE
   ============================ */

/* Base – dark Christmas night */
.event-page {
  position: relative;
  z-index: 1;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f9fafb;
  background: radial-gradient(circle at top left, #07130b 0, #050309 60%, #020107 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Headings & main button use Ferro Rosso */
.event-title,
.event-about-panel h2,
.event-location-block h2,
.event-hosted h2,
.event-btn {
  font-family: 'Ferro Rosso', system-ui, sans-serif;
  letter-spacing: 0.06em;
}

/* ============================
   2a. SNOWFLAKES + SHOOTING STAR
   ============================ */

/* Snow overlay */
.event-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50; /* above content so you can see it */
  opacity: 0.35;
  background-image:
    radial-gradient(2px 2px at 10px 10px, rgba(255,255,255,0.9) 50%, transparent 60%),
    radial-gradient(2px 2px at 50px 80px, rgba(255,255,255,0.7) 50%, transparent 60%),
    radial-gradient(3px 3px at 100px 30px, rgba(255,255,255,0.9) 50%, transparent 60%);
  background-size: 200px 400px, 260px 520px, 320px 640px;
  animation: snow-fall 24s linear infinite;
}

/* Shooting star */
.event-page::after {
  content: "";
  position: fixed;
  top: -80px;
  right: -120px;
  width: 220px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0), #fefefe, rgba(255,255,255,0));
  box-shadow: 0 0 16px rgba(255,255,255,0.9);
  transform: rotate(-25deg);
  opacity: 0;
  pointer-events: none;
  z-index: 55;
  animation: shooting-star 10s ease-in-out infinite;
}

/* Snow animation */
@keyframes snow-fall {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 0 800px, 0 1200px, 0 1600px;
  }
}

/* Shooting star animation */
@keyframes shooting-star {
  0% {
    opacity: 0;
    transform: translate3d(0,0,0) rotate(-25deg);
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 0;
    transform: translate3d(-500px,250px,0) rotate(-25deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(-500px,250px,0) rotate(-25deg);
  }
}

/* Content sections sit below snow/star overlay but above background */
.event-hero-band,
.event-location-block,
.event-hosted {
  position: relative;
  z-index: 10;
}

/* ============================
   3. HERO BAND
   ============================ */

.event-hero-band {
  padding: 72px 16px 40px;
  background: radial-gradient(circle at top left, #092015 0, #050309 55%, #13030a 100%);
}

.event-hero-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

/* LEFT: flyer */
.event-hero-left {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-flyer-card {
  background: #05070a;
  border-radius: 32px;
  padding: 12px;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.event-flyer img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  animation: flyer-float 4s ease-in-out infinite;
}

/* Gentle float animation for flyer */
@keyframes flyer-float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* ============================
   4. APPLY BUTTON – VELVET RED
   ============================ */

/* Velvet red default, deeper red hover */
.event-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 40px;
  border-radius: 999px;
  background: #b91c1c;              /* velvet Christmas red */
  color: #f9fafb;
  text-decoration: none;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.95);
  overflow: hidden;
  z-index: 10;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.12s ease,
    color 0.12s ease;
}

.event-btn-check {
  font-size: 0.9rem;
}

/* Shine animation */
.event-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  opacity: 0.9;
  pointer-events: none;
  z-index: -1;
  animation: event-btn-shine 2.2s infinite;
}

@keyframes event-btn-shine {
  0%   { left: -150%; }
  50%  { left: 150%; }
  100% { left: 150%; }
}

.event-btn:hover,
.event-btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 1);
  background: #7f1010;              /* deeper velvet red */
  color: #ffffff;
}

/* ============================
   5. RIGHT SIDE – TITLE + PANEL
   ============================ */

.event-hero-right {
  flex: 1 1 0;
  min-width: 0;
}

.event-hero-header {
  margin-bottom: 8px;
}

.event-title {
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  color: #fefefe;
}

/* Info panel – DARK translucent card */
.event-info-panel {
  background: rgba(8, 10, 18, 0.92);
  border-radius: 32px;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  padding: 24px 28px 24px;
  color: #e5e7eb;
}

/* Date + location row */
.event-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

/* Info cards base – dark translucent */
.event-info-card {
  background: rgba(15, 17, 25, 0.9);
  border-radius: 20px;
  padding: 14px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Date card – cleaner layout */
.event-info-date {
  flex: 1 1 280px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Date box */
.event-date-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 64px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 17, 25, 1);
  font-weight: 600;
}

.event-date-month {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #9ca3af;
  letter-spacing: 0.08em;
}

.event-date-day-range {
  font-size: 1.05rem;
  color: #f9fafb;
}

/* Date text on the right */
.event-info-date-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.event-info-date-main {
  font-size: 0.95rem;
  font-weight: 500;
  color: #f9fafb;
}

.event-info-date-time {
  font-size: 0.9rem;
  color: #d1d5db;
}

.event-info-timezone {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-left: 4px;
}

/* Location card */
.event-info-location {
  flex: 1 1 220px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.event-info-location-icon {
  width: 38px;
  height: 38px;
  border-radius: 16px;
  background: rgba(31, 41, 55, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.event-info-location-label {
  font-size: 0.84rem;
  color: #9ca3af;
}

.event-info-location-main {
  font-size: 1rem;
  font-weight: 500;
  color: #f9fafb;
}

/* About text in panel */
.event-about-panel h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #f9fafb;
}

.event-about-panel p {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #e5e7eb;
}

.event-about-panel a {
  color: #f87171;
  text-decoration: underline;
}

/* ============================
   6. LOCATION MAP SECTION
   ============================ */

.event-location-block {
  padding: 40px 16px 48px;
  background: radial-gradient(circle at top, #071b10 0, #020307 55%, #020105 100%);
}

.event-location-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.event-location-block h2 {
  font-size: 1.7rem;
  margin-bottom: 12px;
  color: #fefefe;
}

.event-location-city {
  margin-bottom: 12px;
  color: #e5e5e5;
}

.event-location-map iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.95);
  /* Night mode effect */
  filter: grayscale(1) invert(0.9) brightness(0.7) contrast(1.2);
}

/* ============================
   7. HOSTED BY SECTION
   ============================ */

.event-hosted {
  padding: 40px 16px 60px;
  background: radial-gradient(circle at bottom, #13030a 0, #020206 55%, #000000 100%);
}

.event-hosted-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.event-hosted h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: #ffffff;
}

.event-host-card {
  background: rgba(8, 10, 18, 0.92);
  border-radius: 24px;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.event-host-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
  background: #000000;
}

.event-host-name {
  font-weight: 500;
  color: #f9fafb;
}

/* ============================
   8. RESPONSIVE – COMPACT MOBILE + DARK CARDS
   ============================ */

@media (max-width: 1024px) {
  .event-hero-layout {
    flex-direction: column;
  }

  .event-hero-left {
    flex: 1 1 auto;
  }
}

@media (max-width: 768px) {
  .event-hero-band {
    padding: 56px 12px 28px;
  }

  /* Remove big panel; use separate dark cards */
  .event-info-panel {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 16px;
  }

  .event-info-row {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
  }

  /* Date & location as individual compact dark cards */
  .event-info-card {
    padding: 10px 12px;
    border-radius: 18px;
    margin-bottom: 4px;
    max-height: 72px; /* cap; can grow if content needs */
  }

  .event-info-date {
    align-items: center;
    gap: 12px;
  }

  .event-date-box {
    min-width: 56px;
    min-height: 56px;
    border-radius: 16px;
  }

  .event-info-date-main {
    font-size: 0.9rem;
  }

  .event-info-date-time {
    font-size: 0.85rem;
  }

  /* About becomes its own small dark card */
  .event-about-panel {
    margin-top: 8px;
    padding: 14px 12px;
    background: rgba(8, 10, 18, 0.95);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
  }

  .event-location-block {
    padding: 32px 12px 40px;
  }

  .event-location-map iframe {
    min-height: 260px;
    border-radius: 20px;
  }

  .event-hosted {
    padding: 32px 12px 48px;
  }

  .event-host-card {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 14px;
  }

  .event-title {
    font-size: 1.9rem;
  }
  /* Instagram link next to host name */
.event-host-ig-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.08);
  border: 1px solid rgba(248, 250, 252, 0.18);
  text-decoration: none;
}

.event-host-ig-icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #f9fafb;
  stroke-width: 1.6;
}

/* Fill the rect for a solid icon look */
.event-host-ig-icon rect {
  fill: rgba(249, 250, 251, 0.06);
}

.event-host-ig-link:hover,
.event-host-ig-link:focus {
  background: rgba(248, 250, 252, 0.18);
  border-color: rgba(248, 250, 252, 0.5);
}
}/* End custom CSS */