/* ArcAttend Alpha Banner Styles */
#arcattend-banner {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 1000;
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.banner-content h3 {
  color: #5052b5;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.banner-button {
  color: #5052b5;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.banner-button::after {
  content: '→';
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.banner-button:hover {
  color: #7073d6;
}

.banner-button:hover::after {
  transform: translateX(5px);
  animation: arrowBounce 0.6s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(10px);
  }
}

/* Responsive adjustments */
@media screen and (max-width: 736px) {
  #arcattend-banner {
    padding: 0.75rem 1rem;
  }

  .banner-content {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .banner-content h3 {
    font-size: 1.2rem;
  }

  .banner-button {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}
