/* ============================================================
   homeVault — custom styles (Tailwind handles most styling)
   ============================================================ */

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

/* Focus ring visibility */
:focus-visible {
  outline: 2px solid #5078ff;
  outline-offset: 2px;
}

/* Prevent layout shift from scrollbar */
html { overflow-y: scroll; }

/* Service card hover glow */
.service-card:not(.cursor-default):hover {
  box-shadow: 0 0 0 1px rgba(80, 120, 255, 0.3), 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Subtle loading shimmer for status indicators */
@keyframes pulse-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.animate-pulse {
  animation: pulse-glow 2s ease-in-out infinite;
}
