/* Global stylesheet - enforces Arial sitewide */
* {
  font-family: Arial, Helvetica, sans-serif !important;
}

/* Preserve any intentional icon fonts */
.icon,
[class*="icon-"],
.fa,
.fas,
.far,
.fal,
.fab {
  font-family: inherit !important;
}

/* Scroll to top button - visible on ALL screen sizes (mobile + desktop) */
#scrollToTop {
  /* Start hidden - JavaScript will show when scrollY > 400 */
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #452068;
  color: white;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(69, 32, 104, 0.3);
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
}

#scrollToTop:hover {
  background: #5a2a88;
  box-shadow: 0 6px 16px rgba(69, 32, 104, 0.4);
  transform: translateY(-2px);
}
