@import "tailwindcss";

@theme {
  --color-gold: #d4af37;
  --color-gold-light: #f1e5ac;
  --color-gold-dark: #aa8c2c;
  --color-dark: #0a0a0a;
  --color-dark-accent: #1a1a1a;
  
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Oswald", "Impact", sans-serif;
}

@layer base {
  body {
    @apply bg-dark text-gray-200 font-sans;
    scroll-behavior: smooth;
  }
}

@layer components {
  .btn-gold {
    @apply bg-gold text-dark font-bold px-6 py-2 rounded-sm hover:bg-gold-light transition-colors duration-300;
  }
  
  .glass-card {
    @apply bg-white/5 backdrop-blur-md border border-white/10 rounded-lg p-6;
  }

  .section-title {
    @apply text-3xl font-display uppercase tracking-wider text-gold mb-8 relative inline-block;
  }

  .section-title::after {
    content: '';
    @apply absolute -bottom-2 left-0 w-1/2 h-1 bg-gold;
  }

  .gold-gradient-text {
    @apply bg-linear-to-r from-gold via-gold-light to-gold-dark bg-clip-text text-transparent;
  }
}

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

::-webkit-scrollbar-track {
  @apply bg-dark;
}

::-webkit-scrollbar-thumb {
  @apply bg-gold/50 rounded-full hover:bg-gold;
}

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

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

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