@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

.prose ul {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Animation for sacred elements */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.sacred-pulse {
    animation: pulse 3s infinite;
}

/* Fade in animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

/* Custom styles for images */
.img-glow {
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

.img-glow:hover {
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.5);
}