html {
  scroll-behavior: smooth;
}
.themed-hero {
  position: relative;
}
.themed-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 47, 146, 0.18), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}
.themed-hero .hero-shell {
  position: relative;
  z-index: 1;
}
.themed-hero-actions .btn {
  max-width: 100%;
}
.themed-hero-cta {
  box-shadow: var(--shadow-glow-pink);
  transform: translateY(0);
}
.themed-hero-cta:hover {
  transform: translateY(-2px) scale(1.01);
}
.themed-hero-media {
  margin-top: var(--space-xl);
}
.themed-hero-image {
  max-height: 480px;
  width: 100%;
  object-fit: cover;
}
.themed-programs-header {
  text-align: center;
}
.themed-programs-grid {
  margin-top: var(--space-xl);
}
.themed-event-card {
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}
.themed-event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft), var(--shadow-glow-pink);
  border-color: var(--color-border-strong);
}
.themed-event-media {
  max-height: 220px;
}
.themed-event-media img {
  height: 100%;
  object-fit: cover;
}
.themed-card-footer {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.themed-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}
.themed-card-cta {
  align-self: flex-start;
  max-width: 100%;
}
.themed-list {
  margin: 0;
  padding: 0;
}
.themed-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.35rem;
  color: var(--color-text-soft);
}
.themed-list li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background-image: linear-gradient(135deg, var(--color-primary), var(--color-accent-violet));
  box-shadow: 0 0 12px rgba(255, 47, 146, 0.7);
}
.themed-extra-info {
  margin-top: var(--space-xl);
  text-align: center;
}
.themed-booking-grid {
  gap: var(--grid-gap-xl);
}
.themed-booking-header {
  margin-bottom: var(--space-lg);
}
.themed-booking-steps {
  margin-bottom: var(--space-lg);
}
.themed-steps-list {
  margin: 0 0 var(--space-md);
  padding-left: 0;
  counter-reset: themed-steps;
}
.themed-steps-list li {
  counter-increment: themed-steps;
  position: relative;
  padding-left: 2.4rem;
  margin-bottom: 0.75rem;
}
.themed-steps-list li::before {
  content: counter(themed-steps);
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  background-image: linear-gradient(135deg, var(--color-primary), var(--color-accent-violet));
  color: var(--color-text-invert);
  box-shadow: var(--shadow-glow-pink);
}
.themed-booking-actions .btn {
  max-width: 100%;
}
.themed-booking-meta {
  margin-top: var(--space-md);
}
.themed-booking-panel {
  min-width: 0;
}
.themed-booking-card {
  height: 100%;
}
.themed-booking-form .btn-block {
  max-width: 100%;
}
.themed-form-submit {
  margin-top: var(--space-sm);
}
.nav-toggle {
  flex-direction: column;
}
@media (max-width: 1023.98px) {
  .themed-hero-media {
    margin-top: var(--space-lg);
  }
  .themed-event-media {
    max-height: 260px;
  }
}
@media (max-width: 767.98px) {
  .themed-programs-grid {
    margin-top: var(--space-lg);
  }
  .themed-card-footer {
    align-items: flex-start;
  }
  .themed-booking-grid {
    gap: var(--grid-gap-lg);
  }
}
@media (max-width: 479.98px) {
  .themed-hero-image {
    max-height: 360px;
  }
  .themed-steps-list li {
    padding-left: 2.1rem;
  }
}
