/*
Theme Name: Lovn3D Women’s Ministry
Theme URI: https://ais-dev-rq5jjv7y5iv3aggbxeraog-407777433859.asia-east1.run.app
Description: A custom WordPress theme for Lovn3D Women's Ministry, built with Tailwind CSS.
Version: 96.0.0
Author: Abdur Rahman Rahul & Yousuf Kha
Author URI: https://linktr.ee/rahul24index
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lovn3d

Developer Details:
Developer 1:
Name: Abdur Rahman Rahul
Role: Digital Analyst & Strategist | Dhaka, Bangladesh
Contact: https://linktr.ee/rahul24index

Developer 2:
Name: Yousuf Kha
Role: Digital Marketing Specialist
Linkedin: https://www.linkedin.com/in/mdyousufkha/

Author: Abdur Rahman Rahul & Yousuf Kha
*/

/* 
  Note: Most styling is handled via Tailwind CSS CDN in functions.php.
  You can add custom CSS here if needed.
*/

@keyframes pulse-animation {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(220, 38, 38, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.pulse-animation {
  animation: pulse-animation 2s infinite;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
  opacity: 0;
}

.accordion-content.active {
  max-height: 500px;
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
