.hero-image {
  animation: zoomEffect 12s ease-in-out infinite;
}

@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.mega-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  margin-bottom: 6px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

/* Subtle red left border */
.mega-link:hover {
  color: #dc2626;
  border-left: 3px solid #dc2626;
  background: rgba(220, 38, 38, 0.08);
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.25);
}

/* Hover underline slide effect */
.mega-link::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 6px;
  width: 0%;
  height: 2px;
  background: #dc2626;
  transition: width 0.3s ease;
}

.mega-link:hover::after {
  width: 60%;
}

/* SHRINK EFFECT */
#hoursBar {
  transition: all 0.3s ease;
}

#hoursBar.shrink {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
  background-color: rgba(0,0,0,0.95);
}

#hoursBar.shrink span {
  font-size: 12px;
}

#hoursBar.shrink i {
  transform: scale(0.85);
}
