/* ========== BASE TYPOGRAPHY & GLOBAL BEHAVIOR ========== */

body {
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}

.font-bebas {
  font-family: "Bebas Neue", sans-serif;
}

/* ========== HERO SECTION ========== */

.hero-gradient {
  background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
}

/* ========== BUTTONS ========== */

.skate-now-btn {
  background: linear-gradient(to right, #38bdf8, #2563eb);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border-radius: 6px;
}

.skate-now-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  outline: 2px solid rgba(59, 130, 246, 0.4);
  outline-offset: 2px;
}

/* Navigation hover */
.nav-link:hover {
  color: #5fbcff;
}

/* ========== FEATURE CARDS (HOME & GENERIC) ========== */

.feature-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-icon {
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
  margin: 0 auto 1rem;
  color: #3b82f6;
  stroke: #3b82f6;
}

/* ========== FOOTER GRADIENT ========== */

.footer-gradient {
  background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
}

main {
  min-height: 100vh;
}

/* ========== STRIPE NAV SECTIONS ========== */

.stripe-container {
  position: relative;
  flex: 1;
  width: 100%;
  transform: skewY(-12deg);
  transform-origin: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-left: 15%;
  color: white;
  text-decoration: none;
}

.stripe-container:hover {
  box-shadow: 0px 8px 25px rgba(95, 188, 255, 0.45);
  z-index: 10;
}

.stripe-wrapper {
  padding-top: 15vh;
  height: 110vh;
}

.stripe-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  transform: skewY(-1deg);
}

.stripe-title {
  font-family: "Bebas Neue", sans-serif !important;
  letter-spacing: 1px;
  font-size: 3rem;
  font-weight: 800;
}

.stripe-icon {
  width: 3rem;
  height: 3rem;
  stroke-width: 2.5;
  margin-left: -2rem;
}

.stripe-cat-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  transform: skewY(12deg);
  pointer-events: none;
  margin-left: -1rem;
}

@media (max-width: 768px) {
  .stripe-container {
    padding-left: 10%;
  }
  .stripe-title {
    font-size: 1.75rem;
  }
  .stripe-subtitle {
    font-size: 1rem;
  }
}

/* ========== MARQUEE ========== */

.marquee-track {
  display: inline-block;
  transform: translateX(-50%);
  animation: marquee-scroll 22s linear infinite;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* ========== LIVE BADGE ========== */

#floatingLiveBadge {
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ========== SLIDE-UP ANIMATION (CONTACT FORM) ========== */

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(20px);
}

.slide-up-visible {
  animation: slideUp 1s ease-out forwards;
}

/* ========== EVENT CARDS (UPCOMING EVENTS CAROUSEL) ========== */

.event-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08) !important;
}

.event-card:hover {
  transform: translateY(-6px);
}

/* Track layout */
#eventsTrack {
  display: flex;
  gap: 5rem;
  justify-content: center;
  will-change: transform;
}

/* Center viewport width so exactly 3 cards fit nicely */
#eventsViewport {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  overflow: visible !important;
}

/* Tighten vertical spacing under cards */
.carousel-wrapper {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: -20px;
  overflow: visible;
}

/* Enlarged centered card */
.event-card.active {
  transform: scale(1.08);
  z-index: 5;
  opacity: 1;
}

.nav-link {
  position: relative;
  z-index: 20;
  pointer-events: auto;
}

.submenu a {
  padding-right: 8px;
}

/* HOME PAGE — Auto-scrolling events track */
#eventsTrack {
  animation: eventsAutoScroll 45s linear infinite;
}

#eventsTrack:hover {
  animation-play-state: paused; /* pause on hover */
}

@keyframes eventsAutoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* because we duplicated all cards */
  }
}

/* Smooth enlargement while scrolling */
.event-card {
  transition: transform 0.35s ease;
}

/* Center card gets scaled up */
.event-card.active {
  transform: scale(1.12);
  z-index: 5;
}


/*************************************************************
    NEON PAGE — SKATE NIGHT THEME (AZ Skate Night Inspired)
*************************************************************/

.neon-page {
  background: #050109;
  color: #e6e6ff;
  font-family: "Montserrat", sans-serif;
}

/* -------------------- NAVBAR -------------------- */

.neon-page nav {
  background: rgba(5, 1, 15, 0.9) !important;
  backdrop-filter: blur(6px);
  border-bottom: 2px solid #08e8ff;
  box-shadow: 0 0 18px #08e8ff66;
}

.neon-page nav a,
.neon-page .nav-link {
  color: #ffffff !important;
  text-shadow: 0 0 6px #08e8ff;
}

.neon-page nav a:hover,
.neon-page .nav-link:hover {
  color: #ff2df2 !important;
  text-shadow: 0 0 10px #ff2df2;
}

