/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Estilos Josemi */
/* =========================================================
   HEADER TRANSPARENTE → BLANCO AL HACER SCROLL
   usando elementor-sticky--effects (offset 50)
   ========================================================= */

/* estado inicial del header */
.header-swap{
    background: transparent !important;
    box-shadow: none !important;
    transition: background-color .25s ease, box-shadow .25s ease;
}

/* cuando se superan los 50px de scroll */
.header-swap.elementor-sticky--effects{
    background: #ffffff !important;
    box-shadow: 0 2px 12px rgba(0,0,0,.08) !important;
}


/* =========================================================
   CAMBIO DE LOGOS
   ========================================================= */

/* por defecto */
.header-swap .logo-light{
    display:block;
}

.header-swap .logo-dark{
    display:none;
}

/* cuando se superan los 50px */
.header-swap.elementor-sticky--effects .logo-light{
    display:none;
}

.header-swap.elementor-sticky--effects .logo-dark{
    display:block;
}


/* =========================================================
   COLOR DEL MENÚ
   ========================================================= */

/* menú cuando el header es transparente */
.header-swap .elementor-nav-menu .elementor-icon-wrapper a{
    color:#ffffff !important;
    transition: color .2s ease;
}

/* menú cuando aparece fondo blanco */
.header-swap.elementor-sticky--effects.elementor-sticky--active .elementor-icon-wrapper a{
    color:#000000 !important;
}


/* =========================================================
   TRANSICIÓN SUAVE DE LOGOS
   ========================================================= */

.header-swap .logo-light img,
.header-swap .logo-dark img{
    transition: opacity .25s ease;
}