/* Smitty's Dumpster - Custom Styles */

html {
  scroll-behavior: smooth;
}

.shadow-glow {
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.25);
}

/* Reveal-on-scroll base + in-state */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-in {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ smooth height (progressive enhancement) */
.faq-a {
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
}
