/* HopeBear Custom Styles */
/* Add any custom styles here - they'll apply to all pages */

/* Trust bar scrolling animation */
.trust-scroll {
  animation: scroll 25s linear infinite;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-scroll:hover {
  animation-play-state: paused;
}

/* Mobile menu toggle (add JS to make this work) */
#mobile-menu.open {
  display: block;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #2D5A27;
  outline-offset: 2px;
}

/* Custom selection color */
::selection {
  background-color: #E8F0E6;
  color: #2D2A26;
}
