/* ===== Sheen Marketing — Custom Styles ===== */

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #000000; }
::-webkit-scrollbar-thumb { background: #373737; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #454545; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Custom animations */
@keyframes bounce-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.animate-bounce-slow {
  animation: bounce-slow 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-8px) rotate(1deg); }
  66% { transform: translateY(4px) rotate(-1deg); }
}
.animate-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(220, 62, 8, 0.1); }
  50% { box-shadow: 0 0 40px rgba(220, 62, 8, 0.2); }
}
.animate-glow {
  animation: glow-pulse 3s ease-in-out infinite;
}

/* Nav scroll state */
.nav-scrolled {
  background: rgba(0, 0, 0, 0.95) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

/* Active nav link */
.nav-link.active {
  color: #dc3e08 !important;
  background: rgba(220, 62, 8, 0.08);
}

/* Form select styling */
select option {
  background: #1a1a1a;
  color: #f5f5f5;
}

/* Hero text animation stagger */
.hero-text > * {
  opacity: 0;
  transform: translateY(20px);
}
.hero-text.animated > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-text.animated > *:nth-child(1) { transition-delay: 0.1s; }
.hero-text.animated > *:nth-child(2) { transition-delay: 0.2s; }
.hero-text.animated > *:nth-child(3) { transition-delay: 0.3s; }
.hero-text.animated > *:nth-child(4) { transition-delay: 0.4s; }
.hero-text.animated > *:nth-child(5) { transition-delay: 0.5s; }
.hero-text.animated > *:nth-child(6) { transition-delay: 0.6s; }

/* Gradient text animation */
.bg-gradient-animate {
  background-size: 200% 200%;
  animation: gradient-shift 4s ease infinite;
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Card hover glow */
.card-glow:hover {
  box-shadow: 0 0 30px rgba(220, 62, 8, 0.05), 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Focus ring for accessibility */
:focus-visible {
  outline: 2px solid #dc3e08;
  outline-offset: 2px;
}

/* ===== Marquee / Infinite Scroll ===== */
@keyframes marquee-ltr {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-rtl {
  0%   { transform: translateX(0); }
  100% { transform: translateX(50%); }
}
.marquee-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.marquee-track.marquee-ltr {
  animation: marquee-ltr 30s linear infinite;
  width: max-content;
}
.marquee-track.marquee-rtl {
  animation: marquee-rtl 30s linear infinite;
  width: max-content;
}
.marquee-track:hover {
  animation-play-state: paused;
}

/* Responsive font scaling */
@media (max-width: 640px) {
  .hero-text h1 { font-size: 2rem !important; }
}
