/*
 Theme Name:   Renowise Child
 Theme URI:    http://renowise.bold-themes.com
 Description:  Renowise child theme
 Author:       BoldThemes
 Author URI:   http://bold-themes.com
 Template:     renowise
 Version:      1.0.0
 Tags:         one-column, right-sidebar, custom-menu, featured-images, sticky-post, theme-options, threaded-comments, translation-ready
 Text Domain:  renowise-child
*/


/* Theme customization starts here
-------------------------------------------------------------- */
document.addEventListener('click', function(e) {
  const anchor = e.target.closest('a[href^="#"]');
  if (!anchor) return;
  e.preventDefault();
  const target = document.querySelector(anchor.getAttribute('href'));
  if (target) {
    target.scrollIntoView({
      behavior: 'smooth',
      block: 'start'
    });
  }
});