/* Sticky Header Styles */
.mh-sticky-header {
    background-color: #006400;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.mh-site-title {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.mh-site-title a {
    color: #fff;
    text-decoration: none;
}

.mh-header-logo img {
    height: 50px;
    width: auto;
}

.mh-nav-menu {
    display: flex;
    gap: 20px;
}

.mh-nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
}

.mh-nav-menu a:hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    left: 0;
    bottom: -5px;
    animation: slideIn 0.3s forwards;
}

@keyframes slideIn {
    from { width: 0; }
    to { width: 100%; }
}

.mh-hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mh-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #006400;
        width: 50%;
        height: 50vh;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
    }

    .mh-nav-menu.active {
        display: flex;
        transform: translateY(0);
    }

    .mh-hamburger {
        display: block;
    }

    .mh-header-logo img {
        height: 40px;
    }

    .mh-site-title {
        font-size: 20px;
    }
}