/* Caregentis / NutriDesk site styles */
:root {
  --brand-accent: #0891B2;
  --brand-ink: #0B1220;
  --brand-tint: #E0F2FE;
  --brand-bg: #F8FAFC;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #F8FAFC;
  color: #0B1220;
  overflow-x: hidden;
}

.font-heading {
  font-family: 'Montserrat', sans-serif;
}

.font-hand {
  font-family: 'Caveat', cursive;
}

.font-bricolage {
  font-family: 'Bricolage Grotesque', sans-serif;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-marquee {
  animation: marquee 30s linear infinite;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0B1220;
}
