/* assets/css/style.css
   Custom overrides on top of Bootstrap 5. Keep this lean —
   the spec calls for a fast, lightweight site. */

:root {
  --brand-primary: #2563eb;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.navbar-brand {
  color: var(--brand-primary) !important;
}

.card {
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.08) !important;
}

.ad-slot {
  min-height: 0; /* avoid layout shift once real ad units are added */
}
