/* Featured upcoming event promo — shared across all public pages.
   Update copy/URL in assets/featured-event.js only. */

.nav-events-cluster {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-event-promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: .01em;
  color: #fff !important;
  opacity: 1 !important;
  height: auto !important;
  line-height: 1.2;
  background: linear-gradient(135deg, #F2A024, #B84C26 60%, #8B2E14);
  box-shadow: 0 0 0 0 rgba(242, 160, 36, .55), 0 6px 18px rgba(184, 76, 38, .28);
  animation: event-promo-pulse 1.8s ease-in-out infinite;
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s;
}

.nav-event-promo:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 4px rgba(242, 160, 36, .25), 0 10px 24px rgba(184, 76, 38, .35);
}

.nav-event-promo .promo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px rgba(255, 255, 255, .8);
  animation: event-promo-dot 1.2s ease-in-out infinite;
  flex-shrink: 0;
}

.nav-event-promo .promo-short { display: none; }

@keyframes event-promo-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(242, 160, 36, .5), 0 6px 18px rgba(184, 76, 38, .28); }
  50% { box-shadow: 0 0 0 6px rgba(242, 160, 36, 0), 0 8px 22px rgba(184, 76, 38, .34); }
}

@keyframes event-promo-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .55; }
}

.mobile-event-promo {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 16px 8px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #F2A024, #B84C26 60%, #8B2E14);
  box-shadow: 0 8px 24px rgba(184, 76, 38, .28);
  animation: event-promo-pulse 1.8s ease-in-out infinite;
}

.mobile-event-promo .promo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

.mobile-nav-event-promo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 4px 0 10px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  color: #fff !important;
  background: linear-gradient(135deg, #F2A024, #B84C26 60%, #8B2E14);
}

@media (max-width: 1100px) {
  .nav-event-promo .promo-full { display: none; }
  .nav-event-promo .promo-short { display: inline; }
}

@media (max-width: 900px) {
  .nav-event-promo,
  .nav-stockholm-promo { display: none !important; }
  .mobile-event-promo,
  .hero-stockholm-promo { display: flex; }
}

/* Legacy homepage class names */
.nav-stockholm-promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: .01em;
  color: #fff !important;
  opacity: 1 !important;
  height: auto !important;
  line-height: 1.2;
  background: linear-gradient(135deg, #F2A024, #B84C26 60%, #8B2E14);
  box-shadow: 0 0 0 0 rgba(242, 160, 36, .55), 0 6px 18px rgba(184, 76, 38, .28);
  animation: event-promo-pulse 1.8s ease-in-out infinite;
  white-space: nowrap;
}
.nav-stockholm-promo .promo-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #fff; flex-shrink: 0;
}
.nav-stockholm-promo .promo-short { display: none; }
@media (max-width: 1100px) {
  .nav-stockholm-promo .promo-full { display: none; }
  .nav-stockholm-promo .promo-short { display: inline; }
}
.hero-stockholm-promo {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 16px 8px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #F2A024, #B84C26 60%, #8B2E14);
  box-shadow: 0 8px 24px rgba(184, 76, 38, .28);
  animation: event-promo-pulse 1.8s ease-in-out infinite;
}
.hero-stockholm-promo .promo-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #fff; flex-shrink: 0;
}
