/* style.css - Typography setup and custom brand gradients */

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  scroll-behavior: smooth;
}

/* Shopee Orange (#ee4d2d) to Royal Purple (#7c3aed) solid brand background overlay */
.bg-gradient-brand {
  background: linear-gradient(135deg, #ee4d2d 0%, #7c3aed 100%);
}

/* Custom text clip rule to inject the brand gradient spectrum inside typography shapes */
.text-gradient {
  background: linear-gradient(to right, #ee4d2d, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}