/*
Theme Name: Zaro Hero
Theme URI: http://example.com/my-child-theme
Description: A custom child theme for my website.
Author: German
Author URI: http://example.com
Template: astra
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: zaro-hero
*/

/* my-child-theme/style.css */
/* ... (tu info de child theme) ... */

@import url("css/landing-products.css");

.my-custom-hero {
    background-image: url('<?php echo get_stylesheet_directory_uri(); ?>/images/hero-bg.jpg'); /* Usa una imagen dentro de tu child theme */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 20px;
    position: relative;
    /* Puedes añadir un overlay para el texto */
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,0.4);
}

.my-custom-hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
}

/* ... más estilos para tu Hero ... */
