/* Menu Button */
.menu-btn {
    position: fixed;
    right: 1.5em;
    top: 1.5em;
    height: 4em;
    width: 4em;
    background: #6441a5;
    border: none;
    border-radius: 0.5em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    z-index: 20;
}

.menu-btn .btn-text::before {
    content: "menu";
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    font-family: sans-serif;
}

body.menu-open .menu-btn .btn-text::before {
    content: "close";
}

/* Menu Wrapper */
.wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 15;
    overflow-y: auto;
    clip-path: circle(0px at calc(100% - 3em) 3em);
    transition: clip-path 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

body.menu-open .wrapper {
    clip-path: circle(150% at calc(100% - 3em) 3em);
}

.wrapper ul {
    list-style: none;
    text-align: center;
    padding: 2em 0;
    margin: auto;
    width: 100%;
}

.wrapper ul li {
    margin: 1.5em 0;
}

.wrapper ul li a {
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    transition: color 0.3s;
}

.wrapper ul li a:hover {
    color: #6441a5;
}

/* Responsive */
@media (max-width: 768px) {
    .wrapper ul li a {
        font-size: 1.5rem;
    }
}