/* Styles that only apply to case003.html */

body {
  background-color: #FFFFFF;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
:where(#root *, #root *::before, #root *::after) {
  border-style: solid;
  border-width: 0;
  border-color: #e5e7eb;
}

/* Base class for elements that will animate */
.reveal-base {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

/* Active state when element is in view */
.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Photo frame to ensure gaps between images - from Case 001 */
.photo-frame {
  padding: 12px;
  background: transparent;
  border: none;
  box-shadow: none;
}

@media (min-width: 768px) {
  .photo-frame {
    padding: 20px;
  }
}

/* Optimize image loading */
img {
  display: block;
  border: none;
}
