/* Suncraft Studios — Custom CSS */
/* Supplement to Tailwind CDN */

html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; }

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

[x-cloak] { display: none !important; }

.orange-glow {
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.15);
}

.testimonial-card {
  border-left: 3px solid #F97316;
}
