/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://example.com/hello-elementor-child
 Description:  A clean child theme for Hello Elementor. Safe customizations that persist through parent updates.
 Author:       Your Name
 Author URI:   https://example.com
 Template:     hello-elementor
 Version:      1.0.0
 Text Domain:  hello-elementor-child
 License:      GNU General Public License v2 or later
 License URI:  https://www.gnu.org/licenses/gpl-2.0.html
*/

/* Add your custom CSS below */
:root {
  --hello-child-accent: #3b82f6; /* example accent */
}
body { 
  /* Example: slightly adjusted base font size */
  font-size: 17px;
}
a { text-decoration-thickness: 2px; }
function hello_child_enqueue_styles() {
    // Load parent theme styles
    wp_enqueue_style('hello-elementor-style', get_template_directory_uri() . '/style.css');

    // Load child theme styles
    wp_enqueue_style('hello-elementor-child-style', get_stylesheet_directory_uri() . '/style.css', array('hello-elementor-style'));

    // Load custom CSS
    wp_enqueue_style('hello-elementor-custom-style', get_stylesheet_directory_uri() . '/custom.css', array('hello-elementor-child-style'));
}
add_action('wp_enqueue_scripts', 'hello_child_enqueue_styles');
function my_custom_footer_text($text) {
    // Replace footer text with your custom message
    $text = '© ' . date('Y') . ' My Website. All Rights Reserved.';
    return $text;
}
add_filter('the_footer_text', 'my_custom_footer_text');

