.menu-toggle {
    position: fixed;
    top: 50px;
    right: 20px;
    width: 27px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    height: 4px;
    background: #fbd109;
    border-radius: 2px;
    transition: 0.4s;
}

/* Transform when active */
.menu-toggle.active span {
    background: #fff !important;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* Navigation menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: #222;
    color: white;
    padding: 80px 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 1000;
}

.nav-menu.show {
    right: 0;
}

.nav-menu ul {
    list-style: none;
    padding: 0;
}

.nav-menu ul li {
    margin: 20px 0;
    font-size: 18px;
}

.nav-menu ul li a {
    color: #fff;
    text-decoration: none;
}

.social-media-links {
    position: absolute;
    display: flex;
    gap: 15px;
    z-index: 99;
    right: 100px;
}