/* animations.css - Web Animations & Transitions */

/* Fade In / Slide Up for Tab Panes and dialog */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ticker marquee for slogans and phrases */
@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.hero-ticker {
  background: var(--color-accent-gold);
  border-y: 1px solid rgba(158, 24, 85, 0.25);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.hero-ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 35s linear infinite;
}

.hero-ticker-group {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
}

.hero-ticker-item {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.hero-ticker-bullet {
  width: 6px;
  height: 6px;
  background-color: #9e1855;
  border-radius: 50%;
  display: inline-block;
}

/* Logos marquee scrolling animation */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-track {
  animation: marquee-scroll 45s linear infinite;
}

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

/* Orbit spins */
@keyframes spin-clockwise {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* CSS Grid glow and glassmorphism elements */
.glass-panel {
  background: rgba(23, 73, 133, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glow-gold {
  box-shadow: 0 0 40px rgba(231, 60, 142, 0.18);
}

.glow-orange {
  box-shadow: 0 0 40px rgba(232, 112, 42, 0.15);
}

/* Slide in from right */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

/* Custom interactive scale hover effect */
.scale-hover {
  transition: var(--transition-smooth);
}

.scale-hover:hover {
  transform: scale(1.02);
}