/* Desktop dropdowns */
.neon-page nav .group div {
  background: #0a0616 !important;
  border: 1px solid #08e8ff55;
  box-shadow: 0 0 12px #08e8ff55;
}

.neon-page nav .group div a:hover {
  background: #1a0b33 !important;
  color: #08e8ff !important;
}

/* -------------------- NEON SKATE NIGHT BUTTON -------------------- */

.neon-page a[href="skate-night.html"] {
  background: transparent !important;
  border: 2px solid #ff00c8 !important;
  color: #ff00c8 !important;
  border-radius: 9999px;
  text-shadow: 0 0 8px #ff00c8;
  box-shadow: 0 0 14px #ff00c8aa;
  transition: 0.25s ease;
}

.neon-page a[href="skate-night.html"]:hover {
  background: #ff00c8 !important;
  color: #000 !important;
  box-shadow: 0 0 25px #ff00c8;
}

/* -------------------- HERO SECTION -------------------- */

.neon-page .hero-gradient {
  background: radial-gradient(
    circle at center,
    #120027 0%,
    #060012 60%,
    #000000 100%
  ) !important;
  color: #08e8ff;
  text-shadow: 0 0 12px #08e8ffdd;
}

/* -------------------- FEATURE / ABOUT SECTIONS -------------------- */

.neon-page section {
  background: transparent !important;
}

.neon-page #sports,
.neon-page #about {
  background: #080313 !important;
  border-top: 1px solid #220044;
  border-bottom: 1px solid #220044;
}

/* -------------------- IMAGES -------------------- */

.neon-page img {
  box-shadow: 0 0 20px #08e8ff33;
  border-radius: 12px;
}

/* -------------------- NEON CTA BUTTONS -------------------- */

.neon-page a.inline-block,
.neon-page .btn {
  background: transparent !important;
  border: 2px solid #08e8ff !important;
  color: #08e8ff !important;
  text-shadow: 0 0 10px #08e8ff;
  box-shadow: 0 0 16px #08e8ff77;
}

.neon-page a.inline-block:hover,
.neon-page .btn:hover {
  background: #08e8ff !important;
  color: #000 !important;
  box-shadow: 0 0 24px #08e8ff;
}

.neon-page .btn,
.neon-page a.inline-block {
  padding-top: 14px !important;
  padding-bottom: 16px !important;
}
/* -------------------- FOOTER -------------------- */

.neon-page footer {
  background: linear-gradient(
    to bottom,
    #0a0018,
    #050009 60%,
    #000000 100%
  ) !important;
  border-top: 1px solid #08e8ff55;
  box-shadow: 0 -2px 20px #08e8ff33;
}

.neon-page footer a:hover {
  color: #ff2df2 !important;
  text-shadow: 0 0 8px #ff2df2;
}

.neon-page footer h3 {
  color: #ffea00 !important;
  text-shadow: 0 0 6px #ffea00aa;
}

/* -------------------- MOBILE MENU -------------------- */

.neon-page #mobile-menu {
  background: rgba(5, 1, 15, 0.95) !important;
  border: 1px solid #08e8ff55;
  box-shadow: 0 0 18px #08e8ff55;
}

.neon-page #mobile-menu a {
  color: #ffffff !important;
}

.neon-page #mobile-menu a:hover {
  color: #08e8ff !important;
}
/*************************************************************
   NEON PULSING EFFECTS
*************************************************************/

@keyframes neonPulsePink {
  0% {
    text-shadow: 0 0 8px #ff00c8, 0 0 20px #ff00c8aa;
  }
  50% {
    text-shadow: 0 0 14px #ff4de6, 0 0 28px #ff00c8ff;
  }
  100% {
    text-shadow: 0 0 8px #ff00c8, 0 0 20px #ff00c8aa;
  }
}

@keyframes neonPulseCyan {
  0% {
    text-shadow: 0 0 10px #08e8ff, 0 0 20px #08e8ff88;
  }
  50% {
    text-shadow: 0 0 16px #4cffff, 0 0 32px #08e8ffff;
  }
  100% {
    text-shadow: 0 0 10px #08e8ff, 0 0 20px #08e8ff88;
  }
}

@keyframes neonPulseYellow {
  0% {
    text-shadow: 0 0 10px #ffea00, 0 0 20px #ffea0099;
  }
  50% {
    text-shadow: 0 0 14px #fff066, 0 0 30px #ffea00ff;
  }
  100% {
    text-shadow: 0 0 10px #ffea00, 0 0 20px #ffea0099;
  }
}

/* Pink hover pulse on links and buttons */
.neon-page a:hover {
  animation: neonPulsePink 1.8s infinite ease-in-out;
}

