/* ===== Sidebar Menu ===== */
.menu-sidebar {
    position: fixed;
    top: 0;
    right: -400px; /* hidden off screen */
    width: 400px;
    height: 100vh;
    background-color: #021049;
    color: #fff;
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    transition: right 0.5s ease-in-out;
    padding: 40px 30px;
    /* box-shadow: -4px 0 10px rgba(0, 0, 0, 0.3); */
    overflow-y: auto;
}

.menu-sidebar.active {
    right: 0;
}

.menu-sidebar__content {
    width: 100%;
    position: relative;
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transition: transform 0.3s;
}

.menu-close:hover {
    transform: rotate(90deg);
}

.menu-links ul {
    list-style: none;
    padding: 0;
    margin: 60px 0 40px;
}
.menu-links ul li {
    margin: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.menu-links ul li:last-child {
    border-bottom: none;
}

.menu-links ul li a {
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    width: 100%; /* make entire row clickable */
}

.menu-links ul li a:hover {
    color: #ffd700;
}

/* .menu-links ul li {
    position: relative;
    margin: 18px 0;
    padding-bottom: 10px;
}

.menu-links ul li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.menu-links ul li:hover::after {
    width: 100%;
} */

/* Info Section */
.menu-info {
    margin-top: 40px;
    font-size: 15px;
    line-height: 1.8;
}

.menu-info h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffd700;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 22px;
    margin-right: 12px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ffd700;
}

/* Hamburger Icon */
.hamburgerMenu {
    cursor: pointer;
}

.hamburgerMenu i {
    font-size: 28px;
    color: #000;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .menu-sidebar {
        width: 100%;
        right: -100%;
    }
}
