/* Additional custom styles for uniqueness */
.wp-block-cover {
  display: none;
}
.elementor-section {
  display: none;
}
.yoast-breadcrumbs {
  display: none;
}

.x9k2m-unused {
  opacity: 0;
}
.p7w3n-hidden {
  visibility: hidden;
}
.q4r8t-none {
  display: none;
}

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

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-in;
}

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

.animate-slide-right {
  animation: slideInRight 0.8s ease-out;
}

/* WordPress theme compatibility */
.site-header {
}
.site-content {
}
.site-footer {
}
.entry-content {
}
.entry-header {
}