/*************************************************************
   MATCH CTA “SKATE NOW” TO NEON PINK BUTTON
*************************************************************/

.neon-page a[href*="skate"],
.neon-page .skate-now-btn {
  background: transparent !important;
  border: 2px solid #ff00c8 !important;
  color: #ff00c8 !important;
  border-radius: 9999px;
  font-weight: bold;
  text-shadow: 0 0 8px #ff00c8;
  box-shadow: 0 0 14px #ff00c8aa;
  transition: 0.25s ease;
}

/* Hover state */
.neon-page a[href*="skate"]:hover,
.neon-page .skate-now-btn:hover {
  background: #ff00c8 !important;
  color: #000 !important;
  box-shadow: 0 0 28px #ff00c8;
  animation: neonPulsePink 1.7s infinite ease-in-out;
}

/*************************************************************
   REMOVE NEON GLOW FROM LOGOS (NAV + FOOTER ONLY)
*************************************************************/

/* Nav logo */
.neon-page nav img {
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
  border: none !important;
}

/* Footer logo */
.neon-page footer img {
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
  border: none !important;
}

/* ================================
   TONED-DOWN NEON UTILITIES
   For Welcome, Carousel, Gallery, DJ Sections
   ================================ */

/* Softer neon colors */
:root {
  --neon-pink: #ff4fe0;
  --neon-cyan: #64f5ff;
  --neon-soft-bg: rgba(255, 255, 255, 0.06);
}

/* Section title */
.neon-title {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 2px;
  text-shadow: 0 0 8px var(--neon-pink), 0 0 16px var(--neon-pink);
  color: var(--neon-pink);
  animation: neonPulse 3s ease-in-out infinite;
}

@keyframes neonPulse {
  0%,
  100% {
    text-shadow: 0 0 6px var(--neon-pink), 0 0 14px var(--neon-pink);
  }
  50% {
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
  }
}

/* Subtext */
.neon-subtext {
  color: #fdfdfd;
  text-shadow: 0 0 6px rgba(100, 245, 255, 0.4);
}

/* Frosted neon panels */
.neon-panel {
  background: var(--neon-soft-bg);
  border: 2px solid var(--neon-pink);
  border-radius: 20px;
  box-shadow: 0 0 18px rgba(255, 79, 224, 0.35);
  backdrop-filter: blur(8px);
}

/* Carousel container fade mask */
.carousel-container {
  overflow: visible;
  padding: 40px 0;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

/* Carousel track animation (toned down speed) */
/* Themed Nights – horizontal auto scroll */
.carousel-track {
  display: inline-flex;
  gap: 28px;
  animation: themedScroll 45s linear infinite;
  will-change: transform;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes themedScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    /* move left by half the total width since we duplicated the group */
    transform: translateX(-50%);
  }
}

/* Theme cards (toned neon) */
.theme-card {
  width: 320px;
  background: rgba(255, 255, 255, 0.07);
  border: 2px solid var(--neon-cyan);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 6px 26px rgba(100, 245, 255, 0.25);
}

.theme-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 40px rgba(100, 245, 255, 0.5);
}

/* Theme card heading */
.theme-content h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.7rem;
  color: #ffea00;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(255, 79, 224, 0.6);
}

/* Theme date */
.theme-date {
  color: var(--neon-cyan);
  font-weight: 600;
  margin-bottom: 12px;
  text-shadow: 0 0 8px rgba(100, 245, 255, 0.7);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.gallery-item {
  border: 2px solid var(--neon-pink);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 26px rgba(255, 79, 224, 0.25);
  transition: transform 0.25s, box-shadow 0.25s;
}

.gallery-item:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(255, 79, 224, 0.5);
}

.gallery-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* DJ Section */
.dj-section {
  background: rgba(100, 245, 255, 0.08);
  border: 2px solid var(--neon-cyan);
  border-radius: 20px;
  box-shadow: none !important;
  backdrop-filter: blur(8px);
}

/* DJ Logo Glow */
.dj-logo {
  filter: drop-shadow(0 0 16px rgba(100, 245, 255, 0.7));
}

/************************************************************
   CLEAN NEON HEADER SYSTEM
************************************************************/

/* ----------------------------------------------------------
   HERO HEADER — SKATE NIGHT AZ
   Full multicolor animated text + glow
---------------------------------------------------------- */

@keyframes heroMulticolorGlow {
  0% {
    color: #ff4fe0;
    text-shadow: 0 0 12px #ff4fe0, 0 0 22px #ff4fe0;
  }
  25% {
    color: #64f5ff;
    text-shadow: 0 0 12px #64f5ff, 0 0 22px #64f5ff;
  }
  50% {
    color: #c084fc;
    text-shadow: 0 0 12px #c084fc, 0 0 22px #c084fc;
  }
  75% {
    color: #fff799;
    text-shadow: 0 0 12px #fff799, 0 0 22px #fff799;
  }
  100% {
    color: #ff4fe0;
    text-shadow: 0 0 12px #ff4fe0, 0 0 22px #ff4fe0;
  }
}

