
/* Minimal custom CSS; layout/spacing/typography are preserved via Tailwind utility classes.
   We keep fonts and visual feel identical to the provided page. Add any custom overrides here.
*/
:root {
  --brand-blue: #2563eb; /* Tailwind blue-600 */
}
/* Buttons focus outline for accessibility */
button:focus-visible, a:focus-visible {
  outline: 3px solid rgba(37,99,235,.5);
  outline-offset: 2px;
}
/* Smooth image backgrounds on cards */
.bg-cover { background-size: cover; }
.bg-center { background-position: center; }

footer a:hover {
  color: #fff;
}
footer i {
  transition: transform 0.2s ease;
}
footer i:hover {
  transform: scale(1.1);
}

