/*
Theme Name: Pure Curry Theme
Theme URI: 
Author: Avi Vijh
Author URI: 
Description: A short description of the theme.
Requires at least: The oldest main WordPress version supported, written in X.X format.
Tested up to: 6.8
Requires PHP: The oldest PHP version supported, in X.X format, only the number.
Version: 0.2
License: The license of the theme.
License URI: The URL of the theme license.
Text Domain: pure-curry-theme
Tags: 
*/

/* Mobile Navigation Customizations */
/*  1) Reduce the height to keep header visible 
    2) Make the panel semi-transparent 
    3) Change all text + arrows + close button to Basmati Rice (#5E2A1E)
*/
@media (max-width: 781px) {

    /* 1. Menu item text color → Basmat Rice */
    .wp-block-navigation__responsive-container.is-menu-open a,
    .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container a {
        color: var(--wp--preset--color--basmati-rice) !important;
    }

    /* 2. Submenu arrow + close button SVG → Basmat Rice */
    .wp-block-navigation__responsive-container.is-menu-open svg,
    .wp-block-navigation__responsive-container.is-menu-open button.wp-block-navigation__responsive-container-close svg {
        fill: var(--wp--preset--color--basmati-rice) !important;
        color: var(--wp--preset--color--basmati-rice) !important;
    }

    /* 3. Background panel */
    .wp-block-navigation__responsive-container.is-menu-open {
        background-color: rgba(0, 0, 0, 0.5) !important;
        backdrop-filter: blur(2px);
        top: 75px !important;
        height: calc(100vh - 75px) !important;
    }

    .wp-block-navigation__responsive-container-content {
        background: none !important;
    }
}
/* End of Mobile Navigation Customizations */

