:root{
  --primary:#57b13b; --secondary:#00713f; --accent:#f7d630; --dark:#545454;
}

/* Smooth anchor scrolling */
html{ scroll-behavior:smooth }

/* ✅ SCROLL SAFETY: ensure desktop scrolling can’t be locked */
html, body{
  height:auto;
  overflow-y:auto !important;     /* override any accidental overflow:hidden */
}

/* Active nav link */
.nav-link.active{ color:var(--primary); font-weight:700 }

/* Subtle fade-in utility */
.fade-in{ opacity:0; transform:translateY(8px); animation:fi .4s ease-out forwards }
@keyframes fi{ to{ opacity:1; transform:none } }

/* Carousel */
.carousel-track{ display:flex; transition:transform .5s ease-in-out }
.carousel-slide{ min-width:100% }
