/**
 * Mirrors src/index.css — custom base styles, animations and scrollbar
 * that sit alongside the compiled Tailwind utilities (tailwind.css).
 */

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

h1, h2, h3, h4, .font-serif-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoFade {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.96);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-slide-down {
  animation: slideDown 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-logo-fade {
  animation: logoFade 1.8s ease-in-out infinite;
}

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

/* Custom subtle scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #faf9f6;
}
::-webkit-scrollbar-thumb {
  background: #d1cebc;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #a19d8a;
}
