/*
 * Theme Custom Animations and Utility Overrides
 */

.font-serif {
  font-family: 'Playfair Display', Georgia, serif;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #100a07;
  color: #f5e6d3;
}

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

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