:root {
  --primary: #d4af37;
  --primary-foreground: #09090b;
  --background: #09090b;
  --foreground: #fafafa;
  --card: rgba(255, 255, 255, 0.03);
  --card-foreground: #fafafa;
  --secondary: #ec4899;
  --secondary-foreground: #fff;
  --muted: rgba(255,255,255,0.1);
  --muted-foreground: #a1a1aa;
  --accent: #d4af37;
  --accent-foreground: #09090b;
  --border: rgba(255, 255, 255, 0.08);
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
}

/* Custom Utilities */
.gold-glow {
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
}

.glow-effect-hover {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glow-effect-hover:hover {
  box-shadow: 0 10px 40px -10px rgba(212, 175, 55, 0.3);
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
}

.gold-gradient-text {
  background: linear-gradient(135deg, #fef08a 0%, #d4af37 50%, #b45309 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

html {
  scroll-behavior: smooth;
}

/* Base Transitions */
.animate-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.animate-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-left.visible, .animate-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

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

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