/* Navigation fixes */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}

/* Fix menu toggle button */
.menu-toggle {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    position: absolute;
    left: 30px;
    z-index: 1100;
}

.menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Fix for sidenav social icons */
.sidenav-social {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.sidenav-social .social-icon {
    color: rgba(255, 255, 255, 0.7) !important;
    width: 36px !important;
    height: 36px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    background-color: transparent !important;
}

.sidenav-social .social-icon:hover {
    color: #fff !important;
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    transform: translateY(-3px) !important;
}
