/* ============================================================
   SEASONAL-THEME.CSS — Seasonal badge & accent transitions
   ============================================================ */

/* Smooth accent-color transitions on theme/season change */
:root {
  transition: --accent 0.4s ease;
}

/* --- Logo wrapper: allow badge to sit beside it --- */
.site-nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1;
  overflow: visible;
}

/* --- Seasonal Badge (inside nav logo) --- */
.seasonal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  height: 1.1rem;
  padding: 0.1rem 0.5rem 0;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 600;
  line-height: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--accent);
  border-radius: 999px;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  flex-shrink: 0;
  position: relative;
  top: 0.55em;
}

.seasonal-badge__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* --- Dark mode adjustments --- */
html[data-theme="dark"] .seasonal-badge {
  border-color: var(--accent);
  color: var(--accent);
}

/* --- Responsive: hide badge on very small screens --- */
@media (max-width: 480px) {
  .seasonal-badge {
    display: none;
  }
}
