@import "tailwindcss";

@theme {
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", serif;
  
  --color-gold-50: #fdfbf7;
  --color-gold-100: #f7f0e1;
  --color-gold-200: #eadcb9;
  --color-gold-300: #d9c188;
  --color-gold-400: #c8a35e;
  --color-gold-500: #b8860b;
  --color-gold-600: #9e700a;
  --color-gold-700: #7d580a;
  --color-gold-800: #66480f;
  --color-gold-900: #573d12;

  --color-pale-black: #121212;
  --color-deep-black: #0a0a0a;
}

@layer base {
  body {
    @apply bg-pale-black text-gold-100 font-sans antialiased selection:bg-gold-500 selection:text-white;
    scroll-behavior: smooth;
  }
  
  h1, h2, h3, h4, h5, h6 {
    @apply font-serif;
  }
}

.gold-gradient-text {
  @apply bg-clip-text text-transparent bg-gradient-to-r from-gold-200 via-gold-400 to-gold-200;
}

.gold-border {
  @apply border border-gold-400/30;
}

.gold-glow {
  @apply shadow-[0_0_15px_rgba(200,163,94,0.15)];
}

.glass-card {
  @apply bg-white/5 backdrop-blur-md border border-white/10;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  @apply bg-deep-black;
}
::-webkit-scrollbar-thumb {
  @apply bg-gold-400/50 rounded-full hover:bg-gold-400;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
