/* Site Header */

.site-header {
  position: fixed;
  top: 12rem;
  left: 0;
  width: 100%;
  z-index: 999;
  pointer-events: none;
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  pointer-events: none;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  pointer-events: none;
}

.header-logo svg {
  height: 32px;
}

.buy-tickets-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 12px 24px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 800px;
  text-decoration: none;
  transition: all 0.3s ease;
  animation:
    pulse 2s infinite,
    glow 2s infinite;
  position: relative;
  pointer-events: auto;
}

.buy-tickets-button:hover {
  transform: scale(1.05);
  animation: glow 1.5s infinite;
}

.button-text {
  font-size: 16px;
  font-weight: 500;
  color: #09090b;
}

.button-icon {
  width: 32px;
  height: 32px;
  background-color: #000;
  border-radius: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

@media (max-width: 768px) {
  .site-header {
    top: 20px;
  }

  .buy-tickets-button {
    display: none !important;
  }
}
