/*
Theme Name: Eptima Lite Child New
Theme URI: https://ld-b.com
Description: Child theme for Eptima Lite
Author: LD & B LLC
Author URI: https://ld-b.com
Template: eptima-lite
Version: 1.0.0
*/

/* Your custom CSS below this line */
<?php
// Enqueue parent and child theme styles
function eptima_child_enqueue_styles() {
    wp_enqueue_style('parent-style', get_template_directory_uri() . '/style.css');
    wp_enqueue_style('child-style', 
        get_stylesheet_directory_uri() . '/style.css',
        array('parent-style'),
        wp_get_theme()->get('Version')
    );
}
add_action('wp_enqueue_scripts', 'eptima_child_enqueue_styles');

// Add slider after header on homepage only
function ldb_add_homepage_slider() {
    if (is_front_page()) {
        ?>
        <style>
        /* Hide the default header image on homepage only */
        .home .header-image-section,
        .home #header-image {
            display: none !important;
        }
        </style>
        <div class="custom-slider-wrapper" style="max-width: 1200px; margin: 20px auto; padding: 0 15px;">
            <?php echo do_shortcode('[smartslider3 slider="2"]'); ?>
        </div>
        <?php
    }
}
add_action('wp_body_open', 'ldb_add_homepage_slider', 10);