
:root {
  --royal-red: #8B0000;
  --crimson: #DC143C;
  --saffron: #FF9933;
  --gold-metallic: linear-gradient(135deg, #BF953F 0%, #FCF6BA 50%, #B38728 100%, #FBF5B7 100%);
  --cream-bg: #FFF8E1;
  --text-dark: #2A2A2A;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--cream-bg);
  color: var(--text-dark);
  overflow-x: hidden;
}

.font-script {
  font-family: 'Great Vibes', cursive;
}

.font-heading {
  font-family: 'Cinzel', serif;
}

/* Metallic Text Utilities */
.text-gold {
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.bg-gold {
  background: var(--gold-metallic);
}

/* Glassmorphism Refined */
.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 0, 0, 0.1);
  box-shadow: 0 8px 32px rgba(139, 0, 0, 0.05);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #FFF8E1;
}
::-webkit-scrollbar-thumb {
  background: #8B0000;
  border-radius: 4px;
}

/* Animations */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
  animation: fade-in-up 0.8s ease-out forwards;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.animate-float {
  animation: float 4s ease-in-out infinite;
}
