body {
    background-color: #F5EEE1;
    color: #552B00;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow: visible;
}

.menu-container {
    position: relative;
    z-index: 9999;
    overflow: visible;
}

.menu-toggle {
    display: none;
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #6F7B3A;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 9999;
    overflow: visible;
}

.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0.3cm 0.3cm;
    gap: 3px;
    z-index: 9999;
    overflow: visible;
    position: fixed;
}

.menu a {
    display: inline-block;
    padding: 8px 16px;
    background-color: #6F7B3A;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.2s ease;
    font-size: 12px;
}

.is-hidden {
    display: none;
}

.is-block {
    display: block;
}

.is-inline-block {
    display: inline-block;
}

.full-width {
    width: 100%;
}

@media (max-width: 800px) {
    .menu {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        position: static;
        margin: 10px;
        gap: 6px;
        background-color: transparent;
        padding: 0;
        box-shadow: none;
    }

    .menu a {
        width: auto;
        box-sizing: border-box;
        margin-bottom: 0;
        padding: 8px 14px;
        font-size: 12px;
    }

    .menu-toggle,
    .overlay {
        display: none !important;
    }    
}

.menu a:nth-child(1),
.menu a:nth-child(2) {
    background-color: #1F6B32;
}

.menu a:nth-child(3),
.menu a:nth-child(4),
.menu a:nth-child(5) {
    background-color: #8A9440;
}

.menu a:nth-child(6) {
    background-color: #B07A2A;
}

.menu a:nth-child(7),
.menu a:nth-child(8),
.menu a:nth-child(9) {
    background-color: #8A5625;
}

#homeReturnLink {
    background-color: #2F6FA5;
    font-weight: bold;
}

.menu a:hover {
    filter: brightness(110%);
}

.menu a::before {
    content: attr(data-icon);
    margin-right: 4px;
    font-size: 13px;
    line-height: 1;
}

.mobile-home-link {
    display: none;
}

.menu a.mobile-home-link {
    display: none;
}

@media (max-width: 800px) {
    .menu a.mobile-home-link {
        display: inline-block;
    }
}

.content-frame {
    width: 100%;
    height: 80vh;
    border: none;
}

.no-pointer {
    pointer-events: none;
}
