@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import "tailwindcss";

@theme {
  --color-navy: #0a192f;
  --color-navy-dark: #050d1a;
  --color-navy-light: #172a45;
  --color-navy-lightest: #233554;
  --color-gold: #c5a059;
  --color-gold-light: #dfc28d;
  --color-gold-dark: #916f33;
  --color-pearl: #f8f9fa;
  --color-platinum: #e2e8f0;
  
  --font-display: "Cormorant Garamond", serif;
  --font-sans: "Public Sans", sans-serif;
}

@layer base {
  html {
    scroll-behavior: smooth;
    font-family: var(--font-sans);
    background-color: var(--color-navy-dark);
    color: var(--color-pearl);
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
  }
  
  /* Smooth Custom Scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--color-navy-dark);
  }
  
  ::-webkit-scrollbar-thumb {
    background: var(--color-navy-light);
    border-radius: 4px;
    border: 1px solid var(--color-navy-dark);
    transition: background 0.3s ease;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
  }
}

/* Animations */
@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

.animate-marquee {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* Slot Reel styles */
.slot-reel {
  position: relative;
  overflow: hidden;
  height: 192px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(197, 160, 89, 0.5);
  border-radius: 0.75rem;
  box-shadow: inset 0 8px 16px rgba(0, 0, 0, 0.7);
}

/* Custom Cursor & Gold Trail canvas */
body {
  cursor: none;
}

a, button, input, select, textarea, [role="button"] {
  cursor: none !important;
}

#trail-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* Fade-Up for sections on scroll */
.fade-up-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up-element.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gold Glow Utility */
.gold-glow {
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.15);
}

.gold-glow-hover:hover {
  box-shadow: 0 0 30px rgba(197, 160, 89, 0.3);
}

