@import "tailwindcss";

@theme {
  /* KOVA Brand Colors */
  --color-kova-base: #0E0E11;
  --color-kova-accent: #3D9CFF;
  --color-kova-muted: #B7BBC5;

  /* System Font Stack (geometric sans) */
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Markdown content styling */
.markdown-content h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.markdown-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.markdown-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: white;
}

.markdown-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--color-kova-muted);
}

.markdown-content ul, .markdown-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  color: var(--color-kova-muted);
}

.markdown-content li {
  margin-bottom: 0.5rem;
}

.markdown-content strong {
  font-weight: 600;
  color: white;
}

.markdown-content hr {
  margin: 2rem 0;
  border-color: rgba(255, 255, 255, 0.1);
}

/* Fade-in animation for metric values */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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