.neon-hero {
  animation: heroMulticolorGlow 4s linear infinite;
}

/* ----------------------------------------------------------
   HEADERS — fixed text color + glow cycles between
---------------------------------------------------------- */

/* Pink glow cycle */
@keyframes glowPink {
  0% {
    text-shadow: 0 0 10px #ff4fe0;
  }
  25% {
    text-shadow: 0 0 12px #64f5ff; /* cyan */
  }
  50% {
    text-shadow: 0 0 14px #c084fc; /* purple */
  }
  75% {
    text-shadow: 0 0 12px #fff799; /* yellow */
  }
  100% {
    text-shadow: 0 0 10px #ff4fe0; /* back to pink */
  }
}

/* Yellow glow cycle */
@keyframes glowYellow {
  0% {
    text-shadow: 0 0 10px #ffea00;
  }
  25% {
    text-shadow: 0 0 12px #64f5ff; /* cyan */
  }
  50% {
    text-shadow: 0 0 14px #c084fc; /* purple */
  }
  75% {
    text-shadow: 0 0 12px #ff4fe0; /* pink */
  }
  100% {
    text-shadow: 0 0 10px #ffea00;
  }
}

/* Cyan glow cycle */
@keyframes glowCyan {
  0% {
    text-shadow: 0 0 10px #64f5ff;
  }
  25% {
    text-shadow: 0 0 12px #c084fc; /* purple */
  }
  50% {
    text-shadow: 0 0 14px #ff4fe0; /* pink */
  }
  75% {
    text-shadow: 0 0 12px #ffea00; /* yellow */
  }
  100% {
    text-shadow: 0 0 10px #64f5ff;
  }
}

/* Utility classes */
.neon-heading {
  font-family: "Bebas Neue", sans-serif;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

/* Pink */
.neon-pink {
  color: #ff4fe0;
  animation-name: glowPink;
}

/* Yellow */
.neon-yellow {
  color: #ffea00;
  animation-name: glowYellow;
}

/* Cyan / Blue */
.neon-cyan {
  color: #64f5ff;
  animation-name: glowCyan;
}

/* =========================================
   HERO VIDEO CTA — solid rainbow + cyan glow
   ========================================= */

/* Position button over the video */
.neon-page .video-button-wrapper {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 40;
}

/* Solid multicolor button (override all other CTA styles) */
.neon-page a.cta-main {
  display: inline-block;
  padding: 18px 48px;
  border-radius: 50px;

  font-family: "Rubik", sans-serif;
  font-weight: 900;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  text-decoration: none;

  /* SOLID rainbow background */
  background-image: linear-gradient(45deg, #ff00ff, #c084fc, #00ffff) !important;
  color: #000 !important;
  border: none !important;

  /* Base glow (pinkish like AZ) */
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover: strong cyan glow */
.neon-page a.cta-main:hover {
  /* Prevent neon pink override */
  animation: none !important;
  text-shadow: none !important;
  color: #000 !important;

  /* KEEP your designed hover glow */
  transform: scale(1.05) !important;
  box-shadow:
    0 0 25px rgba(0, 255, 255, 0.9),
    0 0 60px rgba(0, 255, 255, 0.6),
    0 0 100px rgba(0, 255, 255, 0.4) !important;

  background-image: linear-gradient(
    45deg,
    #ff00ff,
    #c084fc,
    #00ffff
  ) !important;
}

/* Hidden at first */
.hidden-before-show {
  opacity: 0;
  transform: translate(-50%, -60%);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* When shown */
.show-cta {
  opacity: 1;
  transform: translate(-50%, -50%);
}

/* ===========================
   MOBILE FIXES FOR NEON PAGE
   =========================== */
@media (max-width: 768px) {

  /* Make video button full-width & fix deformation */
  .video-button-wrapper {
    top: 58%;               /* move it slightly lower if needed */
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 1.5rem;
  }

  .skate-btn {
    width: 100% !important;      /* full width */
    max-width: 330px !important; /* keeps it pretty */
    height: auto !important;
    padding: 18px 32px !important;
    font-size: 1.1rem !important;

    border-radius: 40px !important;
  }

  /* Prevent the weird oval distortion on small screens */
  .skate-btn {
    background-size: 100% 100% !important;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden !important;
  }

  #eventsViewport,
  #eventsTrack,
  .carousel-container {
    overflow-x: hidden !important;
  }

  /* Prevent cards from creating extra width */
  .event-card {
    margin-right: 1rem;
  }
}
