/*
Theme Name: BaganBari Kitchen
Theme URI: https://kamalahmed.info/
Author: Kamal Ahmed
Author URI: https://youragency.com/
Description: A highly optimized, custom WordPress theme developed for performance and scalability.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: baganbari
*/

/* Custom CSS required for dynamic elements */
.green-glow {
    box-shadow: 0 0 35px -5px rgba(96, 173, 19, 0.4);
}
.yellow-glow {
    box-shadow: 0 0 25px -5px rgba(255, 186, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}