/* Hamburger Toggle Icon */
.hm-8cb8b190-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    padding: 0;
    margin: 0;
    z-index: 10;
}
.hm-8cb8b190-toggle:focus {
    outline: none;
}
.hm-8cb8b190-toggle .hm-8cb8b190-bar {
    width: 32px;
    height: 3px;
    background-color: #333333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Full-Screen Overlay */
.hm-8cb8b190-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Admin Bar Offset for Logged-in Users */
body.admin-bar .hm-8cb8b190-overlay {
    top: var(--wp-admin--admin-bar--height, 32px);
    height: calc(100vh - var(--wp-admin--admin-bar--height, 32px));
}
@media screen and (max-width: 782px) {
    body.admin-bar .hm-8cb8b190-overlay {
        top: 46px;
        height: calc(100vh - 46px);
    }
}

.hm-8cb8b190-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* Close Button */
.hm-8cb8b190-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: transparent;
    border: none;
    font-size: 48px;
    line-height: 1;
    cursor: pointer;
    color: #333333;
    transition: transform 0.2s ease;
}
.hm-8cb8b190-close:hover {
    transform: scale(1.1);
}

/* Menu Typography and Spacing */
.hm-8cb8b190-menu-container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
}
.hm-8cb8b190-menu-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}
.hm-8cb8b190-menu-container li {
    margin-bottom: 24px;
}
.hm-8cb8b190-menu-container li:last-child {
    margin-bottom: 0;
}
.hm-8cb8b190-menu-container a {
    font-size: 32px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}
.hm-8cb8b190-menu-container a:hover {
    color: #555555;
}
