/* Ess Nutriments — Chantelle van der Merwe & Associates
   Static landing page styles. No JavaScript required. */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: #46423C;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { display: block; }
a { -webkit-tap-highlight-color: transparent; }

/* Auto-scrolling logo carousels (pure CSS, runs without JS;
   if JS/CSS animation is unavailable the logos simply sit static and readable). */
@keyframes enmarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee {
  display: flex;
  align-items: center;
  width: max-content;
  animation: enmarquee 34s linear infinite;
}
.marquee--med { animation-duration: 30s; }
.marquee:hover { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .marquee { animation: none; transform: none; }
}
