/* Image Optimization and Lazy Loading Styles */

/* Fade in effect when loaded */
img.loaded {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Optimize images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Hide about-section images on responsive screens */
@media (max-width: 768px) {
  .about-left,
  .about-right {
    display: none;
  }

  /* Add spacing from top to store buttons on responsive */
  .store-btns {
    margin-top: 30px;
  }
}
