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

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

#menuOverlay {
    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 */
}

#menuOverlay.visible {
    right: 0;
}

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

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

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

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

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

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

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

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

.header-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;
}

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

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

#toggleMenu img {
    width: 40px;
    height: 40px;
}
#toggleMenu img {
    filter: brightness(0) invert(1);
}
/* Responsive Styles */
@media (max-width: 768px) {
    #menuOverlay {
        padding: 20px; /* Add some padding */
    }

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

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

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