/* ============================================================
   SWARMOHINI MODERN RESPONSIVE & ANIMATION TOOLKIT
   ============================================================ */

/* Logo Sub-captions */
.logo-container {
  display: inline-block;
  text-align: center;
  text-decoration: none !important;
}
.logo-subtext {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #92278f;
  font-weight: 700;
  margin-top: -4px;
}

/* Glowing Pulse Badges */
.event-badge-glow {
  background: linear-gradient(135deg, #92278f 0%, #d83a8b 100%);
  color: #ffffff !important;
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(146, 39, 143, 0.35);
  animation: pulseGlow 2.5s infinite;
  transition: all 0.3s ease;
}
.event-badge-glow.teal {
  background: linear-gradient(135deg, #165b61 0%, #29a0ab 100%);
  box-shadow: 0 4px 15px rgba(22, 91, 97, 0.35);
  animation: pulseGlowTeal 2.5s infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 15px rgba(146, 39, 143, 0.35); transform: scale(1); }
  50% { box-shadow: 0 6px 22px rgba(146, 39, 143, 0.65); transform: scale(1.02); }
}
@keyframes pulseGlowTeal {
  0%, 100% { box-shadow: 0 4px 15px rgba(22, 91, 97, 0.35); transform: scale(1); }
  50% { box-shadow: 0 6px 22px rgba(22, 91, 97, 0.65); transform: scale(1.02); }
}

/* Premium Elevating Cards */
.premium-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  margin-bottom: 30px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid #f2e9f0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
.premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(146, 39, 143, 0.12);
  border-color: #e5ccdf;
}

/* Interactive Image Zoom Frames */
.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  margin-bottom: 16px;
  background: #111;
}
.photo-frame img {
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
  display: block;
}
.photo-frame:hover img {
  transform: scale(1.08);
  opacity: 0.88;
}
.photo-frame .zoom-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(146, 39, 143, 0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.photo-frame.teal:hover .zoom-overlay {
  background: rgba(22, 91, 97, 0.45);
}
.photo-frame:hover .zoom-overlay {
  opacity: 1;
}
.photo-frame .zoom-overlay i {
  color: #fff;
  font-size: 24px;
  background: rgba(0,0,0,0.5);
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  transform: translateY(15px);
  transition: transform 0.35s ease;
}
.photo-frame:hover .zoom-overlay i {
  transform: translateY(0);
}

/* Spiritual Mantra Callout */
.mantra-callout {
  background: linear-gradient(135deg, #fffcf9 0%, #fbf3f9 100%);
  border-left: 5px solid #92278f;
  padding: 18px 22px;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 4px 12px rgba(146, 39, 143, 0.04);
}
.mantra-callout p {
  color: #72166e;
  font-size: 15.5px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 5px;
  line-height: 1.6;
}

/* Pill Tags */
.bhajan-tag {
  display: inline-block;
  background: #ffffff;
  border: 1px solid #dfb5d7;
  color: #72166e;
  padding: 7px 15px;
  margin: 4px 2px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.bhajan-tag:hover {
  background: #92278f;
  color: #ffffff;
  border-color: #92278f;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(146, 39, 143, 0.25);
}

.disciple-pill {
  display: inline-block;
  background: #fbf9fb;
  border: 1px solid #e7dbe5;
  color: #444;
  padding: 6px 13px;
  margin: 3px;
  border-radius: 20px;
  font-size: 13px;
  transition: background 0.3s ease;
}
.disciple-pill:hover {
  background: #f1e4ef;
}
.disciple-pill strong {
  color: #92278f;
}