@import "tailwindcss";

@theme {
  --color-gold: #d4af37;
  --color-pale-gold: #f1d592;
  --color-dark-bg: #0a0a0a;
  --color-surface: #1a1a1a;
  
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Outfit', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
}

@utility gold-gradient {
  background: linear-gradient(135deg, #d4af37 0%, #f1d592 50%, #c5a059 100%);
}

@layer base {
  html {
    scroll-behavior: smooth;
  }
  body {
    @apply bg-dark-bg text-gray-200 font-sans;
  }
  h1, h2, h3, .font-display {
    @apply font-display;
  }
}

.text-gold-gradient {
  @apply gold-gradient bg-clip-text text-transparent;
}

.border-gold {
  border-color: rgba(212, 175, 55, 0.3);
}

.hover-gold:hover {
  @apply text-gold border-gold transition-all duration-300;
}

/* Animations */
.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }

.section-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
