/* Theme Colors */
:root {
  --color-gold-50: #fff9e6;
  --color-gold-100: #ffefcc;
  --color-gold-200: #ffd999;
  --color-gold-300: #ffbf66;
  --color-gold-400: #ffa633;
  --color-gold-500: #ff8c00;
  --color-gold-600: #cc7000;
  --color-gold-700: #995400;
  --color-gold-800: #663800;
  --color-gold-900: #331c00;

  --color-black-gold: #1a1a1a;
  --color-dark-gold: #c5a059;
  --color-light-gold: #e2c275;

  --bg-dark: #0f0f0f;
  --text-gold: #d4af37;
  --accent-gold: #c5a059;
  --card-bg: #1a1a1a;
}

body {
  background-color: var(--bg-dark);
  color: #e5e5e5;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.gold-gradient-text {
  background: linear-gradient(to right, #e2c275, #c5a059, #8c6d31);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-border {
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.gold-border-hover:hover {
  border-color: rgba(197, 160, 89, 0.8);
}

.gold-shadow {
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.1);
}

.gold-button {
  background: linear-gradient(135deg, #c5a059 0%, #8c6d31 100%);
  color: #000;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  cursor: pointer;
}

.gold-button:hover {
  background: linear-gradient(135deg, #e2c275 0%, #c5a059 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

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

::-webkit-scrollbar-track {
  background: #0f0f0f;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

.page-section {
  display: none;
}

.page-section.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

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

.nav-link.active {
  color: var(--accent-gold);
}

.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(197, 160, 89, 0.3);
  border-radius: 2px;
}
