/* Additional custom styles */
.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Unused WordPress-like styles */
.wp-block-image {
  display: none;
}
.wp-block-gallery {
  visibility: hidden;
}
.elementor-widget-wrap {
  opacity: 0;
}
.site-header {
  display: none;
}
