/*
Theme Name: Królewski Festiwal Muzyki
Theme URI: https://kfm-wschowa.pl
Author: Mariusz (via Antigravity)
Author URI: https://kfm-wschowa.pl
Description: Motyw blokowy FSE dla Królewskiego Festiwalu Muzyki we Wschowie.
Version: 1.0.0
Requires at least: 6.2
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kfm
Tags: full-site-editing, block-patterns, custom-colors, custom-typography
*/

/* Animowany Podkreślnik dla Menu */
.wp-block-navigation-item {
    position: relative;
}

.wp-block-navigation-item__content {
    position: relative;
    display: inline-block;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.wp-block-navigation-item__content:hover,
.current-menu-item .wp-block-navigation-item__content,
.current-post-ancestor .wp-block-navigation-item__content {
    color: #801808 !important; /* Brąz festiwalowy */
}

/* Linia na hover i active */
.wp-block-navigation-item__content::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background-color: #801808;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.wp-block-navigation-item__content:hover::after,
.current-menu-item .wp-block-navigation-item__content::after,
.current-post-ancestor .wp-block-navigation-item__content::after {
    width: 100%;
}
