/*
 * Animations and Effects
 * 
 * @package Viva_Magenta_V1
 */

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

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

/* Loading States */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print Styles */
@media print {
  body {
    padding-top: 0;
    font-size: 12pt;
    line-height: 1.4;
  }

  .site-header,
  .mobile-menu-toggle,
  .cta-button,
  .social-links,
  .testimonials-nav,
  .final-cta-section,
  .site-footer {
    display: none;
  }

  .hero-section {
    height: auto;
    min-height: auto;
    page-break-after: always;
  }

  .section-title {
    font-size: 18pt;
    margin-bottom: 12pt;
  }
}
