/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* Full-screen mobile menu overlay */
.main-navigation.toggled .inside-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95); /* dark overlay */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Style menu items */
.main-navigation.toggled .main-nav ul li a {
    color: #fff; /* white text */
    font-size: 20px;
    text-decoration: none;
    padding: 15px;
    display: block;
    text-align: center;
}

/* Ensure body doesn’t scroll when menu is open */
body.mobile-menu-open {
    overflow: hidden;
}


