/*
Theme Name: Enfold Child
Description: A <a href='http://codex.wordpress.org/Child_Themes'>Child Theme</a> for the Enfold Wordpress Theme. If you plan to do a lot of file modifications we recommend to use this Theme instead of the original Theme. Updating will be much easier then.
Version: 1.0
Author: Kriesi
Author URI: http://www.kriesi.at
Template: enfold
*/



/*Add your own styles here:*/

/* ===========================
   FAQ SCRIPT - BADANTI BOLOGNA
   =========================== */

function bb_custom_faq_script() { ?>
<script>
document.addEventListener("DOMContentLoaded", function () {

    // Selettore delle domande
    const faqItems = document.querySelectorAll(".bb-faq-item");

    faqItems.forEach(item => {
        const question = item.querySelector(".bb-faq-question");
        const answer = item.querySelector(".bb-faq-answer");

        // Nascondo tutte le risposte all'inizio
        answer.style.display = "none";

        // Evento click sulla domanda
        question.addEventListener("click", function () {

            // Chiudo tutte le altre risposte
            document.querySelectorAll(".bb-faq-answer").forEach(a => {
                if (a !== answer) a.style.display = "none";
            });

            // Apro/Chiudo la risposta cliccata
            if (answer.style.display === "none") {
                answer.style.display = "block";
            } else {
                answer.style.display = "none";
            }

            // Scroll dolce alla domanda su desktop
            setTimeout(() => {
                question.scrollIntoView({ behavior: "smooth", block: "center" });
            }, 100);
        });
    });

});
</script>
<?php }
add_action('wp_footer', 'bb_custom_faq_script');

