body {
    background-color: #ffea5d;
    margin: 0;
    overflow-x: hidden;
}

#footerToggleMenu {
    border: none;
    cursor: pointer;
    background-color: transparent;
    box-sizing: border-box;
    box-shadow: none;
    padding-right: 0;
}

#footerMenuOverlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #EDEDE9;
    color: white;
    display: flex;
    justify-content: center;
    align-items: start;
    transition: right 0.7s ease;
    z-index: 10;
    overflow-y: auto; /* Enable vertical scrolling */
}

#footerMenuOverlay.visible {
    right: 0;
}

.footer-menu {
    text-align: left;
    padding: 20px;
    margin-top: 80px !important;
}

.footer-menu h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.footer-menu ul {
    list-style-type: none;
    padding: 0;
    font-size: 1.1rem;
    margin: 0;
}

.footer-menu ul li {
    margin: 10px 0;
}

.footer-menu ul li a {
    text-decoration: none;
    color: #000 !important;
    transition: color 0.2s ease;
    font-size: 17px;
    line-height: 21px;
    font-weight: 700;
}

/* .footer-menu ul li a:hover {
    color: #ffea5d;
} */

.footer-menu ul li ul {
    margin-left: 20px;
}

#footerToggleMenu.close-button {
    filter: brightness(0);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 30;
}

img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.footer-logo a {
    font-size: 2.5rem;
    color: #333;
    text-decoration: none;
    font-family: "aptos 800", Sans-serif;
}

.footer-logo a.active {
    color: #000;
}

#footerToggleMenu img {
    width: 40px;
    height: 40px;
}

#footerToggleMenu img {
    filter: brightness(0) invert(1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    #footerMenuOverlay {
        padding: 20px; /* Add some padding */
    }

    .footer-menu h1 {
        font-size: 2rem; /* Adjust heading size for mobile */
    }

    .footer-menu ul {
        font-size: 1rem; /* Adjust font size for better readability */
    }

    #footerToggleMenu img {
        width: 35px; /* Adjust toggle button size for mobile */
        height: 35px;
    }
    #footerToggleMenu img {
        filter: grayscale(100%) brightness(30%) contrast(100%);
        mix-blend-mode: multiply;
    }
    .footer-menu {
        margin-top: 80px !important;
    }
}
