/* Custom Luxury Styling for Option 1: Artisan Chocolate & Gold */

:root {
  --color-primary: #2D1E18;
  --color-accent: #D4A373;
  --color-gold-light: #E5BA8F;
  --color-bg: #FDFBF7;
  --color-charcoal: #1F1F1F;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #FDFBF7;
}

::-webkit-scrollbar-thumb {
  background: #D4A373;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #B88251;
}

/* Gold Gradient Shimmer Animation */
@keyframes goldShimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.gold-shimmer {
  background: linear-gradient(90deg, #D4A373 0%, #FFF3D6 50%, #D4A373 100%);
  background-size: 200% 100%;
  animation: goldShimmer 3s infinite linear;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtle Floating Animation */
@keyframes subtleFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

.floating-badge {
  animation: subtleFloat 4s ease-in-out infinite;
}

/* Card Glow Hover */
.reel-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.reel-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 30px -10px rgba(212, 163, 115, 0.35);
}

/* Modal Fade Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in {
  animation: fadeIn 0.25s ease-out forwards;
}
