/* ==========================================================================
   RFMANAGER — ANIMATIONS & INTERACTIONS
   Logo scroll state, transitions and hover interactions.
   Load this file after responsive.css.
   ========================================================================== */
.hero-logo {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
  will-change: opacity,
    filter,
    transform;
  transition: opacity 0.05s linear,
    filter 0.05s linear,
    transform 0.05s linear;
}

.contact-email a:hover {
  color: var(--yellow);
}

.contact-arrow {
  transition: transform
    0.2s
    ease;
}

.contact-link:hover .contact-arrow {
  transform: translateX(8px);
}
