/* Flame Glow Background Animation */
.flame-glow {
  background: radial-gradient(circle at 30% 40%, rgba(79, 209, 197, 0.18), transparent 60%),
              radial-gradient(circle at 70% 60%, rgba(214, 74, 91, 0.18), transparent 60%);
  animation: glowShift 8s ease-in-out infinite alternate;
}

@keyframes glowShift {
  0% {
    background-position: 30% 40%, 70% 60%;
  }
  100% {
    background-position: 40% 45%, 60% 55%;
  }
}

/* Flame Orb */
.flame-orb {
  background: radial-gradient(circle, rgba(79,209,197,0.4), rgba(79,209,197,0.05), transparent 70%);
  animation: orbPulse 6s ease-in-out infinite alternate;
}

@keyframes orbPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.15); opacity: 1; }
}

.font-playfair { font-family: 'Playfair Display', serif; }
.font-inter { font-family: 'Inter', sans-serif; }
