/**
Theme Name: Astra Child Theme
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
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: astra-child-theme
Template: astra
*/

:root {
    --text: #0f1724;
    --bg-light: rgba(255,255,255,0.35);
    --bg-dark: rgba(20,20,20,0.8);
    --shadow-light: 0 2px 6px rgba(0,0,0,0.05);
    --shadow-dark: 0 2px 6px rgba(0,0,0,0.3);
    --accent: #e60000;
}


/*************************************************
     HEADER GENERAL – Glass + Compact
**************************************************/
.ast-primary-header-bar,
.ast-main-header-bar {
    background: linear-gradient(90deg, rgba(255,255,255,0.92), rgba(250,250,252,0.92));
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    padding: 8px 20px;
}


/*************************************************
     MENIU DESKTOP / LAPTOP
**************************************************/
.main-header-bar .main-header-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-header-bar .main-header-menu li.menu-item > a {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(65, 81, 97, 1); /* INACTIVE MENUS GRAY */
    text-transform: uppercase;
    transition: all .25s ease;
}

/* Hover desktop – ridicare */
.main-header-bar .main-header-menu li.menu-item > a:hover {
    transform: translateY(-2px);
    color: rgba(65, 81, 97, 1);
}

/* Link activ – accent roșu */
.main-header-bar .main-header-menu li.menu-item.current-menu-item > a {
    color: var(--accent) !important;
    transform: translateY(-2px);
}
/*************************************************
      TABLETĂ (769px – 921px)
**************************************************/
@media (min-width: 769px) and (max-width: 921px) {
 .ast-mobile-header-content {
        padding: 6px 12px !important;
        border-radius: 14px;
        backdrop-filter: blur(10px);
        background: var(--bg-light);
    }

    .ast-mobile-header-content .main-header-menu li > a {
        margin: 2px 0 !important;
        padding: 8px 12px !important;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        color: rgba(65, 81, 97, 1); /* MENU LINKS GRAY */
        background: rgba(255,255,255,0.6);
        border: 1px solid rgba(255,255,255,0.4);
        box-shadow: var(--shadow-light);
        transition: all .25s ease;
    }

    /* Hover mobil – ridicare */
    .ast-mobile-header-content .main-header-menu li > a:hover {
        transform: translateY(-1px);
        color: rgba(65, 81, 97, 1);
    }

    /* Link activ mobil – accent roșu */
    .ast-mobile-header-content .main-header-menu li.current-menu-item > a {
        color: var(--accent) !important;
        transform: translateY(-1px);
    }

    /* Sub-meniu compact */
    .main-header-menu .sub-menu {
        margin: 2px 0 4px 0;
        padding: 4px 8px;
        border-radius: 8px;
    }

    .main-header-menu .sub-menu li a {
        padding: 6px 10px !important;
        margin: 2px 0;
        font-size: 13px;
        border-radius: 6px;
        color: rgba(65, 81, 97, 1); /* WHITE SUBMENU GRAY */
    }
}

 
/*************************************************
     MENIU MOBIL – Compact Glass + Gradient Hover
**************************************************/
@media (max-width: 768px) {
    .ast-mobile-header-content {
        padding: 6px 12px !important;
        border-radius: 14px;
        backdrop-filter: blur(10px);
        background: var(--bg-light);
    }

    .ast-mobile-header-content .main-header-menu li > a {
        margin: 2px 0 !important;
        padding: 8px 12px !important;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        color: rgba(65, 81, 97, 1); /* MENU LINKS GRAY */
        background: rgba(255,255,255,0.6);
        border: 1px solid rgba(255,255,255,0.4);
        box-shadow: var(--shadow-light);
        transition: all .25s ease;
    }

    /* Hover mobil – ridicare */
    .ast-mobile-header-content .main-header-menu li > a:hover {
        transform: translateY(-1px);
        color: rgba(65, 81, 97, 1);
    }

    /* Link activ mobil – accent roșu */
    .ast-mobile-header-content .main-header-menu li.current-menu-item > a {
        color: var(--accent) !important;
        transform: translateY(-1px);
    }

    /* Sub-meniu compact */
    .main-header-menu .sub-menu {
        margin: 2px 0 4px 0;
        padding: 4px 8px;
        border-radius: 8px;
    }

    .main-header-menu .sub-menu li a {
        padding: 6px 10px !important;
        margin: 2px 0;
        font-size: 13px;
        border-radius: 6px;
        color: rgba(65, 81, 97, 1); /* WHITE SUBMENU GRAY */
    }
}


