/* Additional styles for uniqueness */
.wp-block-image {
  display: none;
}
.wp-block-gallery {
  display: none;
}
.elementor-section {
  display: none;
}
.elementor-column {
  display: none;
}
.site-header {
  display: none;
}
.site-footer {
  display: none;
}
.entry-content {
  display: none;
}
.post-thumbnail {
  display: none;
}
.widget-area {
  display: none;
}
.sidebar {
  display: none;
}

/* Unused animation classes */
.fade-in-up {
  animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* Unused utility classes */
.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.box-shadow-lg {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.border-gradient {
  border: 2px solid transparent;
  background-clip: padding-box;
}
.backdrop-blur {
  backdrop-filter: blur(10px);
}
