/* =================================================================
   Elysium Parfums - Premium Luxury Stylesheet (site.css)
   ================================================================= */

/* Scrollbar personnalisée élégante */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #FAF9F6;
}
::-webkit-scrollbar-thumb {
  background: #D4AF37;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #C5A028;
}

/* Animations d'entrée fluides */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Marquee d'annonce infini */
@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
.animate-marquee {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

/* Animations de transition */
.transition-all-300 {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}