/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Template: astra
Author: Brainstorm Force
Author URI: https://wpastra.com/
Description: Astra is a fast, fully customizable & beautiful WordPress theme suitable for blog, personal portfolio, business website and WooCommerce storefront.
Version: 1.0.0
Text Domain: astra-child
*/

/* IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* VARIABLES */
:root {
    --isae-accent: #a6ce39;
    --isae-dark: #1d1d1d;
    --isae-gray: #7a7a7a;
    --isae-light: #f4f4f4;
    --isae-white: #ffffff;
    --isae-font: 'Poppins', sans-serif;
    --isae-gap: 60px;
}

/* RESET / GLOBAL */
body.isae-corporate-redesign {
    font-family: var(--isae-font);
    color: var(--isae-dark);
    margin: 0;
}

/* Todo el fondo se gestiona ahora en custom-blog.css para máxima limpieza */

/* =============== MEJORAS DE CABECERA Y MENU =============== */
/* Hacer el menú más vistoso (blanco con sombra marrón del logo) */
.main-header-menu .menu-item>a {
    color: #ffffff !important;
    /* Texto en blanco para contrastar */
    font-weight: 700 !important;
    text-transform: uppercase !important;
    text-shadow:
        1px 1px 0 #4a3424,
        -1px -1px 0 #4a3424,
        1px -1px 0 #4a3424,
        -1px 1px 0 #4a3424,
        0px 2px 5px rgba(0, 0, 0, 0.4) !important;
    /* Borde marrón y un ligero sombreado suave */
}

.main-header-menu .menu-item>a:hover {
    color: #f7a827 !important;
    /* Naranja corporativo al pasar el ratón */
    text-shadow:
        1px 1px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000 !important;
}