/*
Theme Name: Blogus Child Enhanced
Template: blogus
Version: 1.4
Description: Blogus Child theme with fixed menu animation, Pro removal, custom footer, and rounded scroll up button.
Author: Kweeit
*/

/* Base Menu Style */
.main-navigation ul li a,
.navbar-nav li a,
.bs-main-navigation a {
  position: relative;
  display:inline-block;
  transition: color .25s ease, transform .25s ease;
}

/* Animation Keyframes */
@keyframes shake-jump {
  0% { transform: translateY(0) rotate(0); }
  20% { transform: translateY(-6px) rotate(-6deg); }
  40% { transform: translateY(0) rotate(6deg); }
  60% { transform: translateY(-6px) rotate(-6deg); }
  80% { transform: translateY(0) rotate(6deg); }
  100% { transform: translateY(0) rotate(0); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-10px);}
  60% {transform: translateY(-5px);}
}

@keyframes slide {
  from {transform: translateX(-10px);}
  to {transform: translateX(0);}
}

@keyframes rotate {
  from {transform: rotate(0);}
  to {transform: rotate(360deg);}
}

/* Footer styling */
.site-info {
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: var(--footer-text-color, #222);
}
