.font-heading { font-family: 'Montserrat', sans-serif; }
.gradient-text { background: linear-gradient(90deg, #E8433F 0%, #ff7a79 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.btn-primary { @apply inline-flex items-center justify-center rounded-full px-6 py-3 font-semibold text-white bg-brand-red hover:brightness-110 transition-shadow shadow-lg shadow-brand-red/30; }
.btn-secondary { @apply inline-flex items-center justify-center rounded-full px-6 py-3 font-medium text-white/90 bg-white/10 hover:bg-white/15 ring-1 ring-white/20 transition-colors; }

/* Footer headings with subtle red underline */
.footer-heading {
  @apply font-heading text-sm md:text-base font-extrabold uppercase tracking-wide text-white;
}
.footer-heading::after {
  content: "";
  display: block;
  margin-top: 8px;
  width: 3.5rem;
  height: 2px;
  background: rgba(232, 67, 63, 0.7); /* brand red */
}

/* Footer links */
.footer-link {
  @apply text-white/80 hover:text-white transition-colors;
}

/* Social circular buttons */
.social-btn {
  @apply inline-flex h-10 w-10 items-center justify-center rounded-full bg-white/5 text-white/80 hover:bg-white/10 hover:text-white ring-1 ring-white/10 transition;
}
