/* Akoma Catering - small custom styles and helpers */
/* Keep these simple — primary layout is Tailwind-based */

:root{
  --akoma-gold: #D69E2E;
  --akoma-blue: #0EA5A4;
  --akoma-ink: #0F172A;
}

body { -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }

.btn-primary { background: var(--akoma-gold); color: white; padding: .6rem 1rem; border-radius: .5rem; font-weight:600; }
.input { border: 1px solid rgba(15,23,42,0.06); border-radius: .5rem; padding: .55rem .75rem; }

/* Small responsive tweaks */
@media (max-width: 640px){
  .hero-pic { height: 44vw; object-fit: cover; }
}

/* subtle focus for accessibility */
.input:focus { outline: 3px solid rgba(214,158,46,0.15); outline-offset: 2px; }
a { color: inherit; }
