:root {
  --color-navy: #1a365d;
  --color-navy-light: #2c5282;
  --color-gold: #c9a227;
  --color-gold-light: #e6c04a;
  --color-charcoal: #2d3748;
  --color-charcoal-light: #4a5568;
}

.prose a {
  color: var(--color-navy);
  text-decoration: underline;
}
.prose a:hover {
  color: var(--color-gold);
}

/* Custom Animations */
@keyframes slow-zoom {
  0% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slow-zoom {
  animation: slow-zoom 20s ease-out forwards;
}

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

.animate-fade-in-up {
  animation: fade-in-up 1s ease-out forwards;
  opacity: 0;
}

.animation-delay-200 {
  animation-delay: 200ms;
}

.animation-delay-400 {
  animation-delay: 400ms;
}

.animation-delay-600 {
  animation-delay: 600ms;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

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

::-webkit-scrollbar-thumb:hover {
  background: #2c5282;
}
