/* styles.css */

/* Apply smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Custom link hover underline */
nav a:hover {
  text-decoration: underline;
}

/* Contact form success message */
#formMessage {
  display: none;
  margin-top: 1rem;
  font-weight: 600;
}

/* Utility overrides for brand */
.bg-brand-purple { background-color: #7C35DB; }
.bg-brand-blue { background-color: #0058FC; }
.bg-brand-pink { background-color: #F943D5; }
.bg-brand-dark { background-color: #110230; }
.text-brand-purple { color: #7C35DB; }
.text-brand-blue { color: #0058FC; }
.text-brand-pink { color: #F943D5; }
.text-brand-dark { color: #110230; }