/* Custom animations & keyframes — Tailwind can't do these */
html {
  overflow-x: hidden;
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes aurora {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(40px, -30px) scale(1.1);
  }

  50% {
    transform: translate(-20px, -40px) scale(0.9);
  }

  75% {
    transform: translate(-40px, 20px) scale(1.05);
  }
}

.float-slow {
  animation: floatSlow 20s ease-in-out infinite;
}

.float-slow-reverse {
  animation: floatSlow 15s ease-in-out infinite reverse;
}

.float-slower {
  animation: floatSlow 25s ease-in-out infinite;
}

.pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

.aurora {
  animation: aurora 18s ease-in-out infinite;
}

.shimmer {
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #E8751A, #D4A843, #7A1A2B);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* Gradient text fallback */
.gradient-text {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Smooth scrollbar — desktop only */
@media (min-width: 1024px) {
  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-track {
    background: #1A0A0E;
  }

  ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #7A1A2B, #E8751A);
    border-radius: 4px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #9B2238, #FF8C42);
  }
}

@media (max-width: 1023px) {
  ::-webkit-scrollbar {
    display: none;
  }
  * {
    scrollbar-width: none;
  }
  html, body {
    overflow-x: hidden;
    width: 100%;
  }
}

/* Select styling for dark form */
select option {
  background: #1A0A0E;
  color: #fff;
}

/* Hero section height */
.hero-height {
  min-height: 100vh;
}

/* Highlight effect */
.highlight {
  background: linear-gradient(120deg, rgba(212, 168, 67, 0.2) 0%, rgba(212, 168, 67, 0.35) 100%);
  padding: 0 6px;
  border-radius: 4px;
  font-weight: 600;
  color: #7A1A2B;
}

.highlight-gold {
  background: linear-gradient(120deg, rgba(232, 117, 26, 0.15) 0%, rgba(232, 117, 26, 0.3) 100%);
  padding: 0 6px;
  border-radius: 4px;
  font-weight: 600;
  color: #E8751A;
}