/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Template: astra
Author: Your Name
Author URI: https://yoursite.com/
Description: Child theme for 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: astra-child
*/

/* Makes the blocks 100vh */
.wp-block-group {
	min-height: calc(100vh - 200px) !important;
}

/* Makes all menu links bold on hover */
/* Bold effect without layout shift using text-shadow */
.main-header-menu .menu-link,
.ast-header-custom-item a {
    transition: color 0.2s ease;
}
.main-header-menu .menu-link:hover,
.ast-header-custom-item a:hover {
    text-shadow: 0 0 1px currentColor, 0 0 1px currentColor, 0 0 1px currentColor, 0 0 1px currentColor;
}
/* Makes all menu links bold on hover */
