/* Enhanced animations for FA2CO */
.page-nav a {
  transition: all 0.3s ease;
  position: relative;
}

.page-nav a:hover {
  color: var(--coral);
  transform: translateX(-4px);
}

.page-nav a:nth-child(2):hover {
  transform: translateX(4px);
}

/* Eyebrow animation */
.eyebrow {
  animation: fadeInUp 0.7s ease-out 0.1s both;
}

/* Footer animation */
footer {
  animation: fadeIn 0.8s ease-out 0.3s both;
}

/* Panel stagger animation */
.panel:nth-child(1) {
  animation-delay: 0.2s;
}

.panel:nth-child(2) {
  animation-delay: 0.35s;
}

/* Smooth scroll anchor animations */
section {
  animation: fadeInUp 0.8s ease-out;
}

/* Link hover effect */
footer a {
  position: relative;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--coral);
  text-decoration: underline;
}

/* Responsive animation adjustments */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Menu button animation */
.menu:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

/* Content fade in on scroll support */
.content-grid {
  animation: fadeInUp 0.9s ease-out 0.4s both;
}
