/*@import "tailwindcss";*/

@layer base {
  body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #FDFBF7;
    color: #2C2C2C;
  }

  h1, h2, h3, .font-serif {
    font-family: 'Playfair Display', Georgia, Cambria, 'Times New Roman', Times, serif;
  }
}

/* Custom smooth scrollbar in warm earth tone */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #FAF7F2;
}
::-webkit-scrollbar-thumb {
  background: #D9D2C7;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #8C7E6A;
}

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

.animate-fadeIn {
  animation: fadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
