
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}

.font-serif {
  font-family: 'Playfair Display', serif;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.animate-slow-zoom {
  animation: slowZoom 30s ease-in-out infinite;
}

/* Subtle glowing effect for the facelift text */
.glow-text {
  text-shadow: 0 0 20px rgba(165, 180, 252, 0.3);
}
