@import "tailwindcss";

@theme {
  --color-gold-light: #d4af37;
  --color-gold-dark: #aa8439;
  --color-black-rich: #1a1a1a;
  --color-black-deep: #0d0d0d;
}

body {
  background-color: var(--color-black-deep);
  color: #e0e0e0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  scroll-behavior: smooth;
}

.gold-gradient-text {
  background: linear-gradient(to right, #f1d38a, #d4af37, #aa8439);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.gold-button {
  background: linear-gradient(135deg, #d4af37 0%, #aa8439 100%);
  color: #000;
  font-weight: 600;
  transition: all 0.3s ease;
}

.gold-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0d0d0d;
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #d4af37;
}

/* Floating Button */
.float-btn {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 50;
  animation: bounce 2s infinite;
}

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

nav a.active {
  color: #d4af37;
  border-bottom: 2px solid #d4af37;
}
