/* Small custom touches on top of Tailwind utility classes */
.hero-bg {
  background: linear-gradient(rgba(15,118,110,.55), rgba(15,118,110,.55)),
              url('../images/hero.jpg') center/cover no-repeat;
}
.card-hover { transition: transform .2s ease, box-shadow .2s ease; }
.card-hover:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,.12); }
.search-box input:focus { outline: 2px solid #d4a017; }
